Catalog
affaan-m/claude-devfleet

affaan-m

claude-devfleet

Orchestrate multi-agent coding tasks via Claude DevFleet — plan projects, dispatch parallel agents in isolated worktrees, monitor progress, and read structured reports. Use when dispatching parallel coding agents across isolated worktrees and tracking their reports.

NewUpdated Sep 9, 2026

Claude DevFleet Multi-Agent Orchestration

When to Use

Use this skill when you need to dispatch multiple Claude Code agents to work on coding tasks in parallel. Each agent runs in an isolated git worktree with full tooling.

Setup

The DevFleet server is a separate project, not bundled with ECC. Install and run it from its repository first: https://github.com/LEC-AI/claude-devfleet

Then connect the running instance via MCP:

claude mcp add devfleet --transport http http://localhost:18801/mcp

Before first use, verify the process listening on port 18801 is the DevFleet binary you installed (see SECURITY.md on localhost MCP servers).

How It Works

User → "Build a REST API with auth and tests"
  ↓
plan_project(prompt) → project_id + mission DAG
  ↓
Show plan to user → get approval
  ↓
dispatch_mission(M1) → Agent 1 spawns in worktree
  ↓
M1 completes → auto-merge → auto-dispatch M2 (depends_on M1)
  ↓
M2 completes → auto-merge
  ↓
get_report(M2) → files_changed, what_done, errors, next_steps
  ↓
Report back to user

Tools

Tool Purpose
plan_project(prompt) AI breaks a description into a project with chained missions
create_project(name, path?, description?) Create a project manually, returns project_id
create_mission(project_id, title, prompt, depends_on?, auto_dispatch?) Add a mission. depends_on is a list of mission ID strings (e.g., ["abc-123"]). Set auto_dispatch=true to auto-start when deps are met.
dispatch_mission(mission_id, model?, max_turns?) Start an agent on a mission
cancel_mission(mission_id) Stop a running agent
wait_for_mission(mission_id, timeout_seconds?) Block until a mission completes (see note below)
get_mission_status(mission_id) Check mission progress without blocking
get_report(mission_id) Read structured report (files changed, tested, errors, next steps)
get_dashboard() System overview: running agents, stats, recent activity
list_projects() Browse all projects
list_missions(project_id, status?) List missions in a project

Note on wait_for_mission: This blocks the conversation for up to timeout_seconds (default 600). For long-running missions, prefer polling with get_mission_status every 30–60 seconds instead, so the user sees progress updates.

Workflow: Plan → Dispatch → Monitor → Report

  1. Plan: Call plan_project(prompt="...") → returns project_id + list of missions with depends_on chains and auto_dispatch=true.
  2. Show plan: Present mission titles, types, and dependency chain to the user.
  3. Dispatch: Call dispatch_mission(mission_id=<first_mission_id>) on the root mission (empty depends_on). Remaining missions auto-dispatch as their dependencies complete (because plan_project sets auto_dispatch=true on them).
  4. Monitor: Call get_mission_status(mission_id=...) or get_dashboard() to check progress.
  5. Report: Call get_report(mission_id=...) when missions complete. Share highlights with the user.

Concurrency

DevFleet runs up to 3 concurrent agents by default (configurable via DEVFLEET_MAX_AGENTS). When all slots are full, missions with auto_dispatch=true queue in the mission watcher and dispatch automatically as slots free up. Check get_dashboard() for current slot usage.

Examples

Full auto: plan and launch

  1. plan_project(prompt="...") → shows plan with missions and dependencies.
  2. Dispatch the first mission (the one with empty depends_on).
  3. Remaining missions auto-dispatch as dependencies resolve (they have auto_dispatch=true).
  4. Report back with project ID and mission count so the user knows what was launched.
  5. Poll with get_mission_status or get_dashboard() periodically until all missions reach a terminal state (completed, failed, or cancelled).
  6. get_report(mission_id=...) for each terminal mission — summarize successes and call out failures with errors and next steps.

Manual: step-by-step control

  1. create_project(name="My Project") → returns project_id.
  2. create_mission(project_id=project_id, title="...", prompt="...", auto_dispatch=true) for the first (root) mission → capture root_mission_id. create_mission(project_id=project_id, title="...", prompt="...", auto_dispatch=true, depends_on=["<root_mission_id>"]) for each subsequent task.
  3. dispatch_mission(mission_id=...) on the first mission to start the chain.
  4. get_report(mission_id=...) when done.

