Claude Code Session Dashboard: Open Source Tool for Monitoring Multiple Sessions

What It Is
Claude Code Session Dashboard is an open-source tool built to solve visibility problems when running multiple Claude Code sessions simultaneously. It provides a combined view of costs, session status, and context window usage across sessions.
How It Was Built
The entire project was written using Claude Code. The developer described the problem, and Claude identified that Claude Code writes JSONL session logs to ~/.claude/projects/. Claude then built the file watcher, Express API, and frontend in a single HTML file.
Features Per Session
- Token usage and cost with correct per-model pricing
- Status indicators: thinking, waiting, idle, or 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 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 startThen open http://localhost:3001. The project is free and MIT licensed.
The developer is seeking feedback, especially from users on macOS or Linux who might encounter issues with session detection.
📖 Read the full source: r/ClaudeAI
👀 See Also

Scrapling integrated as OpenClaw's scraping backbone
Scrapling, an open-source library that learns page structure and adapts to changes, has been integrated into OpenClaw as its core scraping engine. It's 774x faster than BeautifulSoup with Lxml and supports multiple selector types with async sessions.

BotCost.dev: Free Analyzer to See How Much AI Bots Cost Your Site
BotCost.dev is a free tool that analyzes your server logs against 18 known AI bot fingerprints (GPTBot, ClaudeBot, Perplexity, etc.) and estimates monthly bandwidth cost — no upload required, runs in-browser.

ProofShot CLI Gives AI Coding Agents Browser Verification Capabilities
ProofShot is an open-source CLI tool that lets AI coding agents verify UI features by recording browser sessions, capturing screenshots, and collecting console errors. It works with any agent that can run shell commands and generates self-contained HTML reports for human review.

4-layer self-audit system for OpenClaw behavioral evolution
A developer built a 4-layer audit system where Gemini reviews Claude's blind spots weekly, catching patterns Claude missed in self-review. The system includes post-fix verification, pattern mining, external mirroring, and expectation vs reality checks.