Implement from a written spec.md checklist β each iteration completes one unchecked requirement with verification.
Read spec.md. Pick the first unchecked requirement. Do not start multiple requirements in one pass.
Implement that single requirement with tests. Mark it [x] in spec.md only after verification.
Run tests and manual checks listed in the spec for this requirement.
Every requirement in spec.md is checked off
# Feature spec Check off each item only after it is implemented and verified. ## Requirements - [ ] Requirement 1 β describe acceptance criteria - [ ] Requirement 2 β describe acceptance criteria
Start the "Spec-First Ship" loop. Goal: every requirement in spec.md is implemented and checked off Max iterations: 15 Between iterations run: npm test Exit when: spec.md has no unchecked requirements Step 1: Read spec.md, implement the first unchecked item, verify it, mark [x], and stop this iteration. Self-pace this loop. After each iteration, run the check command, read the output, and only continue if the exit condition is not met. Stop when the exit condition passes or max iterations is reached. Give a short status update each pass.