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

singularity-claude: A Self-Evolving Skill Engine for Claude Code
singularity-claude is an open-source Claude Code plugin that adds a recursive evolution loop to prevent skill rot. It scores skill executions, auto-repairs low-scoring skills, crystallizes high-performing versions, and detects capability gaps.

Cloken: A Chrome Extension That Shows Real-Time Claude Context Usage as a Percentage
Cloken is a free Chrome extension that displays your current Claude.ai chat context usage as a percentage — including messages, files, images, and system prompt.

Jan Adds One-Click OpenClaw Installation with Jan-v3-Base Model Integration
Jan now supports one-click installation of OpenClaw with direct integration to the Jan-v3-base model, keeping all operations local and private on your computer.

DoomVLM: Open Source Tool for Testing Vision Language Models in Doom Deathmatches
DoomVLM is now open source as a single Jupyter notebook that lets you test vision language models playing Doom via OpenAI-compatible APIs. The tool supports deathmatch modes where up to 4 models can compete, with full configuration options for system prompts, tool descriptions, and sampling parameters.