Openclaw-superpowers writing-plans
Creates clear, reviewable implementation plans before executing. Use after brainstorming and before writing any code.
install
source · Clone the upstream repo
git clone https://github.com/ArchieIndian/openclaw-superpowers
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ArchieIndian/openclaw-superpowers "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/core/writing-plans" ~/.claude/skills/archieindian-openclaw-superpowers-writing-plans && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ArchieIndian/openclaw-superpowers "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/core/writing-plans" ~/.openclaw/skills/archieindian-openclaw-superpowers-writing-plans && rm -rf "$T"
manifest:
skills/core/writing-plans/SKILL.mdsource content
Writing Plans
Plans prevent wasted work. Write one before implementing anything significant.
Plan Format
- Goal - one sentence, what success looks like
- Approach - which option from brainstorming, and why
- Steps - ordered list, each step verifiable
- Risks - what could go wrong, and mitigation
- Definition of Done - how you'll know it's complete
OpenClaw-Specific: Checkpoint Steps
For tasks that may span multiple sessions, add explicit checkpoint steps: [ ] Step 3: Create the API endpoint [CHECKPOINT - save progress here]
At each checkpoint, update memory/YYYY-MM-DD.md with current state.