一键导入
executing-plans
Use when an approved plan exists and implementation should begin — executes steps sequentially with verification checkpoints
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when an approved plan exists and implementation should begin — executes steps sequentially with verification checkpoints
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when a structured PRD document is needed for the ralph loop — generates prd.json and progress.txt
Use when task scope exceeds one context window and decomposes into independent pass/fail stories with clean iteration boundaries
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work — merge, PR, or cleanup
Use when starting feature work that needs isolation from the current workspace or before executing plans that could leave the branch in a broken state
Use when a hard problem was just solved and the solution should be captured as a learning for future reference
Use when 3+ distinct occurrences suggest a skill should be updated with a new trigger, anti-pattern, or verification step
| name | executing-plans |
| description | Use when an approved plan exists and implementation should begin — executes steps sequentially with verification checkpoints |
| tags | ["process","execution","implementation"] |
| triggers | ["approved plan","start implementing","execute plan","begin work","plan approved"] |
| chains_to | ["verification-before-completion","self-review","subagent-driven-development"] |
| priority | core |
| gate | false |
With an approved plan: execute step by step. Verify each step before moving to the next. If anything changes, pause and re-scope with the user. Ship working increments, not a big bang.
writing-plans)writing-plans first)writing-plans)Read the plan file. Identify:
For each step:
If the step's acceptance criteria fail:
systematic-debugging principles (reproduce, isolate, fix)While executing, look for steps that can run in parallel:
dispatching-parallel-agentssubagent-driven-developmentOnly parallelize when steps are genuinely independent. When in doubt, run sequentially.
If during execution you discover:
Never silently deviate from the plan. The user approved a specific plan. Changes need acknowledgment.
After all steps pass:
verification-before-completionself-reviewUpdate the plan file as you go:
[x] or a "DONE" note| Anti-Pattern | Why It's Wrong |
|---|---|
| Implementing all steps then verifying at the end | Errors compound. Verify as you go. |
| Silently adding scope during execution | The user approved X, not X + Y. |
| Skipping verification for "easy" steps | Easy steps fail too. |
| Abandoning the plan midway | If the plan is wrong, revise it — don't wing it. |
| Not announcing progress | The user should know where you are. |
| Big-bang implementation | Working increments are debuggable. Monoliths aren't. |
REQUIRED: syntaxninja-dojo:verification-before-completion (after all steps complete) REQUIRED: syntaxninja-dojo:self-review (after verification passes) OPTIONAL: syntaxninja-dojo:subagent-driven-development (for parallelizable steps) OPTIONAL: syntaxninja-dojo:dispatching-parallel-agents (for independent steps)