claude-devfleet

Orchestrates parallel Claude Code agents across isolated git worktrees via DevFleet MCP tools.

1|Updated Oct 11, 2025
One-click install
npx skills add https://github.com/ibytechaos/claude --skill claude-devfleet-ibytechaos
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: claude-devfleet
Source: https://github.com/ibytechaos/claude/tree/main/plugins/everything-claude-code/skills/claude-devfleet
Command: npx skills add https://github.com/ibytechaos/claude --skill claude-devfleet-ibytechaos

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Coordinating multiple coding agents on a large task is error-prone when done manually: work overlaps, dependencies get out of order, and progress is hard to track. This Skill turns a plain-language project description into a dependency-chained mission plan and dispatches Claude Code agents to execute it in parallel, each in an isolated git worktree with automatic merging. ## Core Features & Use Cases - AI Project Planning: plan_project breaks a prompt into a project with missions linked by depends_on chains, forming a DAG. - Parallel Agent Dispatch: dispatch_mission spawns agents in isolated worktrees; dependent missions auto-start when prerequisites complete via auto_dispatch. - Monitoring & Reporting: get_mission_status, get_dashboard, and get_report provide progress tracking and structured summaries of files changed, errors, and next steps. - Use Case: Ask to "build a REST API with auth and tests" — the Skill plans the missions, dispatches the first agent, auto-chains follow-up missions, and reports results as each completes. ## 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 with the devfleet skill.

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 the DevFleet MCP tools: call plan_project with a task description to generate dependency-chained missions, then dispatch_mission on the root mission. Remaining missions auto-dispatch as dependencies complete, with up to 3 agents running concurrently by default.

How do I set up the Claude DevFleet MCP server?

Register it with the command: claude mcp add devfleet --transport http http://localhost:18801/mcp. A running DevFleet instance must be reachable at that endpoint before any planning or dispatch tools will work.

How do mission dependencies work in DevFleet?

Each mission accepts a depends_on list of mission IDs, forming a DAG. Set auto_dispatch=true so a mission starts automatically once its dependencies complete; without it, missions remain in draft status. Circular dependencies are not allowed.

What happens when a DevFleet agent finishes or fails?

Completed agents auto-merge their worktree branch back; merge conflicts stay on the agent's branch for manual resolution. For failures, call get_report to read errors and next steps before retrying the mission.

How many agents can DevFleet run at the same time?

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.