Minor Changes
-
#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.
CLI Usage Examples
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 thetm list
CLI command- outputs tasks in a minimal, git-style one-line format. This reduces verbose output from ~30+ lines of dashboards and tables to just 1 line per task, making it much easier to quickly scan available tasks.
- Git-style format: ID STATUS TITLE (PRIORITY) → DEPS
- Color-coded status, priority, and dependencies
- Smart title truncation and dependency abbreviation
- Subtask support with indentation
- Full backward compatibility with existing list options
- outputs tasks in a minimal, git-style one-line format. This reduces verbose output from ~30+ lines of dashboards and tables to just 1 line per task, making it much easier to quickly scan available tasks.
-
#1048
e3ed4d7
Thanks @joedanz! - Add CLI & MCP progress tracking for parse-prd command. -
#1124
95640dc
Thanks @Crunchyman-ralph! - Add support for ollamagpt-oss:20b
andgpt-oss:120b
-
#1123
311b243
Thanks @Crunchyman-ralph! - Removeclear
Taskmaster claude code commands since they were too close to the claude-code clear command
Patch Changes
-
#1131
3dee60d
Thanks @joedanz! - Update Cursor one-click install link to new URL format -
#1088
04e11b5
Thanks @mm-parthy! - Fixadd-tag --from-branch
command error whereprojectRoot
was not properly referencedThe command was failing with "projectRoot is not defined" error because the code was directly referencing
projectRoot
instead ofcontext.projectRoot
in the git repository checks. This fix corrects the variable references to use the proper context object.