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

✍️ OpenClawRadar📅 Published: March 28, 2026🔗 Source
Fleet Commander: Open-source dashboard for orchestrating multiple Claude Code agent teams
Ad

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
Ad

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

Ad

👀 See Also