AgentPeek: Open-source dashboard for monitoring Claude Code agent teams

AgentPeek is an open-source tool built with Claude Code that provides a live dashboard for monitoring agent teams. It addresses the common problem of watching terminal output without understanding which agents are doing what, why tasks take time, or where tokens are being consumed.
Key Features
- Agent orchestration — Shows who spawned whom, parallel vs sequential execution, and team hierarchy as a live directed graph
- Execution traces — Every tool call with full inputs/outputs, retries, failures, and timing
- Prompts & results — Exact prompts each agent received and what they returned
- Cost attribution — Per-agent token estimates to identify budget consumption
- Stuck detection — Real-time alerts when an agent loops on the same failed call
- Files touched — Which agents read, wrote, edited, or deleted which files
- Session replay — Full chronological event log for post-session debugging
- Cross-session baselines — Track agent performance over time in plain English
- Bottleneck analysis — Identify the slowest agent, wasted work, and parallelism gaps
Installation
Installation requires three commands:
git clone https://github.com/TranHuuHoang/agentpeek.git
cd agentpeek
pipx install -e . agentpeek
The tool auto-installs hooks into Claude Code settings, and the dashboard opens at localhost:8099.
Technical Details
AgentPeek is free, open source, and MIT licensed. All data stays fully local on your machine with nothing sent to external servers. The tool is described as "early and rough in places" by the creator, who welcomes feedback and contributions.
This type of monitoring tool is particularly useful for developers working with multi-agent systems where understanding execution flow, debugging failures, and managing costs are critical to effective development workflows.
📖 Read the full source: r/ClaudeAI
👀 See Also

Offload Routine Claude Code Work to Gemma via offload-mcp MCP Server
offload-mcp is a new MCP server that lets Claude offload routine tasks like commit messages and PR summaries to free model APIs (default Gemma via Google GenAI API), saving Claude tokens and running lightweight work without local hardware constraints.

Zora: Offline-First AI Agent with Default-Deny Security and Local Memory
Zora is an AI agent that runs fully offline via Ollama by default, starts with zero access permissions, and maintains persistent memory across sessions. It addresses security and cost issues seen in other agents.

Building a Local Voice-to-Text macOS App with Claude Code: Vext Case Study
A developer spent 3 months building Vext, a macOS voice-to-text app using Whisper on Apple Neural Engine. Claude Code helped with Rust/Swift FFI, Core ML optimization, and hotkey architecture. The app runs 100% offline, transcribes 60s audio in ~400ms.

Screenbox: Open-Source Virtual Desktops for AI Agents Built Entirely by Voice
Screenbox provides isolated Linux desktops in Docker for AI agents, solving conflicts when multiple agents run in parallel. The project was built entirely using voice commands with Claude Code, and the creator hasn't seen a single line of the code.