Fleet Commander: Open-source dashboard for orchestrating multiple Claude Code agent teams

Fleet Commander is an open-source local web dashboard that orchestrates multiple Claude Code agent teams across repositories simultaneously. It addresses the limitation of only being able to watch one Claude Code session at a time when dealing with multiple open issues.
How the Diamond Team Works
Each issue gets assigned a "Diamond team" consisting of three specialized agents:
- Planner — Reads the issue, explores the codebase, and writes a concrete implementation plan with architectural decisions
- Dev — Receives the plan, implements it, writes tests, and pushes to a branch
- Reviewer — Performs a two-pass code review (code quality + plan compliance) and sends feedback directly to the Dev
The agents communicate peer-to-peer via SendMessage. The Planner stays alive so the Dev can ask clarifying questions, and the Reviewer sends structured feedback directly to the Dev (not through the team lead).
Dashboard Features
From the Fleet Commander dashboard, you can:
- See all teams running in real-time with status, session logs, token usage, and PR state
- Launch teams from an issue tree with one click (or use "Run All")
- Send messages to any running agent
- Watch the communication graph between agents
- Track CI/PR status and auto-merge when everything's green
Automated Management
Fleet Commander handles operational tasks including:
- Idle/stuck detection
- CI monitoring
- Merge conflict alerts
- Dependency-aware queuing
Performance Metrics
From dogfooding on itself:
- 50+ team runs with 98% success rate (merged PR)
- Median time to merged PR: ~22 minutes
- Median cost per team: ~$4
- The entire Fleet Commander dashboard was largely built by Fleet Commander teams working on Fleet Commander issues
Technical Stack and Installation
Built with Fastify + React + SQLite + SSE. Everything runs locally with no external services or cloud dependencies.
Install via npm:
npm install -g fleet-commander-ai fleet-commander
The npm package is fleet-commander-ai because fleet-commander was taken.
Or clone from source:
https://github.com/hubertciebiada/fleet-commander
Fleet Commander also includes an MCP server so you can operate it directly from Claude Code without the UI.
📖 Read the full source: r/ClaudeAI
👀 See Also

Product Manager Shares 70+ Claude Skills for Automating PM Workflows
A product manager with 20 years experience has created over 70 Claude skills that automate common PM tasks, including PRD generation, user interview analysis, competitive profiling, and roadmap building. The skills are available as downloadable .md files for Claude Code.

Cross-Model Review Loop for AI Coding Agents Catches Critical Planning Flaws
A developer built a cross-model review system where a second AI model reviews plans from coding agents before execution, catching critical flaws like rollback failures and security holes. The tool is MIT licensed and includes a TUI dashboard.

MCP Server Indexes Codebases into Knowledge Graph for 10x Token Reduction
A new MCP server called codebase-memory-mcp parses codebases into a persistent knowledge graph using tree-sitter, reducing token usage by at least 10x for structural queries. Benchmarked across 35 real-world repositories, it replaces file-by-file exploration with graph queries.

Blindspot MCP: An External Brain for AI Coding Agents
Blindspot MCP is a tool that indexes full codebases using tree-sitter and SQLite to help AI coding agents understand symbols, dependencies, and relationships across files, preventing changes that break code outside their immediate context.