Skip to main content

Query your own Claude Code agent history with DuckDB, read-only, straight over the JSONL transcripts.

Project description

ccq — query your own Claude Code agent history

CI Python

ccq makes your local Claude Code transcripts queryable. It runs DuckDB directly over the JSONL at ~/.claude/projects/<project>/<session>.jsonl — no copy, no ETL, no database to maintain. The transcripts are only ever read, never written.

Ask it where your tokens go, which tools you lean on, where runs hit rate limits, how much you delegate to subagents, and what happened inside any single session.

$ ccq cost --by model
model                       turns          in_tok      out_tok   cost_usd
-------------------------  ------  --------------  -----------  ---------
claude-opus-4-8            12,345   3,456,789,012   28,500,000   4,210.55
claude-sonnet-4-6           6,789     901,234,567    8,400,000      612.30
...

Install

uv sync          # create the venv + install deps
uv run ccq --help

(Or uv tool install . to put ccq on your PATH.)

Commands

Command What it answers
ccq sessions List sessions: project, span, message count, tokens, estimated cost. --sort cost|duration|messages|recent, --project, --since, -n.
ccq cost Cost rollups. --by project|model|day|session. Main-loop only (see caveat).
ccq tools Tool-use frequency. --bash breaks Bash calls down by leading command.
ccq errors API errors / retries (429s, etc.) by project + status. --list for recent events.
ccq agents Subagent (Agent tool) dispatches + token totals. --by type|model|session|project.
ccq session <id-prefix> One session's decision timeline: prompts, tool calls, errors, in order.
ccq search <text> Full-text over your typed prompts and session titles → matching sessions.
ccq sql "<SELECT…>" Run an arbitrary read-only query over the views (power surface).
ccq serve Launch a local web dashboard (localhost only) with a read-only SQL box.
ccq cache build|status|clear Manage the materialized snapshot that powers --fast.

Every command takes -f table|json|csv and a global --projects-dir (defaults to ~/.claude/projects, handy for pointing at a backup).

Fast mode

A live query rescans ~1 GB of JSONL each time (~1-3 s). For instant repeat queries, materialize a snapshot once and pass --fast (-F):

ccq cache build          # ~6 s, writes a ~100 MB snapshot to ~/.cache/ccq
ccq -F cost --by model   # now ~0.1 s
ccq cache status         # shows STALE once transcripts change; rebuild to refresh

The snapshot lives under $XDG_CACHE_HOME (never in ~/.claude), is opened read-only at the engine level, and --fast builds it automatically on first use.

Web viewer

ccq -F serve             # http://127.0.0.1:8787  (Ctrl-C to stop)

A dashboard (cost by model, tools, errors, subagents, priciest sessions) plus a SQL box that runs the same read-only-guarded queries. Drill down: click a project chip to filter to that project, or a session id to see its full decision timeline. Standard-library http.server, no extra dependencies, binds to localhost only.

The query surface (ccq sql)

sql exposes these views — compose your own:

  • sessions — one row per session: project, branch, span, messages, models, tokens, cost_usd.
  • message_usage — one row per assistant turn: token breakdown + cost_usd.
  • tool_calls — one row per tool invocation: tool_name, tool_input (JSON).
  • errors — API error events: status, project, session, model.
  • agents / agent_results — subagent dispatches joined to their subagent_tokens.
  • prompts — searchable typed prompts + session titles.
  • events — the raw per-line view everything else is built on.
  • model_pricing — the per-model rate table used for costing.
ccq sql "SELECT project, round(sum(cost_usd),2) usd
         FROM message_usage WHERE ts >= DATE '2026-06-01'
         GROUP BY 1 ORDER BY usd DESC"

sql accepts a single read-only statement (SELECT/WITH/EXPLAIN/…). Writes, ATTACH, COPY, INSTALL, and multi-statement input are refused. Tip: DuckDB reserves words like day, first, last — quote them if used as aliases (AS "day").

How it works

read_ndjson_objects('~/.claude/projects/*/*.jsonl') loads each line as an opaque JSON value (zero schema inference — the records are heterogeneous), and SQL views extract the entities. Two things the transcripts taught us are baked in:

  • Numeric fields use TRY_CAST (heterogeneous lines otherwise break a hard cast).
  • Token-casting views read from a type-filtered subquery so the optimizer can't reorder a cast ahead of the type = 'assistant' filter.

Cost is estimated, and main-loop only

Transcripts store token counts, not dollars. ccq prices them with published per-million-token rates (src/ccq/pricing.py) and the standard cache multipliers (cache write 1.25×, cache read 0.10×). Two honest caveats:

  1. Estimates, not invoices — unknown/<synthetic> models price to $0.
  2. Main-loop only — a subagent's spend is not in the transcript. The only signal that survives is toolUseResult.totalTokens (no input/output split, so it can't be priced). ccq agents surfaces those token totals separately; they are never folded into a dollar figure.

Develop

uv run pytest                                   # tests over synthetic fixtures
uv run ruff check . && uv run ruff format .     # lint + format
uv run ty check src/                            # type check

Read-only on ~/.claude/projects by contract — the test suite uses synthetic fixtures and never reads your real history.

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

ccq-0.1.0.tar.gz (20.6 kB view details)

Uploaded Source

Built Distribution

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

ccq-0.1.0-py3-none-any.whl (23.5 kB view details)

Uploaded Python 3

File details

Details for the file ccq-0.1.0.tar.gz.

File metadata

  • Download URL: ccq-0.1.0.tar.gz
  • Upload date:
  • Size: 20.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for ccq-0.1.0.tar.gz
Algorithm Hash digest
SHA256 c8616da0481760dad0c336ac0eb5a8bee64deb14133b57766c342f58a8f97fad
MD5 d4db66c4ec5086302efd90166e5a11c5
BLAKE2b-256 1e38f60ecf2537390f0057531dbcc801707d9ab3fa6eaf6b48543905838b4456

See more details on using hashes here.

File details

Details for the file ccq-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: ccq-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 23.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for ccq-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5dd34f4f99bef722dd99f0ee224783b17c76579720dc0e8a177294344ff65bd9
MD5 e9da6071e47d557108fc72bb0a95c09a
BLAKE2b-256 29a6a16698798af486c86506d2b611a270c9fe8d4c89a71c23b67867635ad48b

See more details on using hashes here.

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