subagent-driven-development

Installation
SKILL.md

子代理驅動的開發

通過為每個任務派遣新的子代理來執行計劃,每個任務之後進行兩階段審查:首先進行規範合規性審查,然後進行代碼質量審查。

核心原則: 每個任務新鮮的子代理+兩階段審查(規格然後質量)=高質量,快速迭代

何時使用

digraph when_to_use {
    "Have implementation plan?" [shape=diamond];
    "Tasks mostly independent?" [shape=diamond];
    "Stay in this session?" [shape=diamond];
    "subagent-driven-development" [shape=box];
    "executing-plans" [shape=box];
    "Manual execution or brainstorm first" [shape=box];

    "Have implementation plan?" -> "Tasks mostly independent?" [label="yes"];
    "Have implementation plan?" -> "Manual execution or brainstorm first" [label="no"];
Related skills
Installs
5
First Seen
Feb 25, 2026