Metapowers

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 results

File 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:

  1. List available features: check directories under .metapowers/development/
  2. Read a specific phase artifact: .metapowers/development/<feature>/01-plan.md
  3. The implementation plan in 01-plan.md is the most commonly referenced artifact — it contains task breakdowns, file paths, and architecture decisions
  4. The test report in 03-test.md contains coverage metrics and bug logs

On this page