Skip to main content

Browse and search Claude Code conversation history from the terminal.

Project description

cchat

Tests codecov PyPI Python License: MIT

Browse and search Claude Code conversation history from the terminal.

cchat reads the JSONL conversation logs that Claude Code stores in ~/.claude/projects/ and presents them as readable conversation turns. It handles compaction stitching, branch detection, and the full UUID tree structure so you don't have to parse raw JSONL yourself.

Install

pip / pipx

pip install cchat
# or
pipx install cchat

curl (no pip needed)

curl -fsSL https://raw.githubusercontent.com/asparagusbeef/cchat/main/cchat.py \
  -o ~/.local/bin/cchat && chmod +x ~/.local/bin/cchat

wget

wget -qO ~/.local/bin/cchat \
  https://raw.githubusercontent.com/asparagusbeef/cchat/main/cchat.py && chmod +x ~/.local/bin/cchat

PowerShell (Windows without WSL)

Invoke-WebRequest -Uri "https://raw.githubusercontent.com/asparagusbeef/cchat/main/cchat.py" `
  -OutFile "$env:LOCALAPPDATA\cchat\cchat.py"

Note: cchat reads ~/.claude/projects/ which is a Linux/macOS path. On native Windows (not WSL), Claude Code may store data differently.

Quick start

# List recent sessions in the current project
cchat list

# View the last 5 turns of the latest session
cchat view

# View a specific session (by index from list)
cchat view 2

# Search across all sessions
cchat search "error handling"

Commands

Command Alias Description
cchat list [N] ls List recent sessions (default: 10)
cchat view [SESSION] v View conversation turns
cchat copy [SESSION] cp Copy messages to clipboard (WSL)
cchat search PATTERN s Search across sessions
cchat tree [SESSION] Show conversation tree structure
cchat export [SESSION] Export full session (markdown or JSON)
cchat projects List all projects

View options

Flag Description
-n N Show last N turns
-r RANGE Show specific turns: 5, 3-7, -1, -3--1
--all Show all turns
--tools Show tool call summaries
--raw Show everything (tool I/O, thinking, system)
--json Output as JSON
--no-stitch Don't bridge compaction boundaries
--timestamps Show timestamps
--compact-summaries Include compaction summary messages
--truncate LEN Truncate length for raw content (default: 500)
-p PATH Use a different project directory

Session selection

Sessions can be specified by:

  • Index: cchat view 2 (2nd most recent from cchat list)
  • UUID prefix: cchat view a1b2c3 (matches session ID)
  • Omitted: uses the most recent session

How it works

Claude Code stores each conversation as a JSONL file in ~/.claude/projects/<project-key>/. Each line is a JSON entry with a type (user, assistant, system, etc.) and a UUID-based parent-child tree.

cchat:

  1. Resolves the active path by walking the UUID tree from the last entry backward
  2. Stitches across compaction boundaries using logicalParentUuid links (or positional fallback)
  3. Groups entries into turns (one user message + full assistant response)
  4. Detects branch points by filtering out mechanical fan-out (tool_use forks, progress entries)

Requirements

  • Python 3.8+
  • No dependencies (stdlib only)
  • Clipboard copy uses clip.exe (WSL) — other platforms not yet supported

Contributing

Setup

git clone https://github.com/asparagusbeef/cchat.git
cd cchat
pip install -e ".[test]"

Running tests

pytest -v                          # full suite
pytest tests/test_session.py -v    # single module
pytest --cov=cchat --cov-report=term   # with coverage

Project structure

cchat.py          # entire application (single-file)
tests/
  conftest.py     # shared fixtures, mock project dirs
  fixtures/       # synthetic JSONL sessions matching real Claude Code format
  test_utils.py
  test_formatting.py
  test_session.py
  test_message_extraction.py
  test_project_resolver.py
  test_session_index.py
  test_cli.py

Test fixtures are synthetic JSONL files that match the real Claude Code session format (streaming chunks, UUID trees, compaction boundaries). See tests/fixtures/ for examples of the expected data shape.

Guidelines

  • Keep it as a single Python file with zero runtime dependencies.
  • Tests go in tests/. Fixtures go in tests/fixtures/.
  • Run the full test suite before opening a PR.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cchat-1.0.0.tar.gz (20.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cchat-1.0.0-py3-none-any.whl (19.7 kB view details)

Uploaded Python 3

File details

Details for the file cchat-1.0.0.tar.gz.

File metadata

  • Download URL: cchat-1.0.0.tar.gz
  • Upload date:
  • Size: 20.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cchat-1.0.0.tar.gz
Algorithm Hash digest
SHA256 db7c13fb74a4b19e7fa9c252b01ce32cf4216ec1cfafb3e3ae7cdd569db346af
MD5 a15ec4769be7138d764760473d8dabbe
BLAKE2b-256 074de93214f2943e36f27e1a417bede56d4b038d3c37ebd5f650966621e1a1a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchat-1.0.0.tar.gz:

Publisher: publish.yml on asparagusbeef/cchat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchat-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: cchat-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 19.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cchat-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d3a329a4cf657a0afa1a03375abe0d8637c0c6681b72f6415a7efed41f5de62a
MD5 6b5e0cc8a5820289e796953e1dbe7a1d
BLAKE2b-256 d995586faa96a8d0424a76ef1f4cefc372eb645e76a0a281476b8f7ee2c29043

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchat-1.0.0-py3-none-any.whl:

Publisher: publish.yml on asparagusbeef/cchat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page