-
-
Notifications
You must be signed in to change notification settings - Fork 75
Pr 39 #48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Pr 39 #48
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Implemented format detection to distinguish between Claude Code and Codex CLI JSONL files - Created parser to convert Codex CLI format (session_meta, response_item, function_call) to Claude Code format - Added tool name mapping (shell_command -> Bash, read_file -> Read, etc.) - Added comprehensive test suite with 7 tests covering format detection, message parsing, and HTML generation - Updated documentation to mention Codex CLI support - All 118 tests passing (111 existing + 7 new) The tool now automatically detects and handles both formats seamlessly, making it easy to generate HTML transcripts from either Claude Code or Codex CLI session files.
- Implemented find_combined_sessions() to search both ~/.claude/projects and ~/.codex/sessions - Updated get_session_summary() to extract summaries from Codex CLI format (response_item payloads) - Modified local command to show sessions from both sources with clear [Claude] and [Codex] labels - Sessions are sorted together by modification time across both sources - Added 5 comprehensive tests for combined session finder - Updated documentation to reflect unified picker functionality Users can now run `claude-code-transcripts` and see an interactive picker showing: 2025-01-02 10:00 245 KB [Claude] Fix authentication bug 2025-01-01 14:30 189 KB [Codex ] Add dark mode feature 2025-01-01 09:15 312 KB [Claude] Refactor API endpoints All 123 tests passing (111 original + 7 Codex format + 5 Codex finder).
…’t available in this environment (only `skill-creator` / `skill-installer` are installed). I went ahead and implemented Windsurf import support directly.
- Added foreign-export normalization (including Windsurf-style `conversation.messages`) to `parse_session_file()` so `claude-code-transcripts json <windsurf-export>.json` produces normalized `{"loglines": ...}` and renders to HTML: `src/claude_code_transcripts/__init__.py:552`, `src/claude_code_transcripts/__init__.py:726`
- Added Windsurf fixture + tests (parsing + HTML generation): `tests/sample_windsurf_export.json`, `tests/test_windsurf_format.py:7`
- Documented the new supported format in README: `README.md:32`
- Added `black` to dev deps so `uv run black .` works: `pyproject.toml:35`
Validation:
- `uv run pytest`
- `uv run black .`
…anscripts/__init__.py:562` (new helpers start at `src/claude_code_transcripts/__init__.py:567`).
- Normalizes Kiro `/save session.json` exports to `{ "loglines": [...] }`, including assistant `tool_use` blocks and user `tool_result` blocks.
- Added sanitized fixture `tests/sample_kiro_export.json` + parsing test `tests/test_generate_html.py:1039` (also smoke-tests `generate_html()`).
- Documented Kiro export support + how to export in `README.md:32` and `README.md:159`.
- Added `black` to dev deps so `uv run black .` works (`pyproject.toml:35`); verified `uv run pytest` passes.
…avigation (Vibe Kanban)` - Rewrote the PR description to document: - What changed (right sidebar per-turn summaries + clickable navigation) - Why (scan/jump by “turn”, no inference) - Implementation details (how turns/tool counts/previews are derived; `<details>` auto-expand on hash nav; responsive layout) - Required footer note: “This PR was written using [Vibe Kanban](https://vibekanban.com)” - Applied via `gh pr edit 5` and verified with `gh pr view 5`
UI: Right sidebar per-turn summary (group tool/user/assistant) (vibe-kanban)
Transcript pages: left sidebar filters + turn outline (Vibe Kanban)
Render Codex CLI reasoning as Thinking blocks in HTML (Vibe Kanban)
Support Antigravity JSON exports (Vibe Kanban)
Support Windsurf chat export imports (Vibe Kanban)
Add Kiro /save export parsing + improve Codex CLI transcript support (Vibe Kanban)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.