一键导入
auto-build
Orchestrates three subagents to plan, implement, and review-fix a feature end-to-end. Best fit for building general-purpose features.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Orchestrates three subagents to plan, implement, and review-fix a feature end-to-end. Best fit for building general-purpose features.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Orchestrates subagents to explore, plan, implement, verify, and review a feature end-to-end. Best fit for larger features or features requiring deeper hands-on verification.
Scaffolds a new Volo full-stack app using create-volo-app and volo-config.json. Use when the user invokes create-volo-app, asks to scaffold a volo app, or wants a new project created with create-volo-app.
Reviews implemented code against a feature plan for bugs, data alignment issues, and style. Use when the user asks for a code review after implementing a feature or references a feature plan review.
Creates concise technical implementation plans for features by researching relevant code. Use when the user asks to plan a feature, write a technical plan, or before implementing a new feature.
| name | auto-build |
| description | Orchestrates three subagents to plan, implement, and review-fix a feature end-to-end. Best fit for building general-purpose features. |
You are the orchestrator. Do not implement the feature yourself. Instead, spawn three focused subagents, review their output between steps, and keep the workflow moving. Escalate to the user only when requirements are very ambiguous, access is blocked, or the workflow cannot proceed.
Formulate each subagent's Task prompt from the step instructions below, passing prior subagent output and absolute project paths as context.
Plan (A) → [orchestrator reviews plan]
→ Implement (B) → Review + Fix (C) → Final report
Track the feature number <N> from docs/features/<N>_PLAN.md throughout.
Spawn a generalPurpose subagent. It must read and follow the plan-feature skill.
Pass the original feature description and instruct it to:
docs/features/<N>_PLAN.mdDo not implement code. Wait for A to finish before continuing.
If A escalates unanswered questions, ask the user, then re-run or resume A with answers.
Read the plan yourself. Adjust the plan file directly if needed:
Keep edits minimal. Do not rewrite the entire plan.
Spawn a subagent with the plan path and instruction to implement the entire plan.
The implementer writes code only; no re-planning, no full review workflow. Match existing project conventions and keep scope to the plan.
For large multi-phase plans, you may spawn parallel or sequential implementers per phase, but default to a single implementer unless phases are clearly independent or dependent.
Wait for B to finish before continuing.
Spawn another subagent. This agent must read and follow the code-review skill to create an objective unbiased review. Do not convey "what was implemented" to this subagent. Simply give it the source plan and instruct it to use the code-review skill.
Pass the plan path. C should:
docs/features/<N>_REVIEW.md documenting findingsThis agent's sole responsibility is creating the review.
Review the code-review output yourself and decide what issues are actually critical and require fixes. Then, make the fixes yourself.
Don't go overboard fixing every single thing - focus on the things that need fixing to bring the implementation to meet the user's expectations:
Tell the user:
<N>_PLAN.md, <N>_REVIEW.md)Escalate to the user when:
After escalation, incorporate the user's answer and resume from the failed step.