home / skills / anthonylee991 / gemini-superpowers-antigravity / superpowers-plan
This skill generates a precise incremental implementation plan detailing touched files, small steps, and verification for safe multi-file changes.
npx playbooks add skill anthonylee991/gemini-superpowers-antigravity --skill superpowers-planReview the files below or copy the command above to add this skill to your agents.
---
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
This skill writes a precise implementation plan for non-trivial code changes, breaking work into small, verifiable steps and listing exact files to modify. It enforces incremental deliverables, verification commands, and a clear rollback strategy so changes are safe and auditable. Use it before making multi-file edits or any change that affects behavior, data, auth, billing, or production workflows.
Given a change request, the skill outputs a structured plan using the exact format: Goal, Assumptions, Plan (ordered numbered steps), Risks & mitigations, and Rollback plan. Each step lists the files to touch, the minimal change bullets, and precise verification commands or checks. Steps are short (2–10 minutes) and always include verification and rollback notes where applicable.
What format will the plan use?
The plan uses the exact structure: Goal, Assumptions, Plan (numbered steps with Files/Change/Verify), Risks & mitigations, and Rollback plan.
How detailed should verification be?
Verification must be exact commands or checks (CLI commands, test names, HTTP requests, SQL queries) that prove the step succeeded.