fix(workflows:work): Mark off checkboxes in plan as tasks complete

Added step to update original plan document with completed checkboxes
([ ] → [x]) after each task is finished. Keeps the plan as a living
document showing progress.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Kieran Klaassen
2026-01-18 20:52:15 -08:00
parent 7e625e3aab
commit 9671f48629
3 changed files with 16 additions and 2 deletions

View File

@@ -76,9 +76,12 @@ This command takes a work document (plan, specification, or todo file) and execu
- Implement following existing conventions
- Write tests for new functionality
- Run tests after changes
- Mark task as completed
- Mark task as completed in TodoWrite
- Mark off the corresponding checkbox in the plan file ([ ] → [x])
```
**IMPORTANT**: Always update the original plan document by checking off completed items. Use the Edit tool to change `- [ ]` to `- [x]` for each task you finish. This keeps the plan as a living document showing progress and ensures no checkboxes are left unchecked.
2. **Follow Existing Patterns**
- The plan should reference similar code - read those files first