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

ClawCodex /advisor Mode: Pair Cheap Worker with Expensive Reviewer to Cut Costs Without Losing Quality
Open-source Python coding agent ClawCodex adds an /advisor mode that pairs a cheap worker model (e.g., Haiku) with an expensive reviewer (e.g., Opus) at decision points, cutting costs several-fold without sacrificing architectural judgment.

Claude Code Plugin for Reddit Business Research
A Claude Code plugin automates Reddit research for businesses by searching relevant posts, analyzing threads, and generating structured markdown reports with findings and source links. No API keys required—install via GitHub and run with a single command.

Heartbeat-gateway: Event-driven replacement for cron polling in OpenClaw
Heartbeat-gateway is an open-source Python tool that replaces cron-based polling with webhook-driven events for OpenClaw, reducing API costs from ~$86/month to ~$4.50/month and improving latency from up to 30 minutes to under 2 seconds.

OpenClaw PARA Skill Automatically Organizes Files Using Tiago Forte's Method
A developer created an OpenClaw skill that enforces the PARA method (Projects, Areas, Resources, Archives) for automatic file organization, moving files from a messy root directory into structured folders.