* docs: Update taskmaster.mdc and dev_workflow.mdc with missing CLI flags and enhanced workflow guidance - Add missing --tag flags to commands that were implemented but not documented - Add missing --file flags to tag management commands - Add --bedrock flag to models command documentation - Synchronize CLI documentation with actual implementation in commands.js - Enhance dev_workflow.mdc with comprehensive tagged task lists guidance - Add patterns for when to introduce tags (git branching, team collaboration, experiments) - Consolidate and refine changesets for upcoming release * chore: package-lock fixup * chore: fix format --------- Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com>
20 lines
911 B
Markdown
20 lines
911 B
Markdown
---
|
|
"task-master-ai": minor
|
|
---
|
|
|
|
Enhance update-task with --append flag for timestamped task updates
|
|
|
|
Adds the `--append` flag to `update-task` command, enabling it to behave like `update-subtask` with timestamped information appending. This provides more flexible task updating options:
|
|
|
|
**CLI Enhancement:**
|
|
- `task-master update-task --id=5 --prompt="New info"` - Full task update (existing behavior)
|
|
- `task-master update-task --id=5 --append --prompt="Progress update"` - Append timestamped info to task details
|
|
|
|
**Full MCP Integration:**
|
|
- MCP tool `update_task` now supports `append` parameter
|
|
- Seamless integration with Cursor and other MCP clients
|
|
- Consistent behavior between CLI and MCP interfaces
|
|
|
|
Instead of requiring separate subtask creation for progress tracking, you can now append timestamped information directly to parent tasks while preserving the option for comprehensive task updates.
|
|
|