Files
claude-task-master/.changeset/cold-pears-poke.md
Eyal Toledano b848452a46 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
2025-06-14 21:15:14 +03:00

771 B

task-master-ai
task-master-ai
patch

Fix critical bugs in task move functionality:

  • Fixed moving tasks to become subtasks of empty parents: When moving a task to become a subtask of a parent that had no existing subtasks (e.g., task 89 → task 98.1), the operation would fail with validation errors.

  • Fixed moving subtasks between parents: Subtasks can now be properly moved between different parent tasks, including to parents that previously had no subtasks.

  • Improved comma-separated batch moves: Multiple tasks can now be moved simultaneously using comma-separated IDs (e.g., "88,90" → "92,93") with proper error handling and atomic operations.

These fixes enables proper task hierarchy reorganization for corner cases that were previously broken.