| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A local inspector for Claude Code sessions. Reads the .jsonl trace files Claude Code writes under ~/.claude/ and turns them into readable conversations plus analytics — cost, prompt-cache health, context-window headroom, where the time went, and where things went wrong.
Useful when developing custom subagents and skills: the delegation tree, per-agent transcripts, prompts, tool calls, and per-agent spend are all visible side by side, and every insight links back to the exact message that produced it.
Cost, token volume, wall-clock duration, peak context vs the model's window, and a per-agent breakdown. Interactive panels surface the actionable detail:
If the session used subagents, the delegation tree is shown with each agent's prompt, model, reasoning effort, tool calls, duration, and cost. Click a row to open that agent's transcript.
npm install
npm run devThen open http://localhost:5173.
Single-port production build:
npm run build
npm start # http://localhost:3099Docker:
docker compose up # http://localhost:3099 — mounts ~/.claude read-onlySessions are read from ~/.claude by default. Override with the CLAUDE_DIR environment variable.
Costs are notional: every session is priced as if the tokens were billed at the public Anthropic API rates, regardless of how you actually pay. If you're on a Claude Pro/Max subscription, no money was charged per token — the figure shown is what the same usage would have cost on the metered API, which is a useful proxy for comparing sessions, agents, and runs against each other.
Rates come from a bundled snapshot covering Opus, Sonnet, and Haiku 3 → 4.x. Bedrock and Vertex routing are not modeled.
| Back | FazBrowse Home | New Git URL |