一键导入
implementation
Stage 3 orchestrator — guides Implementation for a phase: shows task progress, routes through investigate → do → review → quality per task.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Stage 3 orchestrator — guides Implementation for a phase: shows task progress, routes through investigate → do → review → quality per task.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Enforces staged execution discipline on large tasks: a written stage plan, parallel delegation where the runtime supports it, a failable verification check at each stage, and a skeptical self-review before delivery. Trigger when the user explicitly asks ("do this thoroughly", "be systematic", "deep work mode") OR when the task objectively spans multiple files, multiple sources, or multiple sessions. Do NOT trigger on ordinary multi-step requests that a direct attempt handles fine.
Bootstrap project orchestration with beads task tracking.
Core engineering principles for implementation tasks
Create beads from a spec (full decomposition) or from user input (ad-hoc issues). Single entry point for all bead creation.
Dispatch the implementation supervisor for a bead task. Resolves the correct supervisor from the assignee field, checks branch state, and dispatches with full context.
QA finalization gate — validates spec conformity, runs tests/build/lint, produces a structured QA report. Auto-dispatches the supervisor for rework on FAIL. Last gate before human merge.
| name | implementation |
| description | Stage 3 orchestrator — guides Implementation for a phase: shows task progress, routes through investigate → do → review → quality per task. |
| user_invocable | true |
Guide the user through Stage 3 — Implementation for a specific phase. Shows task progress and routes through the per-task pipeline.
bd ready
bd list --status=in_progress
bd blocked
Display:
Stage 3 — Implementation (Phase {NN})
Progress: {completed}/{total} tasks complete
Ready: {list of ready task IDs with titles}
In progress: {list of in-progress task IDs with titles}
In review: {list of in-review task IDs with titles}
Blocked: {count}
For each task, show its pipeline position:
[ ] — not started[investigate] — investigation done, awaiting implementation[do] — implementation in progress[review] — awaiting or in code review[quality] — awaiting or in QA[done] — closed
If no bead ID was provided in arguments:
bd ready to show unblocked tasksDetermine the task's current pipeline position and route to the appropriate step.
**Investigate** — Run codebase analysis before implementation.Check if investigation already exists for this bead (search comments for INVESTIGATION:).
/doSkill(skill="investigate", args="{BEAD_ID}")Wait for completion before proceeding.
**Implement** — Dispatch the implementation supervisor.Dispatch: Skill(skill="do", args="{BEAD_ID}")
Wait for supervisor to complete. After completion, the bead should be in-review with needs-review label.
Check if bead has needs-review label.
Skill(skill="review", args="{BEAD_ID}")The /review skill handles auto-dispatching rework if needed.
Check if bead has approved label.
Skill(skill="quality", args="{BEAD_ID}")The /quality skill handles auto-dispatching rework if needed.
Stage 3 — Implementation (Phase {NN}): COMPLETE
All {total} tasks closed
Ready for merge to main
- If more tasks remain → pick next task
- If phase complete → recommend starting next phase with `/specification {NN+1}` or check overall status with `/workflow`