claude-devfleet

Orchestrate parallel Claude Code agents across isolated git worktrees via MCP.

Updated Mar 18, 2026
One-click install
npx skills add https://github.com/freedom909/real-estate-saas --skill claude-devfleet-freedom909
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: claude-devfleet
Source: https://github.com/freedom909/real-estate-saas/tree/main/.trae/skills/claude-devfleet
Command: npx skills add https://github.com/freedom909/real-estate-saas --skill claude-devfleet-freedom909

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Coordinating multiple coding agents on a large project manually is slow and error-prone. This Skill lets you plan a project, dispatch parallel Claude Code agents in isolated git worktrees, monitor their progress, and read structured completion reports through a running Claude DevFleet MCP server. ## Core Features & Use Cases - AI Project Planning: Call plan_project to break a natural-language description into a project with chained missions and dependency DAGs. - Parallel Agent Dispatch: Run up to 3 concurrent agents (configurable via DEVFLEET_MAX_AGENTS), each in an isolated worktree with auto-merge on completion. - Monitoring & Reporting: Track progress with get_mission_status and get_dashboard, then read structured reports (files changed, errors, next steps) via get_report. - Use Case: Ask to "build a REST API with auth and tests" — the Skill plans the missions, dispatches the root mission, auto-dispatches dependent missions as dependencies complete, and reports results back to you. ## Quick Start Connect the DevFleet MCP server with claude mcp add devfleet --transport http http://localhost:18801/mcp, then ask the AI to plan and launch your project description.

Frequently Asked Questions about claude-devfleet

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run multiple Claude Code agents in parallel?▼

Use Claude DevFleet connected via MCP, then call plan_project with a task description to generate chained missions. Dispatch the root mission and remaining missions auto-dispatch as dependencies complete, with up to 3 concurrent agents by default.

How to set up the Claude DevFleet MCP server?▼

Add the DevFleet server to Claude Code with the command: claude mcp add devfleet --transport http http://localhost:18801/mcp. A running DevFleet instance must be reachable at that address before dispatching missions.

What happens when a DevFleet agent finishes a mission?▼

The agent's changes auto-merge from its isolated git worktree, and dependent missions with auto_dispatch=true start automatically. If a merge conflict occurs, changes stay on the agent's worktree branch for manual resolution.

How many agents can Claude DevFleet run at once?▼

DevFleet runs up to 3 concurrent agents by default, configurable via the DEVFLEET_MAX_AGENTS environment variable. When slots are full, auto-dispatch missions queue and start as slots free up; check get_dashboard for current usage.

Why is my DevFleet mission stuck in draft status?▼

Missions created manually with create_mission stay in draft unless auto_dispatch=true is set or you call dispatch_mission explicitly. Also verify that all mission IDs in depends_on have completed, since dependencies form a DAG.

Should I use wait_for_mission or poll mission status?▼

Prefer polling with get_mission_status every 30-60 seconds for long-running missions. wait_for_mission blocks the conversation for up to timeout_seconds (default 600), preventing progress updates to the user.