Milestone 01
Scaffold the Core
Land the minimum repo structure required for a repeatable AI-native engineering workflow.
- Project charter
- OpenSpec template
- Playbook template
- Artifact schemas
- Validation structure
- Agent role definitions
Scaffold the repository with a small set of durable contracts, templates, and one complete feature example. The goal is not merely to ship code—it is to create a repeatable system that lets humans and specialized AI agents deliver reusable platform capabilities consistently.
Land the minimum repo structure required for a repeatable AI-native engineering workflow.
Use a real feature to prove the operating model end to end.
Once the artifacts work manually, begin wiring specialized agents into the workflow.
/ ├── README.md ├── AGENTS.md ├── charter/ │ └── charter.md ├── specs/ │ ├── templates/ │ │ └── feature-spec.md │ └── features/ ├── playbooks/ │ ├── templates/ │ └── new-feature/ ├── agents/ │ ├── chief-architect/ │ ├── gameplay-engineer/ │ ├── embedded-engineer/ │ ├── qa-test-engineer/ │ └── engine-steward/ ├── artifacts/ │ └── schemas/ ├── knowledge/ │ ├── adr/ │ ├── patterns/ │ └── lessons/ ├── validation/ │ ├── automated/ │ ├── e2e/ │ └── human/ ├── platform/ │ ├── engines/ │ ├── packages/ │ └── firmware/ ├── apps/ │ ├── ios/ │ ├── android/ │ └── web/ ├── services/ │ ├── python/ │ └── node/ └── tests/
Each feature spec includes a mandatory Platform Impact section.
User story: As a player, I want to start, pause, and resume a game without losing progress.