anthonylee991 / superpowers-plan
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/superpowers-plan && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/2478" && unzip -o skill.zip -d .claude/skills/superpowers-plan && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/superpowers-plan/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Writes an implementation plan with small steps, exact files to touch, and verification commands. Use before making non-trivial changes.
0 views
0 installs
Skill Content
--- name: superpowers-plan description: Writes an implementation plan with small steps, exact files to touch, and verification commands. Use before making non-trivial changes. --- # Planning Skill ## When to use this skill - any multi-file change - any change that impacts behavior, data, auth, billing, or production workflows - any debugging that needs systematic isolation ## Planning rules - Steps should be **small** (2–10 minutes each). - Every step must include **verification**. - Prefer **incremental deliverables** (avoid “big bang” edits). - Identify **rollback** and **risk controls** early. ## Plan format (use this exact structure) ### Goal ### Assumptions ### Plan 1. Step name - Files: `path/to/file.ext`, `...` - Change: (1–2 bullets) - Verify: (exact commands or checks) 2. ... ### Risks & mitigations ### Rollback plan