Merged
Conversation
Contributor
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the Comment |
1bbe835 to
8ded038
Compare
sfc-gh-dflippo
pushed a commit
to sfc-gh-dflippo/task-master-ai
that referenced
this pull request
Dec 4, 2025
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
task-master-ai@0.30.0
Minor Changes
#1181
a69d8c9Thanks @karol-f! - Add configurable MCP tool loading to optimize LLM context usageYou can now control which Task Master MCP tools are loaded by setting the
TASK_MASTER_TOOLSenvironment variable in your MCP configuration. This helps reduce context usage for LLMs by only loading the tools you need.Configuration Options:
all(default): Load all 36 toolscoreorlean: Load only 7 essential tools for daily developmentget_tasks,next_task,get_task,set_task_status,update_subtask,parse_prd,expand_taskstandard: Load 15 commonly used tools (all core tools plus 8 more)initialize_project,analyze_project_complexity,expand_all,add_subtask,remove_task,generate,add_task,complexity_reportget_tasks,next_task,set_task_status)Example .mcp.json configuration:
{ "mcpServers": { "task-master-ai": { "command": "npx", "args": ["-y", "task-master-ai"], "env": { "TASK_MASTER_TOOLS": "standard", "ANTHROPIC_API_KEY": "your_key_here" } } } }For complete details on all available tools, configuration examples, and usage guidelines, see the MCP Tools documentation.
#1312
d7fca18Thanks @Crunchyman-ralph! - Improve next command to work with remote#1317
548beb4Thanks @Crunchyman-ralph! - Add 4.5 haiku and sonnet to supported models for claude-code and anthropic ai providers#1309
ccb87a5Thanks @Crunchyman-ralph! - Add autonomous TDD workflow automation system with newtm autopilotcommands and MCP tools for AI-driven test-driven development.New CLI Commands:
tm autopilot start <taskId>- Initialize TDD workflowtm autopilot next- Get next action in workflowtm autopilot status- Check workflow progresstm autopilot complete- Advance phase with test resultstm autopilot commit- Save progress with metadatatm autopilot resume- Continue from checkpointtm autopilot abort- Cancel workflowNew MCP Tools:
Seven new autopilot tools for programmatic control:
autopilot_start,autopilot_next,autopilot_status,autopilot_complete_phase,autopilot_commit,autopilot_resume,autopilot_abortFeatures:
.taskmaster/config.jsonDocumentation:
This release enables AI agents to autonomously execute test-driven development workflows with full state management and recovery capabilities.
Patch Changes
#1314
6bc75c0Thanks @Crunchyman-ralph! - Improve auth token refresh flow#1302
3283506Thanks @bjcoombs! - Enable Task Master commands to traverse parent directories to find project root from nested pathsFixes Bug: Task Master doesn't traverse parent directories from subdirectories #1301
#1323
dc6652cThanks @Crunchyman-ralph! - Fix MCP server compatibility with Draft-07 clients (Augment IDE, gemini-cli, gemini code assist)Problem:
Solution:
zod/v3instead ofzodThis is a temporary workaround until FastMCP adds JSON Schema version configuration.
@tm/cli@null
@tm/cli
null
Patch Changes
#1305
a98d96eThanks @bjcoombs! - Fix warning message box width to match dashboard box width for consistent UI alignmentUpdated dependencies []:
null
Patch Changes
null
Patch Changes
null
Patch Changes
0.27.0
Patch Changes
0.27.0-rc.0
Minor Changes
137ef36Thanks @Crunchyman-ralph! - testing this stuff out to see how the release candidate works with monorepo1.1.0-rc.0
Minor Changes
cd90b4dThanks @Crunchyman-ralph! - testing this stuff out to see how the release candidate works with monorepo@tm/mcp@null
@tm/mcp
null
Patch Changes
docs@0.0.7
@tm/ai-sdk-provider-grok-cli@null
@tm/ai-sdk-provider-grok-cli
null
null
null
@tm/build-config@null
@tm/build-config
null
null
null
null
1.0.1
@tm/claude-code-plugin@0.0.3
@tm/core@null
Changelog
null
null
null
null
0.26.1
All notable changes to the @task-master/tm-core package will be documented in this file.
The format is based on Keep a Changelog,
and this project adheres to Semantic Versioning.
[Unreleased]
Added
Development Infrastructure
Package Structure
src/types/- TypeScript type definitions (placeholder)src/providers/- AI provider implementations (placeholder)src/storage/- Storage layer abstractions (placeholder)src/parser/- Task parsing utilities (placeholder)src/utils/- Common utility functions (placeholder)src/errors/- Custom error classes (placeholder)tests/- Test directories and setup[1.0.0] - TBD
Planned Features
Release Notes
Version 1.0.0 (Coming Soon)
This will be the first stable release of tm-core with complete implementations of all modules. Currently, all modules contain placeholder implementations to establish the package structure and enable development of dependent packages.
Development Status