spec: define AcceptanceCriteria and Acceptance fields on issues

This commit is contained in:
Tiara Rodney 2026-03-22 01:38:29 +01:00
parent 6f7bd2daf7
commit 5fd490e303
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723
2 changed files with 38 additions and 9 deletions

View file

@ -53,11 +53,11 @@ transition commits manually.
todo create --type feature --title "Title" --plan "Description"
# Start work (must be on develop)
todo start <id> --plan "Planned approach"
todo start <id> --acceptance-criteria "What must be true for this to be done"
# Then create the branch: git checkout -b <type>/<id>
# Complete work (must be on <type>/<id>)
todo done <id> --summary "What was delivered"
todo done <id> --acceptance "What was delivered against the criteria"
# Hold or cancel
todo hold <id> --reason "Why"