Sequential with review

  1. create_project(name="...") → get project_id.
  2. create_mission(project_id=project_id, title="Implement feature", prompt="...") → get impl_mission_id.
  3. dispatch_mission(mission_id=impl_mission_id), then poll with get_mission_status until complete.
  4. get_report(mission_id=impl_mission_id) to review results.
  5. create_mission(project_id=project_id, title="Review", prompt="...", depends_on=[impl_mission_id], auto_dispatch=true) — auto-starts since the dependency is already met.

Guidelines

  • Always confirm the plan with the user before dispatching, unless they said to go ahead.
  • Include mission titles and IDs when reporting status.
  • If a mission fails, read its report before retrying.
  • Check get_dashboard() for agent slot availability before bulk dispatching.
  • Mission dependencies form a DAG — do not create circular dependencies.
  • Each agent runs in an isolated git worktree and auto-merges on completion. If a merge conflict occurs, the changes remain on the agent's worktree branch for manual resolution.
  • When manually creating missions, always set auto_dispatch=true if you want them to trigger automatically when dependencies complete. Without this flag, missions stay in draft status.
Files1
1 files · 1.0 KB

Select a file to preview

Overall Score

82/100

Grade

B

Good

Grades are signals, not a certification. Always review a skill yourself before use.

Safety

80

Quality

84

Clarity

88

Completeness

76

Summary

Claude DevFleet is a multi-agent orchestration skill that enables users to plan, dispatch, and monitor parallel coding tasks across isolated git worktrees. It provides a workflow for breaking complex projects into chained missions, dispatching Claude Code agents to work on them concurrently, and collecting structured reports on completion. The skill relies on an external DevFleet server (MCP service) running on localhost and requires explicit setup before use.

Detected Capabilities

MCP tool invocation (plan_project, dispatch_mission, get_report, etc.)Concurrent agent lifecycle managementGit worktree isolation and auto-mergeDashboard and status monitoringMission dependency DAG managementHTTP communication with localhost MCP server

Trigger Keywords

Phrases that agents use to match this skill to user intent.

parallel coding agentsmulti-agent orchestrationproject planning breakdowndispatch coding tasksmonitor agent progressdevfleet missionsconcurrent worktrees

Risk Signals

WARNING

MCP server connection to localhost:18801 without certificate pinning or authentication validation documented

Setup section, MCP connection instruction
INFO

Automated mission dispatch and auto-merge without human review guardrail for all but root mission

Guidelines section, worktree auto-merge description
INFO

Merge conflict handling delegates to manual resolution without clear escalation process

Guidelines section, merge conflict note

Referenced Domains

External domains referenced in skill content, detected by static analysis.

github.comlocalhost

Use Cases

  • Orchestrate multi-agent coding tasks across isolated worktrees
  • Plan complex projects into chained, auto-dispatching missions
  • Monitor concurrent agent progress via dashboard and status polling
  • Collect structured reports from completed coding missions
  • Enable parallel feature development with dependency management
  • Dispatch tasks with automatic merging on completion

Quality Notes

  • Excellent workflow documentation with clear ASCII flow diagram showing the end-to-end process
  • Well-structured tool reference table with concise purpose descriptions for each tool
  • Three concrete workflow examples (full auto, manual step-by-step, sequential with review) demonstrating different usage patterns
  • Clear concurrency model and guidance on handling slot availability (default 3 concurrent agents)
  • Actionable guidelines include user confirmation before dispatch and mission failure diagnosis
  • Security note on localhost MCP servers is referenced but not detailed in this skill — good defensive practice
  • Missing: timeout handling guidance for long-running missions (partially addressed with wait_for_mission note)
  • Missing: error recovery strategies beyond 'read report and retry'
  • Missing: guidance on handling circular dependency detection or prevention
  • Concurrency limits are mentioned (3 agents default) but no guidance on queue depth or mission prioritization
Model: claude-haiku-4-5-20251001Analyzed: Sep 9, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Version History

  1. v2.0

    Contract changed: description

    ✦ AIExpands skill description contract to clarify use cases for parallel agent dispatch and progress tracking.

    triggering2026-09-09

    LATEST
  2. v1.2

    Content updated

    ✦ AIAdds setup section with explicit installation instructions and security reminder for DevFleet server installation.

    2026-07-14

    View This Version
  3. v1.1

    Content updated

    ✦ AIAdds LICENSE file.

    2026-04-20

    View This Version
  4. v1.0

    2026-04-12

    View This VersionInitial version

Use affaan-m/claude-devfleet in your dev environment

Command Palette

Search for a command to run...