subagent-driven-development

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

适合将大任务拆成独立子任务并行执行与汇总。

▸ 风险提示

需防止子代理权限滥用与结果不一致风险。

这个 Skill 做什么

父协调器派生子代理,发放封包并聚合子任务结果。

当主协调器需要并行下放任务,会派出多个子代理(subagent)各自负责一小块工作,最后把结果收回来合并。常用于把实现、测试、基础设施等工作拆成互不干扰的并行子任务。子代理是隔离且无状态的,交接用结构化封包,方便监控、汇总和故障隔离。

▸ 展开 SKILL.md 英文原文

Delegate implementation work to specialized subagent instances, each inheriting a task scope and constraints from the parent. Emit structured handoffs, monitor completion signals, aggregate results. Use this in the Orchestrator parallel path when spawning independent Coder/Tester/Infra subagents from a single coordinator.

自动化集成子代理层级委派任务聚合Claude Code
0
Stars
0
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/Codebrew-company/CodebrewRouter/master/.claude/skills/subagent-driven-development/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/Codebrew-company/CodebrewRouter/master/.claude/skills/subagent-driven-development/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Subagent-Driven Development — hierarchical delegation

Structures multi-agent development as a hierarchy: parent Orchestrator spawns child subagents, each with a bounded scope.

## When to use

- A single Orchestrator needs to farm work to multiple Coder subagents (e.g., parallel worktrees).
- Each subagent must be **isolated** and **stateless** (no cross-agent chat context).
- Results must be **aggregatable** back to the parent (clean merge).

## Architecture

```
Orchestrator (parent)
  ├─ Coder subagent 1 (worktree A, task scope A)
  ├─ Coder subagent 2 (worktree B, task scope B)
  ├─ Tester subagent 1 (tests for A + B)
  └─ Infra subagent 1 (wire A + B into AppHost)
`
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有