Open-source web dashboard tracks Claude token usage for remote workflows

A developer has open-sourced react-ai-token-monitor, a web-based dashboard for tracking Claude token usage in remote and headless environments. The tool was created because existing desktop monitoring tools don't work well for server, dev container, CI, or SSH workflows.
Key Details
The dashboard parses local ~/.claude/projects/**/*.jsonl files in real-time using a chokidar watcher with Server-Sent Events (SSE) for live updates. It calculates costs based on current API pricing for Opus, Sonnet, and Haiku models plus cache read/write operations.
Features include:
- Model breakdowns
- Cache efficiency donut charts
- GitHub-style activity heatmap
- Weekly and monthly trends
- 3D overview graph (pure SVG)
- Dark theme
- No external API calls - all data stays local
The developer's own usage data from March 2026 showed:
- 6.6 million tokens consumed
- $4,808 equivalent value at API pricing
- 129 sessions
- Cache reads dominated usage with 100% efficiency on some days (2.14M+ cached tokens)
- High-token days (997K peak) weren't always the most productive
- Haiku appeared more via cache than expected
Setup and Usage
To run the tool:
npm install && npm run devThe server binds to 0.0.0.0 for network access from phones or browsers. The tool is MIT-licensed and was built using Claude Code.
The developer is seeking community feedback on additional features like CSV export, limit alerts, and multi-project support.
📖 Read the full source: r/ClaudeAI
👀 See Also

Workaround for ChatGPT Project Migration Gap: Export Scripts and Prompts
A developer created Python scripts and Claude prompts to migrate conversations from ChatGPT to Claude when ChatGPT's data export lacks project membership information. The solution extracts conversations using titles captured from the interface.

OpenClaw vs Hermes: Choose the Right Self-Hosted AI Agent After 100+ Deployments
After deploying 100+ AI agents for clients, a Reddit user shares hard-won lessons: OpenClaw (149K stars) is the reliable workhorse for single/small fleets; Hermes excels at multi-agent orchestration but has a smaller community.

Reseed CLI: Extract Design Systems from Any Site for Claude Code and Cursor
Reseed is a CLI that extracts design tokens (colors, spacing, type scale, radii) from any website and generates a tailwind.config.ts, design-system.md, and reference HTML for Claude Code and Cursor to use.
Cue AI Uses Gemma 4 for Faster Voice Dictation: 44% Latency Drop, 30% More Usage
Cue AI replaced a cloud-based text polish step with Google DeepMind's Gemma 4 E4B running locally via Ollama, cutting median latency from 876ms to 488ms and increasing dictation usage by 30%.