subagent-driven-development
Intent
- 用于把较大的工程任务拆成可并行的子任务:当任务明确较大、用户希望你并行推进,或者前端/后端/文档/测试等责任可以清晰拆开时使用。Prefer
planning-with-fileswhen 任务还没拆清;Combine withusing-git-worktreeswhen 需要独立工作区,Combine withverification-before-completionwhen 子任务完成后要统一收口;Do not use for 小任务、强耦合单点问题或当前下一步被单个阻塞点卡住的任务。
Default operating pattern
- Capture the actual engineering goal and the next decision that matters.
- Inspect the current code, tests, branch state, or CI context before acting.
- Take the smallest next action that reduces uncertainty or advances delivery.
- Collect fresh evidence before claiming progress.
- Summarize status, risks, and the next recommended step.
Pack fit
- Included in:
engineering-workflow - Keep examples generic, privacy-safe, and portable across hosts.
Boundary
- Do not use for tightly coupled single-threaded work or tiny tasks.