← ClaudeAtlas

spec-phase-orchestrationlisted

The pre-implementation document pipeline — 5 files + `meetings/` directory (README.md + docs/design.md + docs/foundations.md + docs/plan.md + docs/methodology.md + meetings/), section-by-section approval (§What before §How), prerequisite checklist with Unconfirmed / Resolved gates, "no implementation code before design.md and plan.md approved" rule. Invoke when starting a new project that needs spec-first development, deciding doc structure, or when asked "which documents go in the spec phase".
wei18/apple-dev-skills · ★ 0 · Data & Documents · score 70
Install: claude install-skill wei18/apple-dev-skills
# Spec Phase Orchestration ## When to invoke - Starting a new project and deciding which documents the spec phase produces. - Multiple documents / sections are in flight and you need to decide the order of progress. - User asks "design or foundations first", "can we proceed with prerequisites unresolved". ## Default decisions ### 5 files + `meetings/` directory ``` <project>-spec/ ├── README.md # Project entry point ├── docs/ │ ├── foundations.md # Engineering substrate (language version, modules, CI, L10n, secrets) │ ├── design.md # Product spec §What + technical design §How (unified) │ ├── plan.md # TDD-ordered checklist │ └── methodology.md # Claude agent application practices (living doc) └── meetings/ └── {YYYY-MM-DD}_{topic}.md ``` Don't split further: - No separate spec.md / rfc.md / tasks.md (folded into design.md / plan.md) - No `adr/` directory; major decisions land directly in design.md or foundations.md (open one only if real need arises) ### Progression order ``` foundations.md §1..§N (one section at a time) → design.md §What (product spec) → design.md §How (technical design) → plan.md (TDD-ordered) → implementation phase begins ``` **Rule**: don't write §How before design.md §What passes; don't write implementation code before plan.md passes. ### Section-by-section approval - The Leader advances one section at a time, waiting for user / review approval before moving on. - Multipl