claude-devfleet

仓库创建 2026年4月15日最近提交 21 天前SkillHot 收录 21 天前
▸ 精选理由

避免文件冲突,适合多个 Coder 并行实现互不重叠任务。

这个 Skill 做什么

用 Git worktree 为每个代理创建隔离工作树,支持并行开发与合并。

用 Git worktree 为每个并行 agent 建立独立工作树和分支,让每个 Coder 有自己的 checkout,避免工作目录冲突并能并行开发。适合 Orchestrator 需要把文件不重叠的实现任务并行分派,并最终把改动合并回主分支时使用。特点是完全隔离的工作树、可并行提交与监控,合并时更容易处理冲突。

▸ 展开 SKILL.md 英文原文

Orchestrate parallel agent development using Git worktrees. Spin isolated checkouts for each task, assign Coders to independent worktrees, monitor progress, and merge results back. Use this when the Conductor or Orchestrator needs to parallelize file-disjoint implementation tasks across multiple agents.

开发编程并行开发Git工作树Claude Code
0
Stars
0
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/Codebrew-company/CodebrewRouter/master/.claude/skills/claude-devfleet/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/Codebrew-company/CodebrewRouter/master/.claude/skills/claude-devfleet/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Claude DevFleet — parallel development via Git worktrees

Enables multi-agent parallel coding without file conflicts. Each agent gets its own worktree on an isolated branch.

## When to use

- Multiple Coder agents are assigned non-overlapping file sets in the same phase.
- You need fully isolated development trees (no shared working directory state).
- Results must be mergeable back to the main branch without manual conflict resolution.

## Workflow

### Setup

```powershell
# From repo root; create a worktree for each parallel task
git worktree add -b feature-name .worktrees/<task-slug> main
```

### Assignment

Each Coder agent receives an exclusive worktree path in their handoff enve
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有