- Introduced multiple Kiro hooks to automate task management workflows, including: - Code Change Task Tracker - Complexity Analyzer - Daily Standup Assistant - Git Commit Task Linker - Import Cleanup on Delete - New File Boilerplate - PR Readiness Checker - Task Dependency Auto-Progression - Test Success Task Completer - Added .mcp.json configuration for Taskmaster AI integration. - Updated development workflow documentation to reflect new hook-driven processes and best practices. This commit enhances the automation capabilities of Taskmaster, streamlining task management and improving developer efficiency.
13 lines
575 B
Plaintext
13 lines
575 B
Plaintext
{
|
|
"enabled": true,
|
|
"name": "[TM] Git Commit Task Linker",
|
|
"description": "Link commits to tasks for traceability",
|
|
"version": "1",
|
|
"when": {
|
|
"type": "manual"
|
|
},
|
|
"then": {
|
|
"type": "askAgent",
|
|
"prompt": "I'm about to commit code. Please:\n\n1. Run 'git diff --staged' to see what's being committed\n2. Analyze the changes and suggest which tasks they relate to\n3. Generate a commit message in format: 'feat(task-<id>): <description>'\n4. Update the relevant tasks with a note about this commit\n5. Show the proposed commit message for approval"
|
|
}
|
|
} |