claude-code-transcripts
Tools for publishing transcripts for Claude Code sessions
파일 탐색기
- publish.yml
- test.yml
- base.html
- index.html
- macros.html
- master_index.html
- page.html
- project_index.html
- search.js
- __init__.py
- TestGenerateHtml.test_generates_index_html.html
- TestGenerateHtml.test_generates_page_001_html.html
- TestGenerateHtml.test_generates_page_002_html.html
- TestParseSessionFile.test_jsonl_generates_html.html
- TestRenderContentBlock.test_image_block.html
- TestRenderContentBlock.test_text_block.html
- TestRenderContentBlock.test_thinking_block.html
- TestRenderContentBlock.test_tool_result_block.html
- TestRenderContentBlock.test_tool_result_error.html
- TestRenderContentBlock.test_tool_result_with_commit.html
- TestRenderContentBlock.test_tool_result_with_image.html
- TestRenderFunctions.test_format_json.html
- TestRenderFunctions.test_render_bash_tool.html
- TestRenderFunctions.test_render_edit_tool.html
- TestRenderFunctions.test_render_edit_tool_replace_all.html
- TestRenderFunctions.test_render_markdown_text.html
- TestRenderFunctions.test_render_todo_write.html
- TestRenderFunctions.test_render_write_tool.html
- conftest.py
- sample_session.json
- sample_session.jsonl
- test_all.py
- test_generate_html.py
- .gitignore
- AGENTS.md
- CLAUDE.md
- LICENSE
- pyproject.toml
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
gh auth
설명 보기 ▼
gh auth
Authenticate with a GitHub host.
gh auth login
Log in with interactive prompt:
echo {{your_token}} | gh auth login --with-token
Log in with a token from `stdin` (created in <https://github.com/settings/tokens>):
gh auth status
Check if you are logged in:
uv run
설명 보기 ▼
uv run
Run a command or script in the project environment.
uv run {{path/to/script.py}}
Run a Python script:
uv run {{[-m|--module]}} {{module_name}}
Run a Python module:
uv run {{[-w|--with]}} {{package}} {{command}}
Run a command with additional packages installed temporarily:
uv tool
설명 보기 ▼
uv tool
Install and run commands provided by Python packages.
uv tool run {{command}}
Run a command from a package, without installing it:
uv tool install {{package}}
Install a Python package system-wide:
uv tool upgrade {{package}}
Upgrade an installed Python package:
uvx
설명 보기 ▼
uvx
이 명령은 `uv tool run`의 별칭입니다.
tldr uv tool
자세한 내용은 원본 명령을 참고하세요:
