Skip to main content

Generate a local dashboard from Codex CLI / Claude Code / Cursor agent logs

Project description

Agent Usage Atlas

Turn your local AI coding agent logs into a rich, interactive analytics dashboard — zero dependencies, fully offline, one command.

一个从本地 AI 编程 Agent 日志生成可视化仪表盘的工具。支持 Codex CLI / Claude Code / Cursor 三大 Agent 栈,25+ 交互式图表,纯 Python 标准库实现。

Hero Overview

Why Agent Usage Atlas?

You're burning tokens across multiple AI coding agents every day — but how much are you actually spending? Which model is the most cost-effective? When are you most productive? Are your caches saving you money?

Agent Usage Atlas reads your local log files (~/.codex/, ~/.claude/, ~/.cursor/), crunches the numbers, and generates a single self-contained HTML dashboard with 25+ interactive charts. No API keys, no cloud uploads, no dependencies beyond Python itself.

Supported Agents

Agent Token Tracking Cost Estimation Tool Call Tracking Session Meta
Codex CLI (GPT-5 family)
Claude Code (Claude 3–4.6)
Cursor Activity only

Pricing covers GPT-5.x, Claude 3/3.5/4.x (Haiku/Sonnet/Opus), and MiniMax-M2 out of the box.

Features

  • 25+ interactive ECharts visualizations — cost trends, token breakdowns, Sankey flows, chord diagrams, heatmaps, radar charts, calendar views, burn rate projections
  • Multi-agent unified view — Claude Code + Codex CLI + Cursor in one dashboard, with per-source drill-down
  • Cost analytics — per-model, per-day, per-session cost estimation with 30-day burn rate forecasting
  • Tool call intelligence — ranking, frequency density, bigram sequences, command success rates
  • Cache efficiency tracking — hit rate, savings estimation, cache vs. uncached token split
  • Working pattern heatmap — hour × weekday activity distribution to find your flow states
  • Session deep-dive — duration histogram, complexity scatter, median session cost
  • Live dashboard mode — SSE-powered auto-refresh server with date range tabs (All / 7 days / Today)
  • Bilingual narratives — auto-generated story summaries in both Chinese and English
  • Animated data updates — stock-style green/red flash on number changes in live mode
  • Single self-contained HTML — one file, works offline, shareable, archivable
  • Zero dependencies — pure Python standard library, no npm/Node/Rust/Docker required
  • Fully local — all data stays on your machine, nothing sent anywhere

Screenshots

Cost Analysis
Daily cost trends, cost breakdown by token type, model cost ranking, Sankey flow
Token & Activity
Daily token trends, source radar, narrative summary, rose chart
Cost Analysis Token Charts
Heatmap & Sessions
Activity heatmap, source radar, token calendar, session bubble
Tool Intelligence
Tool ranking, bigram chord diagram, top commands, efficiency metrics
Heatmap & Sessions Tool Intelligence

Installation

pip (recommended)

pip install agent-usage-atlas

Homebrew

brew install heggria/tap/agent-usage-atlas

From source

git clone https://github.com/heggria/agent-usage-atlas.git
cd agent-usage-atlas
pip install .

Usage

# Default: last 30 days, output to ./reports/dashboard.html
python -m agent_usage_atlas

# Last 7 days
python -m agent_usage_atlas --days 7

# Custom start date
python -m agent_usage_atlas --since 2026-03-01

# Custom output path and auto-open in browser
python -m agent_usage_atlas --output /tmp/dashboard.html --open

# Start live dashboard with auto-refresh (SSE)
agent-usage-atlas --serve --interval 5 --open

# Live dashboard on custom host/port
agent-usage-atlas --serve --port 8765 --host 127.0.0.1 --interval 5

CLI Options

Flag Description Default
--days N Include the last N days 30
--since YYYY-MM-DD Custom start date (overrides --days)
--output PATH Output HTML file path ./reports/dashboard.html
--open Open in browser after generation off
--serve Start local live dashboard server off
--host Host for --serve mode 127.0.0.1
--port Port for --serve mode 8765
--interval SSE refresh interval in seconds 5

Live Mode Endpoints

Endpoint Description
GET / Interactive HTML dashboard
GET /api/dashboard?days=30 JSON payload
GET /api/dashboard?since=2026-03-01 Custom date range
GET /api/dashboard/stream?interval=5 SSE stream (auto-refresh)
GET /health Health check

How It Works

