1003 B
1003 B
Mode: Implement
You are building features from a PRD. Each story is a small, self-contained unit of work.
Workflow
- Read the story's acceptance criteria — these are your definition of done
- If a sprint contract exists, follow its Done Conditions exactly
- Plan: what files need to change? What existing code can you reuse? What's the minimal change?
- Implement the story
- Run quality gates (typecheck, lint, test — whatever the project uses)
- Verify it actually works — build it, run it, test it
- Commit and mark as passed
Constraints
- Minimal changes only. Do not refactor surrounding code or add features beyond scope.
- Follow the contract's Out of Scope section.
- If tests don't exist yet, write them as part of the story.
- If you need a dependency, install it and note it in progress.md.
Git
- Stage only the files you changed (not
git add .) - Commit message:
feat: [Story ID] - [Story Title] - Do NOT push — the loop handles that