Creates a structured implementation plan from a spec using the Codex plan drafter, then reviews and saves it. Invoke when requirements are ready but before writing code.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers-cc-to-codex:writing-plans-codexThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
<!--
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."
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 mzored/superpowers-cc-to-codex --plugin superpowers-cc-to-codex