Claude Devfleet
Description
Multi-agent coding platform that dispatches Claude CLI agents to work on missions (coding tasks). Each agent runs in an isolated git worktree, streams live output via SSE, and produces structured reports. Built on Claude Code's full feature set.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Claude DevFleet — Autonomous Coding Agent Platform
[](LICENSE)
Multi-agent coding platform that dispatches [Claude Code](https://docs.anthropic.com/en/docs/claude-code) agents to work on missions (coding tasks). Agents run in isolated git worktrees with MCP-powered tools, create sub-missions for other agents, and coordinate autonomously through a dependency-aware dispatch system.
Built on the Claude Code SDK and MCP (Model Context Protocol) ecosystem.
Architecture
frontend/ React 19 + Vite UI (port 3101 via nginx)
backend/ FastAPI + SQLite (port 18801, uvicorn --reload)
Runs in Docker via `docker-compose.yml` or locally with a Python venv.
graph TD
subgraph UI["Claude DevFleet UI :3101"]
Web["React 19 + Vite"]
end
subgraph API["Claude DevFleet API :18801"]
FastAPI["FastAPI + SQLite"]
end
subgraph Services["Background Services"]
SDK["SDK Engine"]
Watcher["Mission Watcher"]
Sched["Scheduler"]
AutoLoop["Auto-Loop"]
Remote["Remote Control"]
end
subgraph Agents["Agent Pool (max 3)"]
A1["Agent"] --> MCP1["MCP Servers"]
A2["Agent"] --> MCP2["MCP Servers"]
A3["Agent"] --> MCP3["MCP Servers"]
end
Web -->|"HTTP"| FastAPI
FastAPI --> SDK
FastAPI --> Watcher
FastAPI --> Sched
FastAPI --> AutoLoop
FastAPI --> Remote
SDK -->|"dispatch"| A1 & A2 & A3
Watcher -->|"auto-dispatch on dependency satisfaction"| SDK
Sched -->|"cron clone → dispatch"| Watcher
AutoLoop -->|"plan → parallel dispatch"| SDK
MCP1 -->|"create_sub_mission"| Watcher
Architecture Evolution
See the full [architecture evolution diagram](diagrams/devfleet-architecture-evolution.html) showing the platform's progression from CLI subprocess spawning (Phase 0) through SDK migration (Phase 1), MCP ecosystem (Phase 2), to autonomous multi-a
Related Skills
Epic Sync
Sync epic issue bodies, labels, and local coordination snapshots from GitHub.
Git 使用 Git Worktrees
创建孤立的 Git worktrees,带有智能目录选择与安全验证。
Git Claude skills github
[Building agent skills blog](https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-ag
Git #148
, [#161](https://github.com/affaan-m/everything-claude-code/pull/161))
Git GitHub MCP
| Token | Repos, issues, PRs, workflows |
Git GitHub MCP Server
Official first-party server to read repos, manage issues/PRs, and automate workflows.
Git