claude-devfleet

Coordinate multiple AI agents across isolated git worktrees with task DAGs and structured reports.

1|Updated Mar 18, 2026
One-click install
npx skills add https://github.com/xxih/ai-harness-zh --skill claude-devfleet-xxih
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: claude-devfleet
Source: https://github.com/xxih/ai-harness-zh/tree/main/references/translations/everything-claude-code/docs/zh-CN/skills/claude-devfleet
Command: npx skills add https://github.com/xxih/ai-harness-zh --skill claude-devfleet-xxih

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill coordinates multiple Claude Code agents to execute parallel software development tasks, managing isolated git worktrees, task dependencies, automated dispatch, and structured reporting so developers don't have to manually orchestrate multi-agent workflows.

Core Features & Use Cases

  • Project planning with DAGs: decompose a high-level prompt into a project ID and a chain of dependent missions.
  • Parallel agent orchestration: dispatch missions to agents running in isolated git worktrees, support auto_dispatch to queue and run tasks as dependencies resolve.
  • Monitoring and structured reports: poll mission status, inspect a dashboard of running agents, and retrieve structured reports containing changed files, test results, errors, and recommended next steps.
  • Safe merge and conflict handling: automatically merge completed worktree branches and preserve conflicting changes for manual resolution.
  • Use Case: plan and run a multi-step feature implementation where individual agents implement, test, and review changes across isolated worktrees, then aggregate results for human review.

Quick Start

Use the claude-devfleet skill to plan a project for a REST API and dispatch the root mission to start agents in isolated git worktrees.

Frequently Asked Questions about claude-devfleet

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

FAQPage Schema
How do I orchestrate multiple AI agents to run parallel coding tasks?

Multi-agent orchestration coordinates several Claude Code agents to execute parallel coding tasks across isolated git worktrees. It decomposes a prompt into dependent missions and dispatches them automatically as dependencies resolve.

How do I manage git worktrees for parallel software development workflows?

Git worktree management isolates parallel coding tasks by dispatching missions to agents running in separate worktrees. Completed branches automatically merge, while conflicting changes are preserved for manual resolution.

How do I generate a task dependency graph for multi-agent project planning?

Project planning with task DAGs decomposes a high-level prompt into a project ID and a chain of dependent missions. This maps dependencies between coding tasks to enable staged dispatch across multiple agents.

Can I use auto_dispatch to queue parallel agents as dependencies resolve?

Auto_dispatch queues and runs missions automatically as task dependencies resolve. It supports multi-agent software development workflows by sequentially releasing dependent coding tasks to available isolated agents.

How do I monitor running agents and retrieve structured reports for code review?

Monitoring polls mission status and inspects a dashboard of running agents. Structured reports retrieve changed files, test results, errors, and recommended next steps for human code review.

What are the limitations of automated merging in isolated git worktrees?

Automated merging safely merges completed worktree branches but cannot resolve all conflicts. When conflicts occur, it preserves the conflicting changes for manual resolution rather than overwriting them.