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

Blitz: Claude Code Tool for App Store Submissions
Blitz is a free tool that gives Claude Code the ability to automate App Store submissions via MCP tool calls. Users can ask Claude to 'submit my app to the app store' to handle certificates, screenshots, and App Store Connect forms.

EvalShift: Open-source CLI for detecting LLM regressions during model migration
EvalShift is an MIT-licensed Python CLI that compares source vs target LLM outputs across prompts, agents, and tool-calling workflows, generating a local HTML regression report.

Open-source persistent memory system for Claude Code solves context loss between sessions
A developer built a file-based memory system for Claude Code that automatically captures project context without plugins or API keys. It uses conversation transcripts, an inbox file, and nightly cron jobs to maintain persistent memory across sessions.

Phalanx CLI coordinates multiple AI agents for automated code-review cycles
A developer built Phalanx, a CLI tool that coordinates AI agents from different providers: Codex handles coding, Claude Opus performs code review, and Claude Sonnet orchestrates the loop. A companion tool called Codebones compresses repositories to structural maps to reduce token usage.