Storage
How Development artifacts are organized in the .metapowers/ directory.
Directory Structure
All Development artifacts are stored in your project's .metapowers/development/ directory, organized by feature:
.metapowers/development/<feature>/
01-plan.md ← Implementation plan and task breakdown
02-build.md ← Build execution log and decisions
03-test.md ← Test coverage and resultsFile Naming Convention
Development artifacts use a numbered prefix pattern (01- through 03-) corresponding to each phase of the development workflow (plan, build, test). Utility skills (debug, review, ship) produce output in the conversation rather than writing to artifact files.
Accessing Artifacts
To find Development artifacts from other domains:
- List available features: check directories under
.metapowers/development/ - Read a specific phase artifact:
.metapowers/development/<feature>/01-plan.md - The implementation plan in
01-plan.mdis the most commonly referenced artifact — it contains task breakdowns, file paths, and architecture decisions - The test report in
03-test.mdcontains coverage metrics and bug logs