claude-devfleet

Orchestrate parallel coding agents in isolated git worktrees via Claude DevFleet MCP tools.

Updated Mar 25, 2026
One-click install
npx skills add https://github.com/Femad-6/my-skills --skill claude-devfleet-femad-6
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: claude-devfleet
Source: https://github.com/Femad-6/my-skills/tree/main/.github/skills/claude-devfleet
Command: npx skills add https://github.com/Femad-6/my-skills --skill claude-devfleet-femad-6

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Coordinating multiple coding tasks 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 instance. ## Core Features & Use Cases - AI Project Planning: Use 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) with automatic dispatch as dependencies complete and auto-merge on success. - Monitoring & Reporting: Track progress with get_mission_status and get_dashboard, then read structured reports with files changed, errors, and 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-dispatch chains the rest, and reports results for each completed mission. ## Quick Start Connect the DevFleet MCP server with claude mcp add devfleet --transport http http://localhost:18801/mcp, then ask the assistant to plan and launch your project, for example: plan and build a REST API with authentication and tests using DevFleet.

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 to plan a project into missions, then dispatch the root mission with dispatch_mission. Dependent missions auto-dispatch as their dependencies complete, with up to 3 concurrent agents by default.

How do I connect Claude Code to DevFleet?

Register the DevFleet MCP server with the command: claude mcp add devfleet --transport http http://localhost:18801/mcp. A running DevFleet instance on port 18801 is required before any orchestration tools work.

What happens when a DevFleet mission finishes?

The agent's changes auto-merge from its isolated git worktree, and dependent missions with auto_dispatch=true start automatically. Call get_report to read files changed, what was done, errors, and next steps.

Why is my DevFleet mission stuck in draft status?

Missions created manually stay in draft unless auto_dispatch=true is set or you call dispatch_mission explicitly. Also check get_dashboard, since queued missions wait when all agent slots are occupied.

What happens if a DevFleet merge conflict occurs?

When auto-merge fails, the agent's changes remain on its worktree branch for manual resolution. The conflict does not block other missions, and you can inspect the mission report for details.

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 its timeout (default 600 seconds), hiding progress from the user.