Merge vk/a724-ui-show-ai-think#3
Merged
Merged
Conversation
**TDD loop**
1. Add/adjust a test to reproduce the bug or define the new behavior
2. Run `uv run pytest` (confirm it fails)
3. Implement the minimal change
4. Run `uv run pytest` (confirm it passes)
5. Run `uv run black .`
6. Commit test + implementation (+ docs) together
**Project commands**
- Run tests: `uv run pytest`
- Format: `uv run black .`
- Run CLI (dev): `uv run claude-code-transcripts --help`
**PR checklist**
- [ ] Tests pass: `uv run pytest`
- [ ] Formatted: `uv run black .`
- [ ] README/docs updated if behavior changed
- [ ] Keep changes focused (no drive-by refactors)
Goal
- Render "thinking/reasoning" blocks (Claude `thinking` and Codex CLI `reasoning`) in the generated HTML (like the red boxed section).
Notes
- Only show what exists in the source transcript (no model-inferred thoughts).
- For Codex CLI JSONL, map `reasoning`-style blocks to Claude-style `{type: "thinking", thinking: ...}` during normalization.
Acceptance criteria
- [ ] Claude `thinking` shows in output (already supported) and remains stable
- [ ] Codex CLI `reasoning` (if present) is converted + rendered
- [ ] Snapshots/tests updated and `uv run pytest` passes
5bd3600 to
37c7176
Compare
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
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.
Auto-created by Codex: merge $branch into main.