DEV Community

sahaabhishek
sahaabhishek

Posted on

Local dashboard for monitoring AI agent sessions — no cloud, no account

I've been running multiple AI coding agents in parallel — Claude Code sessions, sub-agents spawned mid-task, OpenCode running alongside — and I couldn't keep track of any of it.

So I built CrewView: a local dashboard that gives you a real-time view of every AI agent session running on your machine.

Here's what it does:

→ Sessions list — every conversation, with status, duration, and a prompt preview
→ Kanban board — split across Running / Needs Approval / Needs Input
→ Live view — agent cards updating in real time, with sub-agents shown nested under their parent
→ Sub-agent tracking — when Claude Code spawns a Task agent, it appears as a child session
→ Workflow builder — define multi-step agent pipelines and trigger scheduled runs
→ Multi-source — Claude Code (reads local JSONL files) and OpenCode (HTTP API) at the same time

The entire thing is a single Go binary with the React dashboard embedded inside. Install with one command:

curl -fsSL https://raw.githubusercontent.com/ovsec/crewview/main/install.sh | sh

No Docker, no cloud account, no telemetry you didn't opt into. All data stays in a local SQLite file.

It's MIT licensed and on GitHub: github.com/ovsec/crewview

If you're spending serious time with AI coding agents, I'd love to hear what visibility you wish you had. Happy to add it.

AI #DeveloperTools #OpenSource #ClaudeCode #AIAgents

Top comments (0)