Files
openclaw-master-skills/skills/code/planning.md
T
MyClaw AI 3e83cee039 feat: expand to 339+ curated skills (v0.3.0)
- Added 175 new high-quality skills across all categories
- 14 distinct categories: AI, Search, Productivity, Dev, Marketing, Media, Finance, Communication, Smart Home, Memory, Security, Data, Social, Other
- Updated all language READMEs and SKILL.md
- Weekly update by MyClaw.ai
2026-03-11 11:54:00 +00:00

633 B

Planning Reference

Consult when breaking down a multi-step request.

When to Plan

  • Multiple files or components
  • Dependencies between parts
  • UI that needs visual verification
  • User says "build", "create", "implement"

Step Format

Step N: [What]
- Output: [What exists after]
- Test: [How to verify]

Good Steps

  • Clear output (file, endpoint, screen)
  • Testable independently
  • No ambiguity in what "done" means

Bad Steps

  • "Implement the thing" (vague output)
  • No test defined
  • Depends on undefined prior step

Don't Plan

  • One-liner functions
  • Simple modifications
  • Questions about existing code