So Claude built this: https://github.com/Stargx/claude-code-dashboard
*What it shows per session:* - Token usage and cost (with correct per-model pricing) - Status — thinking / waiting / idle / stale - Context window usage as a visual progress bar - Active subagents while they're running - Which files the session is currently working on - Expandable activity log - Git branch and permission mode (AUTO-EDIT / YOLO)
*How it works:* Claude Code writes JSONL session logs to `~/.claude/projects/`. The dashboard just watches those files and renders everything in a browser tab. No WebSockets, no build step, no cloud — just Node.js tailing local files and a single HTML file for the UI.
*Quick start:* ``` git clone https://github.com/Stargx/claude-code-dashboard cd claude-code-dashboard npm install && npm start ``` Then open http://localhost:3001
MIT licensed. Would love feedback — especially if you're on macOS or Linux and hit any issues with the session detection.