Problem
New projects move fast and drift early. AI can generate a lot of code before the team agrees on behavior.Outcome
You get a repo where specs, code, tests, and docs stay aligned from the first commit.High-level walkthrough
- Create a
specs/folder. - Write one small spec for the first important feature.
- Ask Codex to build the code from those specs.
- Ask Codex to update tests and docs to match.
- Run
spec checkand let CI run the same check before merge.
Codex example prompt
Any coding agent prompt
Verify
- Run spec check locally.
- Confirm CI runs the same check.
- Confirm tests pass.