planning-foundation
Installation
SKILL.md
Planning Foundation
Work like Manus: Use persistent markdown files as your "working memory on disk."
Every workflow skill in superpower-planning inherits this foundation. .planning/ is the "RAM on disk" for the current work session.
Planning Directory Convention
.planning/ # gitignored, ephemeral working state
├── findings.md # aggregated findings
├── progress.md # Task Status Dashboard + session log
└── agents/ # created on demand by subagents
├── implementer/ # one dir per role, reused across tasks
│ ├── findings.md # this agent's discoveries (appended across tasks)
│ └── progress.md # this agent's action log (appended across tasks)
├── spec-reviewer/
└── ...