From project-governor
实施计划阶段。Use when creating a detailed implementation plan after all design phases are complete. 通常由上一阶段自动调用,除非用户明确只想重做实施计划。
How this skill is triggered — by the user, by Claude, or both
Slash command
/project-governor:implementation-planThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate a structured implementation plan by delegating to `superpowers:writing-plans`, enriched with governance metadata.
Generate a structured implementation plan by delegating to superpowers:writing-plans, enriched with governance metadata.
Prerequisite depends on project type:
project-governor:state-design complete (state in phases_completed)project-governor:ui-design complete (ui in phases_completed)Verify the appropriate artifact exists in docs/governor/ before proceeding.
digraph plan_pdca {
rankdir=LR;
node [shape=box, style=filled];
"P: Define plan scope" [fillcolor="#E3F2FD"];
"D: Write implementation plan" [fillcolor="#E8F5E9"];
"C: Gate-check plan" [fillcolor="#FFF3E0"];
"A: Accept or rework" [fillcolor="#F3E5F5"];
"P: Define plan scope" -> "D: Write implementation plan" -> "C: Gate-check plan" -> "A: Accept or rework";
"C: Gate-check plan" -> "D: Write implementation plan" [label="fail", style=dashed];
}
docs/governor/specs/, flows/, states/, and ui/ (if B-type). Assemble full design context.
语言要求:本次委托产出的所有文档必须使用中文撰写。如果被委托的 skill 输出英文内容,在保存为 artifact 之前必须翻译为中文。专业术语可在括号内保留英文原文。superpowers:writing-plans — Invoke writing-plans to create the implementation plan. Feed it the full design context. Let it drive:
docs/superpowers/plans/ to docs/governor/plans/YYYY-MM-DD-<project-name>-plan.md---
governance:
cycle: <from project.yaml>
requirements_spec: <filename>
flow_spec: <filename>
state_spec: <filename>
ui_spec: <filename or "N/A for type A">
plan_phase: plan
---
Dispatch gate-checker agent against shared/gate-templates/plan-gate.md:
Gate verdict → PASS / CONDITIONAL / FAIL
plan to phases_completed, set current_phase: plan. Write gate record. 更新 docs/governor/INDEX.md:更新当前阶段,追加产物记录行。
auto: true in project.yaml: Automatically invoke project-governor:stage-gate.auto: false: Prompt: "Plan ready. Next: invoke project-governor:stage-gate for cross-phase consistency verification, or begin implementation with superpowers:subagent-driven-development"This skill delegates plan creation entirely to superpowers:writing-plans. We add:
If the plan has independent task groups, offer the user:
superpowers:subagent-driven-development — sequential with reviewsuperpowers:dispatching-parallel-agents — parallel execution for independent tasksEach phase is a self-contained PDCA loop. The implementation plan is the last design-phase artifact. Next: cross-phase stage gate verifies all artifacts are aligned.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub zmyfrank/project-governor --plugin project-governor