developer
适合想要无人值守完成开发交付的团队。
需要仓库读写与合并权限,可能自动提交或合并 PR。
以子 agent 工作流自动化治理 PRD 的撰写、实现、复审与合并流程。
把一份 PRD 拆成子任务,自动驱动 triage→实现→差异审查→修复→合并的流水线,能无人值守地把每个子项交付到 CLEAN 状态再合并。适合需要批量交付复杂多子任务的项目,支持并行或顺序、可选自动合并策略。特别在于每个子 agent 都只拿到干净上下文,主控负责状态与循环直到通过。
▸ 展开 SKILL.md 英文原文
Orchestrates unattended PRD delivery — loops over a PRD's native sub-issues in dependency order, dispatching dispatcher (complexity triage), code-author (implement), and diff-reviewer (review) workers per sub-issue, with a review→fix cycle until CLEAN, then merging per the repo's merge policy. Factory defaults are parallel execution and manual merge; repo defaults live in docs/agents/developer-defaults.md and per-run flags (--parallel/--sequential, --auto-merge/--no-auto-merge) override them. Use when user says "/developer", "deliver this PRD", "deliver this sub-issue", or wants the build→review→fix pipeline.
帮我安装这个 skill:https://raw.githubusercontent.com/sgomez/developer-skills/main/skills/developer/SKILL.mdcurl -fsSL "https://raw.githubusercontent.com/sgomez/developer-skills/main/skills/developer/SKILL.md"# Developer (orchestrator)
Drives the triage → build → review → fix → merge pipeline across isolated
subagent workers, looping over every sub-issue of a PRD unattended. Each
worker gets a **clean context** — the only thing it knows is the arguments you
pass in its prompt. You (the orchestrator) hold the state between steps.
## Invoke
```
/developer <issue> # PRD with sub-issues → deliver them all
# plain issue → deliver just that one
/developer <prd> <subissue> # deliver a single specific sub-issue
Flags (override the repo defaults — see Run configuration):
--parallel | --sequential # PRD mode: waves vs one-at-a-time
--auto-merge |