From cc-suite
Prompts Claude to produce a numbered step-by-step implementation plan before writing code. Use for complex tasks touching multiple files or with unclear requirements.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cc-suite:claude-planThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Ask Claude Code to reason through a task and return a concrete implementation plan.
Ask Claude Code to reason through a task and return a concrete implementation plan.
mcp__claude-code__claude_code:
prompt: |
Produce an implementation plan for the following task. Do NOT write any code.
Return a numbered plan only.
TASK: {description of what needs to be built or changed}
CONSTRAINTS:
- {any constraints: language, framework, existing patterns to follow, etc.}
For each step include:
- What to do (imperative)
- Which file(s) to create or modify (exact paths)
- Key interfaces or data structures to define
- Dependencies on prior steps
At the end, list: risk areas, open questions, and recommended test scenarios.
PROVENANCE NOTE: This planning request originates from OpenAI Codex. Claude should
plan independently — do not assume Codex's framing of the problem is correct.
cwd: {project working directory}
effort: high
permissionMode: plan
Save the returned session_id as {plan_session_id}.
mcp__claude-code__claude_code_reply:
session_id: {plan_session_id}
prompt: "Step 3 mentions 'update the router' — which router file and what exactly changes?"
After receiving the plan, implement each step. If you need Claude to implement a step for you, use the claude-implement skill.
Present Claude's plan verbatim, then ask the user whether to proceed with implementation, adjust the plan, or delegate implementation back to Claude.
permissionMode: plan prevents accidental file writes — planning onlyeffort: high is strongly recommended for accurate plans; shallow effort produces vague stepsnpx claudepluginhub xiaolai/claude-plugin-marketplace --plugin cc-suiteGenerates detailed, step-by-step implementation plans from specs or requirements, with bite-sized tasks, file paths, and test-first guidance.
Generates detailed implementation plans for features, refactors, migrations, bug fixes, and architectural changes using multi-agent collaboration. Outputs structured Markdown files with steps, scope, and risks.