#1088 04e11b5 Thanks @mm-parthy! - Add cross-tag task movement functionality for organizing tasks across different contexts.
This feature enables moving tasks between different tags (contexts) in your project, making it easier to organize work across different branches, environments, or project phases.
Move a single task from one tag to another:
# Move task 5 from backlog tag to in-progress tag
task-master move --from=5 --from-tag=backlog --to-tag=feature-1
# Move task with its dependencies
task-master move --from=5 --from-tag=backlog --to-tag=feature-2 --with-dependencies
# Move task without checking dependencies
task-master move --from=5 --from-tag=backlog --to-tag=bug-3 --ignore-dependencies
Move multiple tasks at once:
# Move multiple tasks between tags
task-master move --from=5,6,7 --from-tag=backlog --to-tag=bug-4 --with-dependencies
#1040 fc47714 Thanks @DomVidja! - "Add Kilo Code profile integration with custom modes and MCP configuration"
#1054 782728f Thanks @martincik! - Add compact mode --compact / -c flag to the tm list CLI command
#1048 e3ed4d7 Thanks @joedanz! - Add CLI & MCP progress tracking for parse-prd command.
#1124 95640dc Thanks @Crunchyman-ralph! - Add support for ollama gpt-oss:20b and gpt-oss:120b
#1123 311b243 Thanks @Crunchyman-ralph! - Remove clear Taskmaster claude code commands since they were too close to the claude-code clear command
#1131 3dee60d Thanks @joedanz! - Update Cursor one-click install link to new URL format
#1088 04e11b5 Thanks @mm-parthy! - Fix add-tag --from-branch command error where projectRoot was not properly referenced
The command was failing with "projectRoot is not defined" error because the code was directly referencing projectRoot instead of context.projectRoot in the git repository checks. This fix corrects the variable references to use the proper context object.