~/.codex/**/*.jsonl  ─┐
~/.claude/**/*.jsonl ─┼─→  Parse  →  Aggregate  →  Render  →  dashboard.html
~/.cursor/**/*.jsonl ─┘     (parallel)   (rollup)    (ECharts)
  1. Parse — Reads JSONL log files and SQLite databases from each agent's local directory. Codex uses cumulative-delta token counting; Claude deduplicates by message ID; Cursor tracks activity counts.
  2. Aggregate — Computes source rollups, daily rollups, session rollups, tool bigrams, chord diagram data, Sankey flows, burn rate projections, heatmaps, and narrative text.
  3. Render — Injects the aggregated data into a self-contained HTML template with ECharts visualizations. In live mode, an SSE server pushes updates when log files change.

All data stays local — nothing is sent to any server.

Comparison with Alternatives

Agent Usage Atlas ccusage splitrail claudetop Langfuse Helicone
Multi-agent Claude + Codex + Cursor Claude + Codex + others 10+ agents Claude only Any (via SDK) Any (via proxy)
Visualization 25+ interactive ECharts (CN+EN) CLI tables CLI + cloud TUI (7 views) Web dashboard Web dashboard
Self-contained HTML
Zero dependencies ✅ Python stdlib Node.js Rust Node.js Docker + PG Docker + infra
Fully local Cloud optional Self-host Self-host
Live dashboard ✅ SSE
Tool-call analytics Bigram, chord, Sankey Basic Basic Via tracing Via proxy
Cache efficiency Partial
Burn rate projection
Setup python -m agent_usage_atlas npx ccusage Build from source npx claudetop Deploy stack Deploy proxy

Key Differentiators

  1. Unified multi-agent dashboard — the only tool that tracks Claude Code + Codex CLI + Cursor simultaneously from local logs in a single view
  2. Richest visualization suite — 25+ chart types including Sankey flows, chord diagrams, tool-call bigrams, heatmaps, burn rate projections, calendar views
  3. True zero dependencies — Python stdlib only, no npm/Node/Rust/Docker/database required
  4. Single self-contained HTML — one file, works offline, email it to yourself, archive it
  5. Live SSE server — real-time auto-refresh with date range switching (All / 7 days / Today)
  6. Cache efficiency analytics — unique among local tools, tracks savings and hit rates
  7. Animated transitions — smooth number counter animations with stock-style green/red flash on live data refresh
  8. Bilingual narrative — auto-generated story/summary in both Chinese and English

Architecture

src/agent_usage_atlas/
├── cli.py          # CLI entry point, build_dashboard_payload()
├── parsers.py      # Codex / Claude / Cursor log parsers
├── models.py       # UsageEvent, ToolCall, SessionMeta + pricing (GPT-5, Claude 3–4.6, MiniMax)
├── aggregation.py  # Full dashboard payload computation (CN + EN narratives)
├── template.py     # Self-contained HTML/CSS/JS template (number flash animations)
└── server.py       # Live SSE server (stdlib http.server)

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

agent_usage_atlas-0.0.2.tar.gz (51.0 kB view details)

Uploaded Source

Built Distribution

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

agent_usage_atlas-0.0.2-py3-none-any.whl (49.7 kB view details)

Uploaded Python 3

File details

Details for the file agent_usage_atlas-0.0.2.tar.gz.

File metadata

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

File hashes

Hashes for agent_usage_atlas-0.0.2.tar.gz
Algorithm Hash digest
SHA256 a33ac1266dcff6912942420b0d92eb0b22289c0b0d454ffcfd735fa8d288ba0d
MD5 2720b703845f2d31ad1e65489bafebd6
BLAKE2b-256 ab3c983afff3d4200c24ea1d7298143a29d31c407efa5dedc92b333ee52f67f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for agent_usage_atlas-0.0.2.tar.gz:

Publisher: publish-pypi.yml on heggria/agent-usage-atlas

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

File details

Details for the file agent_usage_atlas-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for agent_usage_atlas-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a97145e45e173f169da1ef436ab71cf0100f5f748d2cfbb233b1810c19e1b3cc
MD5 79552cad63e59fce1cebd0fdc24dda2d
BLAKE2b-256 b1a6321caab84180b9c3f19753b919070ec2fef9a90075c23aa59f5aa8caa7d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for agent_usage_atlas-0.0.2-py3-none-any.whl:

Publisher: publish-pypi.yml on heggria/agent-usage-atlas

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