subagent-driven-development
仓库创建 2026年4月15日最近提交 20 天前SkillHot 收录 20 天前
▸ 精选理由
适合需要并行化多工的开发场景,降低冲突和耦合。
▸ 风险提示
子代理自动化可能产生未受控资源或权限扩散
这个 Skill 做什么
将实现工作委派给独立子代理,监控完成并聚合结果。
把实现工作委派给独立的子代理:父级下发有界任务和约束,子代理执行并返回结构化的交接和完成信号,最后汇聚结果。用在 Orchestrator 要并行派出多个 Coder/Tester/Infra 子实例,各自负责一块且相互独立的场景。强调无状态和清晰接口,便于监控、重试和把子结果合并到总体工作流。
▸ 展开 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.
0
Stars
0
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/Codebrew-company/CodebrewRouter/master/.agents/skills/subagent-driven-development/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/Codebrew-company/CodebrewRouter/master/.agents/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 公开信息 · 原文版权归作者所有