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.