Grep every Claude Code session you've ever run.
Project description
Grep every Claude Code session you've ever run. The lossless Rust parser reads Claude Code's on-disk JSONL at 169 MB/s; the compiled CLI greps it and renders one line per event, 25 ms cold.
Get started
uvx cc-transcript list
Every session is already on disk under ~/.claude/projects. list finds them newest first, and stats collapses one into a screenful:
Driving with an agent? Paste this:
/plugin marketplace add yasyf/cc-transcript
/plugin install cc-transcript@cc-transcript
The plugin's skill teaches Claude to answer "what did I ask you yesterday" from its own history, funneling through the CLI instead of reading raw JSONL.
No Claude Code? Point any agent at the CLI
Use `uvx cc-transcript` to investigate my Claude Code sessions: `list` finds
transcripts on disk, `stats` summarizes one, `grep` searches content, and `show`
renders one compact line per event. Start by listing my newest sessions and
summarizing the most recent one. Docs: https://yasyf.github.io/cc-transcript/
Use cases
Ask Claude what you asked Claude yesterday
Yesterday's session is a megabyte of JSONL, and pasting it into a chat blows the context window. Render the spine instead:
uvx cc-transcript show --signal --tail 20 ~/.claude/projects/<project>/<session>.jsonl
--signal keeps only the substantive user and assistant turns. One line per event, a few hundred tokens for the whole exchange. With the plugin installed, skip the command and ask Claude directly; its skill runs this funnel for you.
Find the session where you fixed that bug
The fix happened weeks ago, in one of a few hundred transcripts. Search them all:
uvx cc-transcript grep "TranscriptExpiredError" --project cc-transcript
Hits print under their transcript's path, each line carrying its raw event index; feed an index back into show --range to re-read the conversation around the fix. grep searches your newest 50 transcripts by default; --all takes it to every session on disk, and a no-match run exits 1 so it scripts cleanly.
Debug a token blowup from transcript evidence
A session burned through the context window and you want the culprit, not a guess. Rank the evidence:
uvx cc-transcript stats --per-file --project myapp
Each block reports text, thinking, and tool-io bytes plus per-tool call counts; the blowup stands out as an outsized tool io line. Then grep --tool <name> --with-result pins it to the exact calls.
Script it from Python
The CLI's funnel is four commands; your own tooling wants the events themselves. parse turns a path into a Transcript of typed lazy views, with the noise already dropped inside the engine:
from cc_transcript import NOISE_SPEC, discover, parse
transcript = parse(discover()[0], drop=NOISE_SPEC)
print(len(transcript.events), "events after the noise drop")
discover() lists every transcript on disk newest first, stream fans a whole corpus across the parse pool, and resolve finds one session by UUID. parse also reads OpenAI Codex CLI rollouts — hand it a path from ~/.codex/sessions and the same typed events come back. The getting-started guide builds this out to a composed filter and a sentiment score.
More in the docs
- The Python library turns a transcript into typed lazy views, a composed filter, and a score in a dozen lines.
- Filtering events covers composable clauses, specs, and the ready-made
NOISE_SPEC. - Sentiment scoring buckets conversations and scores them around any inference engine.
- Feedback mining runs detectors, confidence calibration, and LLM verdict passes over your corpus.
- The Rust engine is the implementation — parsing, filtering, scoring, and mining — its correctness pinned by hand-owned literals and golden fixtures.
- Codex rollouts make the parser two-provider: OpenAI Codex CLI sessions lower into the same typed events, with rollout discovery, subagent joins, and per-session lifecycle and token totals.
list --provider codexfinds them from the shell. - API reference documents the complete typed surface, from
TranscriptEventtoSessionActivity.
Read the docs for the full guide. Licensed under PolyForm Noncommercial 1.0.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cc_transcript-14.8.0.tar.gz.
File metadata
- Download URL: cc_transcript-14.8.0.tar.gz
- Upload date:
- Size: 12.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1bc98671fe504ecfc745d19e75934d37bbbc8d22cadf4017b097f44649b33711
|
|
| MD5 |
f073b651888b609bc3d0c97f5f60f598
|
|
| BLAKE2b-256 |
dbf8b0ac71310c86aef3e74d5fa3a02deb54dd6d1aff26deac16ed7f957594e7
|
Provenance
The following attestation bundles were made for cc_transcript-14.8.0.tar.gz:
Publisher:
release-pypi.yml on yasyf/cc-transcript
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cc_transcript-14.8.0.tar.gz -
Subject digest:
1bc98671fe504ecfc745d19e75934d37bbbc8d22cadf4017b097f44649b33711 - Sigstore transparency entry: 2204707126
- Sigstore integration time:
-
Permalink:
yasyf/cc-transcript@5d35022afd003980f35f3c9bcab47540c838ef21 -
Branch / Tag:
refs/tags/v14.8.0 - Owner: https://github.com/yasyf
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-pypi.yml@5d35022afd003980f35f3c9bcab47540c838ef21 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cc_transcript-14.8.0-cp313-abi3-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cc_transcript-14.8.0-cp313-abi3-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 27.9 MB
- Tags: CPython 3.13+, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
688cc0dda4580a4c1201a4b4b7a46d6bc8c79e4bbd6c6ead929bdf59b871d6cc
|
|
| MD5 |
313695aee52958335689131c56d34bb0
|
|
| BLAKE2b-256 |
824a7504061e994f3919009d76e11c0a27d46a5ffe6c8808fa06ae43c1da7e74
|
Provenance
The following attestation bundles were made for cc_transcript-14.8.0-cp313-abi3-manylinux_2_28_x86_64.whl:
Publisher:
release-pypi.yml on yasyf/cc-transcript
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cc_transcript-14.8.0-cp313-abi3-manylinux_2_28_x86_64.whl -
Subject digest:
688cc0dda4580a4c1201a4b4b7a46d6bc8c79e4bbd6c6ead929bdf59b871d6cc - Sigstore transparency entry: 2204707131
- Sigstore integration time:
-
Permalink:
yasyf/cc-transcript@5d35022afd003980f35f3c9bcab47540c838ef21 -
Branch / Tag:
refs/tags/v14.8.0 - Owner: https://github.com/yasyf
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-pypi.yml@5d35022afd003980f35f3c9bcab47540c838ef21 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cc_transcript-14.8.0-cp313-abi3-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cc_transcript-14.8.0-cp313-abi3-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 27.7 MB
- Tags: CPython 3.13+, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03a47b6e7da77f68d53ebb26d23116eb455126e8d0e9e0a6c9497362eee0d79c
|
|
| MD5 |
f3f210c14805a43876dd3ae5773b406c
|
|
| BLAKE2b-256 |
a723bce4e2f173e30488961adfe5aa3e5d6a398a29f823db5054b99c7471bed0
|
Provenance
The following attestation bundles were made for cc_transcript-14.8.0-cp313-abi3-manylinux_2_28_aarch64.whl:
Publisher:
release-pypi.yml on yasyf/cc-transcript
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cc_transcript-14.8.0-cp313-abi3-manylinux_2_28_aarch64.whl -
Subject digest:
03a47b6e7da77f68d53ebb26d23116eb455126e8d0e9e0a6c9497362eee0d79c - Sigstore transparency entry: 2204707145
- Sigstore integration time:
-
Permalink:
yasyf/cc-transcript@5d35022afd003980f35f3c9bcab47540c838ef21 -
Branch / Tag:
refs/tags/v14.8.0 - Owner: https://github.com/yasyf
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-pypi.yml@5d35022afd003980f35f3c9bcab47540c838ef21 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cc_transcript-14.8.0-cp313-abi3-macosx_11_0_x86_64.whl.
File metadata
- Download URL: cc_transcript-14.8.0-cp313-abi3-macosx_11_0_x86_64.whl
- Upload date:
- Size: 27.7 MB
- Tags: CPython 3.13+, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f459c577636db3d1ed5d737cf9b26ecfb911baecc2dae84ade34762dd0f61ec
|
|
| MD5 |
b567edb00ce3ed52a5da836aea1eb0be
|
|
| BLAKE2b-256 |
77aeb1b1647c05584d0ac23b5daf534ea6934b5a86c6b64945a4c013c7d395a0
|
Provenance
The following attestation bundles were made for cc_transcript-14.8.0-cp313-abi3-macosx_11_0_x86_64.whl:
Publisher:
release-pypi.yml on yasyf/cc-transcript
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cc_transcript-14.8.0-cp313-abi3-macosx_11_0_x86_64.whl -
Subject digest:
2f459c577636db3d1ed5d737cf9b26ecfb911baecc2dae84ade34762dd0f61ec - Sigstore transparency entry: 2204707152
- Sigstore integration time:
-
Permalink:
yasyf/cc-transcript@5d35022afd003980f35f3c9bcab47540c838ef21 -
Branch / Tag:
refs/tags/v14.8.0 - Owner: https://github.com/yasyf
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-pypi.yml@5d35022afd003980f35f3c9bcab47540c838ef21 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cc_transcript-14.8.0-cp313-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: cc_transcript-14.8.0-cp313-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 27.5 MB
- Tags: CPython 3.13+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91487a5dc957469e42d5cf593134dd64d9e455037cc8521de474f731f0e45be3
|
|
| MD5 |
43a0c1496972522502a0afcd54324f7a
|
|
| BLAKE2b-256 |
ab2b5dc6577bc9a35b6aa3be6dc27dcf9a62da9c6e554bcec057d7647c2ce122
|
Provenance
The following attestation bundles were made for cc_transcript-14.8.0-cp313-abi3-macosx_11_0_arm64.whl:
Publisher:
release-pypi.yml on yasyf/cc-transcript
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cc_transcript-14.8.0-cp313-abi3-macosx_11_0_arm64.whl -
Subject digest:
91487a5dc957469e42d5cf593134dd64d9e455037cc8521de474f731f0e45be3 - Sigstore transparency entry: 2204707164
- Sigstore integration time:
-
Permalink:
yasyf/cc-transcript@5d35022afd003980f35f3c9bcab47540c838ef21 -
Branch / Tag:
refs/tags/v14.8.0 - Owner: https://github.com/yasyf
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-pypi.yml@5d35022afd003980f35f3c9bcab47540c838ef21 -
Trigger Event:
push
-
Statement type: