.kiro/steering/taskmaster_hooks_workflow.md
When working with Taskmaster in Kiro, avoid manually marking tasks as done. The hook system automatically handles task completion based on:
[TM] Test Success Task Completer detects passing tests and prompts for task completion[TM] Code Change Task Tracker monitors implementation progress[TM] Task Dependency Auto-Progression auto-starts dependent tasksFollow this pattern when implementing features:
tm set-status --status=done unless hooks fail to detect completionThe hook system provides:
Only manually set task status for:
Use tm set-status sparingly - prefer hook-driven completion.
1. Implement feature → Save file
2. Write tests → Save test file
3. Tests pass → Hook prompts completion
4. Confirm completion → Next task auto-starts
This workflow ensures proper task tracking while maintaining development flow.