Minor Changes
-
#521
ed17cb0
Thanks @Crunchyman-ralph! - .taskmasterconfig now supports a baseUrl field per model role (main, research, fallback), allowing endpoint overrides for any provider. -
#536
f4a83ec
Thanks @Crunchyman-ralph! - Add Ollama as a supported AI provider.- You can now add it by running
task-master models --setup
and selecting it. - Ollama is a local model provider, so no API key is required.
- Ollama models are available at
http://localhost:11434/api
by default. - You can change the default URL by setting the
OLLAMA_BASE_URL
environment variable or by adding abaseUrl
property to theollama
model role in.taskmasterconfig
.- If you want to use a custom API key, you can set it in the
OLLAMA_API_KEY
environment variable.
- If you want to use a custom API key, you can set it in the
- You can now add it by running
-
#528
58b417a
Thanks @Crunchyman-ralph! - Display task complexity scores in task lists, next task, and task details views.
Patch Changes
-
#402
01963af
Thanks @Crunchyman-ralph! - Resolve all issues related to MCP -
#478
4117f71
Thanks @joedanz! - Fix CLI --force flag for parse-prd commandPreviously, the --force flag was not respected when running
parse-prd
, causing the command to prompt for confirmation or fail even when --force was provided. This patch ensures that the flag is correctly passed and handled, allowing users to overwrite existing tasks.json files as intended.- Fixes #477
-
#511
17294ff
Thanks @Crunchyman-ralph! - Task Master no longer tells you to update when you're already up to date -
#442
2b3ae8b
Thanks @eyaltoledano! - Adds costs information to AI commands using input/output tokens and model costs. -
#402
01963af
Thanks @Crunchyman-ralph! - Fix ERR_MODULE_NOT_FOUND when trying to run MCP Server -
#402
01963af
Thanks @Crunchyman-ralph! - Add src directory to exports -
#523
da317f2
Thanks @Crunchyman-ralph! - Fix the error handling of task status settings -
#527
a8dabf4
Thanks @Crunchyman-ralph! - Remove caching layer from MCP direct functions for task listing, next task, and complexity report- Fixes issues users where having where they were getting stale data
-
#417
a1f8d52
Thanks @ksylvan! - Fix for issue #409 LOG_LEVEL Pydantic validation error -
#442
0288311
Thanks @eyaltoledano! - Small fixes -next
command no longer incorrectly suggests that subtasks be broken down into subtasks in the CLI - fixes theappend
flag so it properly works in the CLI -
#501
0a61184
Thanks @Crunchyman-ralph! - Fix initial .env.example to work out of the box- Closes #419
-
#435
a96215a
Thanks @lebsral! - Fix default fallback model and maxTokens in Taskmaster initialization -
#517
e96734a
Thanks @Crunchyman-ralph! - Fix bug when updating tasks on the MCP server (#412) -
#496
efce374
Thanks @joedanz! - Fix duplicate output on CLI help screen- Prevent the Task Master CLI from printing the help screen more than once when using
-h
or--help
. - Removed redundant manual event handlers and guards for help output; now only the Commander
.helpInformation
override is used for custom help. - Simplified logic so that help is only shown once for both "no arguments" and help flag flows.
- Ensures a clean, branded help experience with no repeated content.
- Fixes #339
- Prevent the Task Master CLI from printing the help screen more than once when using