April 1, 2026
Big Brother for your bots?
Show HN: Real-time dashboard for Claude Code agent teams
Developers hail “mission control for bots” — then spar over speed and sky‑high AI bills
TLDR: A new plugin gives developers a live dashboard to watch every action their coding bots take, turning mystery into clarity. Commenters loved the transparency but battled over speed hits, messy logging, and shockingly high AI usage costs—asking if “mission control” is worth the performance and price trade‑offs.
Developers went full popcorn mode after a new plugin promised a live “control room” for Claude Code—Anthropic’s coding assistant that can spin up mini‑bots to edit files, run tests, and execute commands. The Agents Observe dashboard streams every move in real time, showing who spawned which bot, what tools they called, and what actually ran under the hood. Fans say it turns chaotic black‑box behavior into a watchable timeline you can pause and rewind.
The hype train started with pure optimism—one commenter called it a glimpse at “the future of coding”—but quickly hit turbulence. Performance hawks warned that even tiny delays per tracking hook add up fast when you’ve got bot swarms calling tools every few seconds, praising the Docker‑based setup while side‑eyeing anything on the critical path. Others raised eyebrow‑arching questions about log pileups: what happens when multiple bot teams try to write to the same files at once? Meanwhile, the project’s choice to use simple hooks instead of heavier OpenTelemetry (a monitoring standard) sparked nods for keeping it light.
Then came the wallet wars. One user asked if people are burning “hundreds a day” on AI usage, sparking memes about dashboards that watch your bots—and your balance. Amid the drama, front‑end nerds cheered the smooth UI, joking this feels like Mission Control for code.
Key Points
- •Agents Observe is a real-time dashboard for Claude Code agents that visualizes multi-agent sessions and tool calls.
- •It installs via the Claude plugin marketplace and requires Docker and Node.js; the server runs in a Docker container and auto-starts.
- •Hooks are used instead of OpenTelemetry to capture complete agent actions, including subagent hierarchies and tool invocations.
- •The dashboard offers live event streaming, filtering, full payload inspection, timeline navigation, and historical session browsing.
- •Architecture: Claude Code hooks → Node CLI → API server (SQLite) → React dashboard, with events sent via HTTP POST and live updates over WebSocket.