| name | plan-writing |
| description | Structured task planning. Breakdowns, dependencies, verification. |
| allowed-tools | Read, Glob, Grep |
Plan Writing
Small tasks. Clear verification.
Principles
- Small: 2-5 mins per task.
- Verifiable: "How do I know it's done?".
- Specific: "Add
auth middleware" > "Add security".
- Dynamic: No fixed templates.
- Location:
{task-slug}.md in Project Root.
Structure
# [Task Name]
## Goal
One sentence.
## Tasks
- [ ] Action → Verify: [Check]
- [ ] Action → Verify: [Check]
## Done When
- [ ] Criteria 1
🧠 Aletheia Reasoning Protocol (Planning)
1. Generator (Decomposition)
- Atomic: "< 10 mins?".
- Dependency: "API key needed before client?".
- Verification: "How to prove it works?".
2. Verifier (Reality Check)
- Complexity: "'Refactor App' is not a step. Break it down.".
- Risks: "Flag unknowns.".
- Rollback: "Can I undo?".
3. Reviser (Clarity)
- Actionable: "Handle NullPointer" > "Fix bug".
- Context: "Add file paths.".
🛡️ Security & Safety Protocol (Planning)
- No Secrets: Plans are artifacts (Text).
- Destructive: Mark deletions with ⚠️.
- Auth: Verify intent for infra changes.
- Backup: Plan backups before migrations.