Minor Changes
-
#1398
e59c16cThanks @Crunchyman-ralph! - Claude Code provider now respects your global, project, and local Claude Code configuration files.When using the Claude Code AI provider, Task Master now automatically loads your Claude Code settings from:
- Global config (
~/.claude/directory) - Your personal preferences across all projects - Project config (
.claude/directory) - Project-specific settings like CLAUDE.md instructions - Local config - Workspace-specific overrides
This means your CLAUDE.md files, custom instructions, and Claude Code settings will now be properly applied when Task Master uses Claude Code as an AI provider. Previously, these settings were being ignored.
What's improved:
- ✅ CLAUDE.md files are now automatically loaded and applied (global and local)
- ✅ Your custom Claude Code settings are respected
- ✅ Project-specific instructions work as expected
- ✅ No manual configuration needed - works out of the box
Issues:
- Global config (
Patch Changes
-
#1400
c62cf84Thanks @Crunchyman-ralph! - Fix subtasks not showing parent task when displaying in cli (eg. tm show 10) -
#1393
da8ed6aThanks @bjcoombs! - Fix completion percentage and dependency resolution to treat cancelled tasks as complete. Cancelled tasks now correctly count toward project completion (e.g., 14 done + 1 cancelled = 100%, not 93%) and satisfy dependencies for dependent tasks, preventing permanent blocks. -
#1407
0003b6fThanks @Crunchyman-ralph! - Fix complexity analysis prompt to ensure consistent JSON output format -
#1351
37aee78Thanks @bjcoombs! - fix: prioritize .taskmaster in parent directories over other project markersWhen running task-master commands from subdirectories containing other project markers (like .git, go.mod, package.json), findProjectRoot() now correctly finds and uses .taskmaster directories in parent folders instead of stopping at the first generic project marker found.
This enables multi-repo monorepo setups where a single .taskmaster at the root tracks work across multiple sub-repositories.
-
#1406
9079d04Thanks @Crunchyman-ralph! - Fix MCP server compatibility with Cursor IDE's latest update by upgrading to fastmcp v3.20.1 with Zod v4 support- This resolves connection failures where the MCP server was unable to establish proper capability negotiation.
- Issue typically included wording like:
Server does not support completions
-
#1382
ac4328aThanks @JJVvV! - Added opt-in proxy support for all AI providers - respects http_proxy/https_proxy environment variables when enabled.When using Task Master in corporate or restricted network environments that require HTTP/HTTPS proxies, API calls to AI providers (OpenAI, Anthropic, Google, AWS Bedrock, etc.) would previously fail with ECONNRESET errors. This update adds seamless proxy support that can be enabled via environment variable or configuration file.
How to enable:
Proxy support is opt-in. Enable it using either method:
Method 1: Environment Variable
export TASKMASTER_ENABLE_PROXY=true export http_proxy=http://your-proxy:port export https_proxy=http://your-proxy:port export no_proxy=localhost,127.0.0.1 # Optional: bypass proxy for specific hosts # Then use Task Master normally task-master add-task "Create a new feature"
Method 2: Configuration File
Add to
.taskmaster/config.json:{ "global": { "enableProxy": true } }Then set your proxy environment variables:
export http_proxy=http://your-proxy:port export https_proxy=http://your-proxy:port
Technical details:
- Uses undici's
EnvHttpProxyAgentfor automatic proxy detection - Centralized implementation in
BaseAIProviderfor consistency across all providers - Supports all AI providers: OpenAI, Anthropic, Perplexity, Azure OpenAI, Google AI, Google Vertex AI, AWS Bedrock, and OpenAI-compatible providers
- Opt-in design ensures users without proxy requirements are not affected
- Priority:
TASKMASTER_ENABLE_PROXYenvironment variable >config.jsonsetting
- Uses undici's
-
#1408
10ec025Thanks @Crunchyman-ralph! - Add --json back totask-master listandtask-master showfor when using the commands with ai agents (less context)