원클릭으로
writing-plans-codex
Use when you have a spec or requirements for a multi-step task, before touching code. Codex-backed variant.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when you have a spec or requirements for a multi-step task, before touching code. Codex-backed variant.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Systematic 4-phase debugging with Codex-backed root cause investigation. Use only when the user explicitly asks for the Codex-backed debugging workflow.
Request a high-signal Codex-backed review of a diff or task result. Use when completing tasks, implementing major features, or before merging. Codex-backed variant.
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
Complete development work with Codex-backed branch analysis and structured finish options. Use only when the user explicitly asks for the Codex-backed branch finishing workflow.
Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation
Execute an implementation plan by dispatching Codex-backed implementer and reviewer agents while Claude keeps spec-compliance control. Codex-backed variant.
| name | writing-plans-codex |
| description | Use when you have a spec or requirements for a multi-step task, before touching code. Codex-backed variant. |
| disable-model-invocation | true |
Announce at start: "I'm using the writing-plans skill to create the implementation plan."
Save plans to: docs/superpowers/plans/YYYY-MM-DD-<feature-name>.md
You MUST create a task for each of these items and complete them in order:
codex_plan MCP tool.
Pass the approved spec verbatim as the prompt body; do not summarize it.
Start the prompt with:{
"tool": "codex_plan",
"arguments": {
"prompt": "Turn this approved spec into a detailed implementation plan.\n\nPaste the full approved spec below this line with no omissions or paraphrasing.\n\n<spec goes here>",
"workspaceRoot": "/absolute/path/to/your/repo"
}
}
Handle the response:
result populated): the draft conforms to schemas/plan-draft.schema.json (plan_markdown, files, tasks, test_commands, commit_boundaries). Proceed to review (Step 4).codex_plan with a sharper prompt naming the missing pieces, or address the gaps inline during review.result): inspect stderrTail and the resume hint in the error message; resume with codex_resume(taskId="…") once the cause is resolved.Review the draft — Claude reviews the returned plan against the spec (see Self-Review below)
Fix issues — edit the plan inline to fix any gaps found in review
Save plan — write to docs/superpowers/plans/YYYY-MM-DD-<feature-name>.md using plan-template.md header; commit
Offer execution — present the plan to the user and offer to execute via superpowers-cc-to-codex:subagent-driven-development-codex
After receiving the Codex draft, review with fresh eyes:
1. Spec coverage: Skim each section/requirement in the spec. Can you point to a task that implements it? List any gaps.
2. Placeholder scan: Search the plan for red flags:
3. Type consistency: Do types, method signatures, and property names used in later tasks match what was defined in earlier tasks?
If you find issues, fix them inline. If you find a spec requirement with no task, add the task.
After saving the plan:
"Plan complete and saved to
<path>. Execute using superpowers-cc-to-codex:subagent-driven-development-codex — dispatches Codex implementer per task with two-stage review."