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

md-redline: GUI tool for reviewing and handing off markdown docs to Claude
md-redline is an open-source tool that lets you open markdown files in a GUI, leave inline comments stored as HTML markers in the .md file, and hand back off to Claude for updates. It runs locally with no account, cloud, or database required.

Open-source web dashboard tracks Claude token usage for remote workflows
A developer built react-ai-token-monitor, a lightweight web dashboard that parses local Claude project files in real-time to calculate costs, show model breakdowns, and track usage patterns. The tool revealed $4,808 worth of Claude tokens consumed in March 2026 on a Max 20x plan.

Files.md: Open-Source Local-First Markdown Note-Taking App with LLM-Friendly Design
Files.md is an open-source, local-first markdown app for notes, tasks, and journals. 886 stars, built in Go, works offline, syncs via iCloud/Dropbox/self-hosted server or hosted beta app.files.md.

Multi-Agent Career Mentor Built with Ollama and MCP for Local AI
A developer built a 5-agent AI system that analyzes resumes and generates career intelligence reports using Ollama with llama3 locally. The system chains agent outputs so each builds on previous context, with MCP handling tool integration.