← back to Cc Command Center

README.md

24 lines

# Claude Code — Command Center (web viewer)

A web recreation of the Claude Code desktop "command center" shown in
@LLMJunky's tweet (x.com/LLMJunky/status/2070733200846909717): the
"What's up next?" usage dashboard + draggable/tileable floating session windows.

Unlike the demo, this runs on **your real data** — it scans
`~/.claude/projects/**/*.jsonl` and aggregates sessions, messages, tokens,
active days, streaks, peak hour, favorite model, a 53-week activity heatmap,
and your recent sessions.

## Run
```
python3 build_stats.py     # regenerate public/data/stats.json from session logs
PORT=9774 python3 server.py  # serve public/ (Basic Auth: admin / DW2024!)
```
Then open http://127.0.0.1:9774 (or omit PORT for a random free port).

- Click a session in **Recents** to pop it out as a floating window.
- Drag the title bar to move, drag the corner to resize.
- **Tile / Cascade / Close all** arrange the open windows.

stats.json is gitignored (contains session snippets); rebuild it locally.