#
tokens: 102488/50000 1/975 files (page 69/69)
lines: on (toggle) GitHub
raw markdown copy reset
This is page 69 of 69. Use http://codebase.md/eyaltoledano/claude-task-master?lines=true&page={x} to view the full context.

# Directory Structure

```
├── .changeset
│   ├── config.json
│   └── README.md
├── .claude
│   ├── commands
│   │   └── dedupe.md
│   └── TM_COMMANDS_GUIDE.md
├── .claude-plugin
│   └── marketplace.json
├── .coderabbit.yaml
├── .cursor
│   ├── mcp.json
│   └── rules
│       ├── ai_providers.mdc
│       ├── ai_services.mdc
│       ├── architecture.mdc
│       ├── changeset.mdc
│       ├── commands.mdc
│       ├── context_gathering.mdc
│       ├── cursor_rules.mdc
│       ├── dependencies.mdc
│       ├── dev_workflow.mdc
│       ├── git_workflow.mdc
│       ├── glossary.mdc
│       ├── mcp.mdc
│       ├── new_features.mdc
│       ├── self_improve.mdc
│       ├── tags.mdc
│       ├── taskmaster.mdc
│       ├── tasks.mdc
│       ├── telemetry.mdc
│       ├── test_workflow.mdc
│       ├── tests.mdc
│       ├── ui.mdc
│       └── utilities.mdc
├── .cursorignore
├── .env.example
├── .github
│   ├── ISSUE_TEMPLATE
│   │   ├── bug_report.md
│   │   ├── enhancements---feature-requests.md
│   │   └── feedback.md
│   ├── PULL_REQUEST_TEMPLATE
│   │   ├── bugfix.md
│   │   ├── config.yml
│   │   ├── feature.md
│   │   └── integration.md
│   ├── PULL_REQUEST_TEMPLATE.md
│   ├── scripts
│   │   ├── auto-close-duplicates.mjs
│   │   ├── backfill-duplicate-comments.mjs
│   │   ├── check-pre-release-mode.mjs
│   │   ├── parse-metrics.mjs
│   │   ├── release.mjs
│   │   ├── tag-extension.mjs
│   │   ├── utils.mjs
│   │   └── validate-changesets.mjs
│   └── workflows
│       ├── auto-close-duplicates.yml
│       ├── backfill-duplicate-comments.yml
│       ├── ci.yml
│       ├── claude-dedupe-issues.yml
│       ├── claude-docs-trigger.yml
│       ├── claude-docs-updater.yml
│       ├── claude-issue-triage.yml
│       ├── claude.yml
│       ├── extension-ci.yml
│       ├── extension-release.yml
│       ├── log-issue-events.yml
│       ├── pre-release.yml
│       ├── release-check.yml
│       ├── release.yml
│       ├── update-models-md.yml
│       └── weekly-metrics-discord.yml
├── .gitignore
├── .kiro
│   ├── hooks
│   │   ├── tm-code-change-task-tracker.kiro.hook
│   │   ├── tm-complexity-analyzer.kiro.hook
│   │   ├── tm-daily-standup-assistant.kiro.hook
│   │   ├── tm-git-commit-task-linker.kiro.hook
│   │   ├── tm-pr-readiness-checker.kiro.hook
│   │   ├── tm-task-dependency-auto-progression.kiro.hook
│   │   └── tm-test-success-task-completer.kiro.hook
│   ├── settings
│   │   └── mcp.json
│   └── steering
│       ├── dev_workflow.md
│       ├── kiro_rules.md
│       ├── self_improve.md
│       ├── taskmaster_hooks_workflow.md
│       └── taskmaster.md
├── .manypkg.json
├── .mcp.json
├── .npmignore
├── .nvmrc
├── .taskmaster
│   ├── CLAUDE.md
│   ├── config.json
│   ├── docs
│   │   ├── autonomous-tdd-git-workflow.md
│   │   ├── MIGRATION-ROADMAP.md
│   │   ├── prd-tm-start.txt
│   │   ├── prd.txt
│   │   ├── README.md
│   │   ├── research
│   │   │   ├── 2025-06-14_how-can-i-improve-the-scope-up-and-scope-down-comm.md
│   │   │   ├── 2025-06-14_should-i-be-using-any-specific-libraries-for-this.md
│   │   │   ├── 2025-06-14_test-save-functionality.md
│   │   │   ├── 2025-06-14_test-the-fix-for-duplicate-saves-final-test.md
│   │   │   └── 2025-08-01_do-we-need-to-add-new-commands-or-can-we-just-weap.md
│   │   ├── task-template-importing-prd.txt
│   │   ├── tdd-workflow-phase-0-spike.md
│   │   ├── tdd-workflow-phase-1-core-rails.md
│   │   ├── tdd-workflow-phase-1-orchestrator.md
│   │   ├── tdd-workflow-phase-2-pr-resumability.md
│   │   ├── tdd-workflow-phase-3-extensibility-guardrails.md
│   │   ├── test-prd.txt
│   │   └── tm-core-phase-1.txt
│   ├── reports
│   │   ├── task-complexity-report_autonomous-tdd-git-workflow.json
│   │   ├── task-complexity-report_cc-kiro-hooks.json
│   │   ├── task-complexity-report_tdd-phase-1-core-rails.json
│   │   ├── task-complexity-report_tdd-workflow-phase-0.json
│   │   ├── task-complexity-report_test-prd-tag.json
│   │   ├── task-complexity-report_tm-core-phase-1.json
│   │   ├── task-complexity-report.json
│   │   └── tm-core-complexity.json
│   ├── state.json
│   ├── tasks
│   │   ├── task_001_tm-start.txt
│   │   ├── task_002_tm-start.txt
│   │   ├── task_003_tm-start.txt
│   │   ├── task_004_tm-start.txt
│   │   ├── task_007_tm-start.txt
│   │   └── tasks.json
│   └── templates
│       ├── example_prd_rpg.md
│       └── example_prd.md
├── .vscode
│   ├── extensions.json
│   └── settings.json
├── apps
│   ├── cli
│   │   ├── CHANGELOG.md
│   │   ├── package.json
│   │   ├── src
│   │   │   ├── command-registry.ts
│   │   │   ├── commands
│   │   │   │   ├── auth.command.ts
│   │   │   │   ├── autopilot
│   │   │   │   │   ├── abort.command.ts
│   │   │   │   │   ├── commit.command.ts
│   │   │   │   │   ├── complete.command.ts
│   │   │   │   │   ├── index.ts
│   │   │   │   │   ├── next.command.ts
│   │   │   │   │   ├── resume.command.ts
│   │   │   │   │   ├── shared.ts
│   │   │   │   │   ├── start.command.ts
│   │   │   │   │   └── status.command.ts
│   │   │   │   ├── briefs.command.ts
│   │   │   │   ├── context.command.ts
│   │   │   │   ├── export.command.ts
│   │   │   │   ├── list.command.ts
│   │   │   │   ├── models
│   │   │   │   │   ├── custom-providers.ts
│   │   │   │   │   ├── fetchers.ts
│   │   │   │   │   ├── index.ts
│   │   │   │   │   ├── prompts.ts
│   │   │   │   │   ├── setup.ts
│   │   │   │   │   └── types.ts
│   │   │   │   ├── next.command.ts
│   │   │   │   ├── set-status.command.ts
│   │   │   │   ├── show.command.ts
│   │   │   │   ├── start.command.ts
│   │   │   │   └── tags.command.ts
│   │   │   ├── index.ts
│   │   │   ├── lib
│   │   │   │   └── model-management.ts
│   │   │   ├── types
│   │   │   │   └── tag-management.d.ts
│   │   │   ├── ui
│   │   │   │   ├── components
│   │   │   │   │   ├── cardBox.component.ts
│   │   │   │   │   ├── dashboard.component.ts
│   │   │   │   │   ├── header.component.ts
│   │   │   │   │   ├── index.ts
│   │   │   │   │   ├── next-task.component.ts
│   │   │   │   │   ├── suggested-steps.component.ts
│   │   │   │   │   └── task-detail.component.ts
│   │   │   │   ├── display
│   │   │   │   │   ├── messages.ts
│   │   │   │   │   └── tables.ts
│   │   │   │   ├── formatters
│   │   │   │   │   ├── complexity-formatters.ts
│   │   │   │   │   ├── dependency-formatters.ts
│   │   │   │   │   ├── priority-formatters.ts
│   │   │   │   │   ├── status-formatters.spec.ts
│   │   │   │   │   └── status-formatters.ts
│   │   │   │   ├── index.ts
│   │   │   │   └── layout
│   │   │   │       ├── helpers.spec.ts
│   │   │   │       └── helpers.ts
│   │   │   └── utils
│   │   │       ├── auth-helpers.ts
│   │   │       ├── auto-update.ts
│   │   │       ├── brief-selection.ts
│   │   │       ├── display-helpers.ts
│   │   │       ├── error-handler.ts
│   │   │       ├── index.ts
│   │   │       ├── project-root.ts
│   │   │       ├── task-status.ts
│   │   │       ├── ui.spec.ts
│   │   │       └── ui.ts
│   │   ├── tests
│   │   │   ├── integration
│   │   │   │   └── commands
│   │   │   │       └── autopilot
│   │   │   │           └── workflow.test.ts
│   │   │   └── unit
│   │   │       ├── commands
│   │   │       │   ├── autopilot
│   │   │       │   │   └── shared.test.ts
│   │   │       │   ├── list.command.spec.ts
│   │   │       │   └── show.command.spec.ts
│   │   │       └── ui
│   │   │           └── dashboard.component.spec.ts
│   │   ├── tsconfig.json
│   │   └── vitest.config.ts
│   ├── docs
│   │   ├── archive
│   │   │   ├── ai-client-utils-example.mdx
│   │   │   ├── ai-development-workflow.mdx
│   │   │   ├── command-reference.mdx
│   │   │   ├── configuration.mdx
│   │   │   ├── cursor-setup.mdx
│   │   │   ├── examples.mdx
│   │   │   └── Installation.mdx
│   │   ├── best-practices
│   │   │   ├── advanced-tasks.mdx
│   │   │   ├── configuration-advanced.mdx
│   │   │   └── index.mdx
│   │   ├── capabilities
│   │   │   ├── cli-root-commands.mdx
│   │   │   ├── index.mdx
│   │   │   ├── mcp.mdx
│   │   │   ├── rpg-method.mdx
│   │   │   └── task-structure.mdx
│   │   ├── CHANGELOG.md
│   │   ├── command-reference.mdx
│   │   ├── configuration.mdx
│   │   ├── docs.json
│   │   ├── favicon.svg
│   │   ├── getting-started
│   │   │   ├── api-keys.mdx
│   │   │   ├── contribute.mdx
│   │   │   ├── faq.mdx
│   │   │   └── quick-start
│   │   │       ├── configuration-quick.mdx
│   │   │       ├── execute-quick.mdx
│   │   │       ├── installation.mdx
│   │   │       ├── moving-forward.mdx
│   │   │       ├── prd-quick.mdx
│   │   │       ├── quick-start.mdx
│   │   │       ├── requirements.mdx
│   │   │       ├── rules-quick.mdx
│   │   │       └── tasks-quick.mdx
│   │   ├── introduction.mdx
│   │   ├── licensing.md
│   │   ├── logo
│   │   │   ├── dark.svg
│   │   │   ├── light.svg
│   │   │   └── task-master-logo.png
│   │   ├── package.json
│   │   ├── README.md
│   │   ├── style.css
│   │   ├── tdd-workflow
│   │   │   ├── ai-agent-integration.mdx
│   │   │   └── quickstart.mdx
│   │   ├── vercel.json
│   │   └── whats-new.mdx
│   ├── extension
│   │   ├── .vscodeignore
│   │   ├── assets
│   │   │   ├── banner.png
│   │   │   ├── icon-dark.svg
│   │   │   ├── icon-light.svg
│   │   │   ├── icon.png
│   │   │   ├── screenshots
│   │   │   │   ├── kanban-board.png
│   │   │   │   └── task-details.png
│   │   │   └── sidebar-icon.svg
│   │   ├── CHANGELOG.md
│   │   ├── components.json
│   │   ├── docs
│   │   │   ├── extension-CI-setup.md
│   │   │   └── extension-development-guide.md
│   │   ├── esbuild.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── package.mjs
│   │   ├── package.publish.json
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── components
│   │   │   │   ├── ConfigView.tsx
│   │   │   │   ├── constants.ts
│   │   │   │   ├── TaskDetails
│   │   │   │   │   ├── AIActionsSection.tsx
│   │   │   │   │   ├── DetailsSection.tsx
│   │   │   │   │   ├── PriorityBadge.tsx
│   │   │   │   │   ├── SubtasksSection.tsx
│   │   │   │   │   ├── TaskMetadataSidebar.tsx
│   │   │   │   │   └── useTaskDetails.ts
│   │   │   │   ├── TaskDetailsView.tsx
│   │   │   │   ├── TaskMasterLogo.tsx
│   │   │   │   └── ui
│   │   │   │       ├── badge.tsx
│   │   │   │       ├── breadcrumb.tsx
│   │   │   │       ├── button.tsx
│   │   │   │       ├── card.tsx
│   │   │   │       ├── collapsible.tsx
│   │   │   │       ├── CollapsibleSection.tsx
│   │   │   │       ├── dropdown-menu.tsx
│   │   │   │       ├── label.tsx
│   │   │   │       ├── scroll-area.tsx
│   │   │   │       ├── separator.tsx
│   │   │   │       ├── shadcn-io
│   │   │   │       │   └── kanban
│   │   │   │       │       └── index.tsx
│   │   │   │       └── textarea.tsx
│   │   │   ├── extension.ts
│   │   │   ├── index.ts
│   │   │   ├── lib
│   │   │   │   └── utils.ts
│   │   │   ├── services
│   │   │   │   ├── config-service.ts
│   │   │   │   ├── error-handler.ts
│   │   │   │   ├── notification-preferences.ts
│   │   │   │   ├── polling-service.ts
│   │   │   │   ├── polling-strategies.ts
│   │   │   │   ├── sidebar-webview-manager.ts
│   │   │   │   ├── task-repository.ts
│   │   │   │   ├── terminal-manager.ts
│   │   │   │   └── webview-manager.ts
│   │   │   ├── test
│   │   │   │   └── extension.test.ts
│   │   │   ├── utils
│   │   │   │   ├── configManager.ts
│   │   │   │   ├── connectionManager.ts
│   │   │   │   ├── errorHandler.ts
│   │   │   │   ├── event-emitter.ts
│   │   │   │   ├── logger.ts
│   │   │   │   ├── mcpClient.ts
│   │   │   │   ├── notificationPreferences.ts
│   │   │   │   └── task-master-api
│   │   │   │       ├── cache
│   │   │   │       │   └── cache-manager.ts
│   │   │   │       ├── index.ts
│   │   │   │       ├── mcp-client.ts
│   │   │   │       ├── transformers
│   │   │   │       │   └── task-transformer.ts
│   │   │   │       └── types
│   │   │   │           └── index.ts
│   │   │   └── webview
│   │   │       ├── App.tsx
│   │   │       ├── components
│   │   │       │   ├── AppContent.tsx
│   │   │       │   ├── EmptyState.tsx
│   │   │       │   ├── ErrorBoundary.tsx
│   │   │       │   ├── PollingStatus.tsx
│   │   │       │   ├── PriorityBadge.tsx
│   │   │       │   ├── SidebarView.tsx
│   │   │       │   ├── TagDropdown.tsx
│   │   │       │   ├── TaskCard.tsx
│   │   │       │   ├── TaskEditModal.tsx
│   │   │       │   ├── TaskMasterKanban.tsx
│   │   │       │   ├── ToastContainer.tsx
│   │   │       │   └── ToastNotification.tsx
│   │   │       ├── constants
│   │   │       │   └── index.ts
│   │   │       ├── contexts
│   │   │       │   └── VSCodeContext.tsx
│   │   │       ├── hooks
│   │   │       │   ├── useTaskQueries.ts
│   │   │       │   ├── useVSCodeMessages.ts
│   │   │       │   └── useWebviewHeight.ts
│   │   │       ├── index.css
│   │   │       ├── index.tsx
│   │   │       ├── providers
│   │   │       │   └── QueryProvider.tsx
│   │   │       ├── reducers
│   │   │       │   └── appReducer.ts
│   │   │       ├── sidebar.tsx
│   │   │       ├── types
│   │   │       │   └── index.ts
│   │   │       └── utils
│   │   │           ├── logger.ts
│   │   │           └── toast.ts
│   │   └── tsconfig.json
│   └── mcp
│       ├── CHANGELOG.md
│       ├── package.json
│       ├── src
│       │   ├── index.ts
│       │   ├── shared
│       │   │   ├── types.ts
│       │   │   └── utils.ts
│       │   └── tools
│       │       ├── autopilot
│       │       │   ├── abort.tool.ts
│       │       │   ├── commit.tool.ts
│       │       │   ├── complete.tool.ts
│       │       │   ├── finalize.tool.ts
│       │       │   ├── index.ts
│       │       │   ├── next.tool.ts
│       │       │   ├── resume.tool.ts
│       │       │   ├── start.tool.ts
│       │       │   └── status.tool.ts
│       │       ├── README-ZOD-V3.md
│       │       └── tasks
│       │           ├── get-task.tool.ts
│       │           ├── get-tasks.tool.ts
│       │           └── index.ts
│       ├── tsconfig.json
│       └── vitest.config.ts
├── assets
│   ├── .windsurfrules
│   ├── AGENTS.md
│   ├── claude
│   │   └── TM_COMMANDS_GUIDE.md
│   ├── config.json
│   ├── env.example
│   ├── example_prd_rpg.txt
│   ├── example_prd.txt
│   ├── GEMINI.md
│   ├── gitignore
│   ├── kiro-hooks
│   │   ├── tm-code-change-task-tracker.kiro.hook
│   │   ├── tm-complexity-analyzer.kiro.hook
│   │   ├── tm-daily-standup-assistant.kiro.hook
│   │   ├── tm-git-commit-task-linker.kiro.hook
│   │   ├── tm-pr-readiness-checker.kiro.hook
│   │   ├── tm-task-dependency-auto-progression.kiro.hook
│   │   └── tm-test-success-task-completer.kiro.hook
│   ├── roocode
│   │   ├── .roo
│   │   │   ├── rules-architect
│   │   │   │   └── architect-rules
│   │   │   ├── rules-ask
│   │   │   │   └── ask-rules
│   │   │   ├── rules-code
│   │   │   │   └── code-rules
│   │   │   ├── rules-debug
│   │   │   │   └── debug-rules
│   │   │   ├── rules-orchestrator
│   │   │   │   └── orchestrator-rules
│   │   │   └── rules-test
│   │   │       └── test-rules
│   │   └── .roomodes
│   ├── rules
│   │   ├── cursor_rules.mdc
│   │   ├── dev_workflow.mdc
│   │   ├── self_improve.mdc
│   │   ├── taskmaster_hooks_workflow.mdc
│   │   └── taskmaster.mdc
│   └── scripts_README.md
├── bin
│   └── task-master.js
├── biome.json
├── CHANGELOG.md
├── CLAUDE_CODE_PLUGIN.md
├── CLAUDE.md
├── context
│   ├── chats
│   │   ├── add-task-dependencies-1.md
│   │   └── max-min-tokens.txt.md
│   ├── fastmcp-core.txt
│   ├── fastmcp-docs.txt
│   ├── MCP_INTEGRATION.md
│   ├── mcp-js-sdk-docs.txt
│   ├── mcp-protocol-repo.txt
│   ├── mcp-protocol-schema-03262025.json
│   └── mcp-protocol-spec.txt
├── CONTRIBUTING.md
├── docs
│   ├── claude-code-integration.md
│   ├── CLI-COMMANDER-PATTERN.md
│   ├── command-reference.md
│   ├── configuration.md
│   ├── contributor-docs
│   │   ├── testing-roo-integration.md
│   │   └── worktree-setup.md
│   ├── cross-tag-task-movement.md
│   ├── examples
│   │   ├── claude-code-usage.md
│   │   └── codex-cli-usage.md
│   ├── examples.md
│   ├── licensing.md
│   ├── mcp-provider-guide.md
│   ├── mcp-provider.md
│   ├── migration-guide.md
│   ├── models.md
│   ├── providers
│   │   ├── codex-cli.md
│   │   └── gemini-cli.md
│   ├── README.md
│   ├── scripts
│   │   └── models-json-to-markdown.js
│   ├── task-structure.md
│   └── tutorial.md
├── images
│   ├── hamster-hiring.png
│   └── logo.png
├── index.js
├── jest.config.js
├── jest.resolver.cjs
├── LICENSE
├── llms-install.md
├── mcp-server
│   ├── server.js
│   └── src
│       ├── core
│       │   ├── __tests__
│       │   │   └── context-manager.test.js
│       │   ├── context-manager.js
│       │   ├── direct-functions
│       │   │   ├── add-dependency.js
│       │   │   ├── add-subtask.js
│       │   │   ├── add-tag.js
│       │   │   ├── add-task.js
│       │   │   ├── analyze-task-complexity.js
│       │   │   ├── cache-stats.js
│       │   │   ├── clear-subtasks.js
│       │   │   ├── complexity-report.js
│       │   │   ├── copy-tag.js
│       │   │   ├── create-tag-from-branch.js
│       │   │   ├── delete-tag.js
│       │   │   ├── expand-all-tasks.js
│       │   │   ├── expand-task.js
│       │   │   ├── fix-dependencies.js
│       │   │   ├── generate-task-files.js
│       │   │   ├── initialize-project.js
│       │   │   ├── list-tags.js
│       │   │   ├── models.js
│       │   │   ├── move-task-cross-tag.js
│       │   │   ├── move-task.js
│       │   │   ├── next-task.js
│       │   │   ├── parse-prd.js
│       │   │   ├── remove-dependency.js
│       │   │   ├── remove-subtask.js
│       │   │   ├── remove-task.js
│       │   │   ├── rename-tag.js
│       │   │   ├── research.js
│       │   │   ├── response-language.js
│       │   │   ├── rules.js
│       │   │   ├── scope-down.js
│       │   │   ├── scope-up.js
│       │   │   ├── set-task-status.js
│       │   │   ├── update-subtask-by-id.js
│       │   │   ├── update-task-by-id.js
│       │   │   ├── update-tasks.js
│       │   │   ├── use-tag.js
│       │   │   └── validate-dependencies.js
│       │   ├── task-master-core.js
│       │   └── utils
│       │       ├── env-utils.js
│       │       └── path-utils.js
│       ├── custom-sdk
│       │   ├── errors.js
│       │   ├── index.js
│       │   ├── json-extractor.js
│       │   ├── language-model.js
│       │   ├── message-converter.js
│       │   └── schema-converter.js
│       ├── index.js
│       ├── logger.js
│       ├── providers
│       │   └── mcp-provider.js
│       └── tools
│           ├── add-dependency.js
│           ├── add-subtask.js
│           ├── add-tag.js
│           ├── add-task.js
│           ├── analyze.js
│           ├── clear-subtasks.js
│           ├── complexity-report.js
│           ├── copy-tag.js
│           ├── delete-tag.js
│           ├── expand-all.js
│           ├── expand-task.js
│           ├── fix-dependencies.js
│           ├── generate.js
│           ├── get-operation-status.js
│           ├── index.js
│           ├── initialize-project.js
│           ├── list-tags.js
│           ├── models.js
│           ├── move-task.js
│           ├── next-task.js
│           ├── parse-prd.js
│           ├── README-ZOD-V3.md
│           ├── remove-dependency.js
│           ├── remove-subtask.js
│           ├── remove-task.js
│           ├── rename-tag.js
│           ├── research.js
│           ├── response-language.js
│           ├── rules.js
│           ├── scope-down.js
│           ├── scope-up.js
│           ├── set-task-status.js
│           ├── tool-registry.js
│           ├── update-subtask.js
│           ├── update-task.js
│           ├── update.js
│           ├── use-tag.js
│           ├── utils.js
│           └── validate-dependencies.js
├── mcp-test.js
├── output.json
├── package-lock.json
├── package.json
├── packages
│   ├── ai-sdk-provider-grok-cli
│   │   ├── CHANGELOG.md
│   │   ├── package.json
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── errors.test.ts
│   │   │   ├── errors.ts
│   │   │   ├── grok-cli-language-model.ts
│   │   │   ├── grok-cli-provider.test.ts
│   │   │   ├── grok-cli-provider.ts
│   │   │   ├── index.ts
│   │   │   ├── json-extractor.test.ts
│   │   │   ├── json-extractor.ts
│   │   │   ├── message-converter.test.ts
│   │   │   ├── message-converter.ts
│   │   │   └── types.ts
│   │   └── tsconfig.json
│   ├── build-config
│   │   ├── CHANGELOG.md
│   │   ├── package.json
│   │   ├── src
│   │   │   └── tsdown.base.ts
│   │   └── tsconfig.json
│   ├── claude-code-plugin
│   │   ├── .claude-plugin
│   │   │   └── plugin.json
│   │   ├── .gitignore
│   │   ├── agents
│   │   │   ├── task-checker.md
│   │   │   ├── task-executor.md
│   │   │   └── task-orchestrator.md
│   │   ├── CHANGELOG.md
│   │   ├── commands
│   │   │   ├── add-dependency.md
│   │   │   ├── add-subtask.md
│   │   │   ├── add-task.md
│   │   │   ├── analyze-complexity.md
│   │   │   ├── analyze-project.md
│   │   │   ├── auto-implement-tasks.md
│   │   │   ├── command-pipeline.md
│   │   │   ├── complexity-report.md
│   │   │   ├── convert-task-to-subtask.md
│   │   │   ├── expand-all-tasks.md
│   │   │   ├── expand-task.md
│   │   │   ├── fix-dependencies.md
│   │   │   ├── generate-tasks.md
│   │   │   ├── help.md
│   │   │   ├── init-project-quick.md
│   │   │   ├── init-project.md
│   │   │   ├── install-taskmaster.md
│   │   │   ├── learn.md
│   │   │   ├── list-tasks-by-status.md
│   │   │   ├── list-tasks-with-subtasks.md
│   │   │   ├── list-tasks.md
│   │   │   ├── next-task.md
│   │   │   ├── parse-prd-with-research.md
│   │   │   ├── parse-prd.md
│   │   │   ├── project-status.md
│   │   │   ├── quick-install-taskmaster.md
│   │   │   ├── remove-all-subtasks.md
│   │   │   ├── remove-dependency.md
│   │   │   ├── remove-subtask.md
│   │   │   ├── remove-subtasks.md
│   │   │   ├── remove-task.md
│   │   │   ├── setup-models.md
│   │   │   ├── show-task.md
│   │   │   ├── smart-workflow.md
│   │   │   ├── sync-readme.md
│   │   │   ├── tm-main.md
│   │   │   ├── to-cancelled.md
│   │   │   ├── to-deferred.md
│   │   │   ├── to-done.md
│   │   │   ├── to-in-progress.md
│   │   │   ├── to-pending.md
│   │   │   ├── to-review.md
│   │   │   ├── update-single-task.md
│   │   │   ├── update-task.md
│   │   │   ├── update-tasks-from-id.md
│   │   │   ├── validate-dependencies.md
│   │   │   └── view-models.md
│   │   ├── mcp.json
│   │   └── package.json
│   ├── tm-bridge
│   │   ├── CHANGELOG.md
│   │   ├── package.json
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── add-tag-bridge.ts
│   │   │   ├── bridge-types.ts
│   │   │   ├── bridge-utils.ts
│   │   │   ├── expand-bridge.ts
│   │   │   ├── index.ts
│   │   │   ├── tags-bridge.ts
│   │   │   ├── update-bridge.ts
│   │   │   └── use-tag-bridge.ts
│   │   └── tsconfig.json
│   └── tm-core
│       ├── .gitignore
│       ├── CHANGELOG.md
│       ├── docs
│       │   └── listTasks-architecture.md
│       ├── package.json
│       ├── POC-STATUS.md
│       ├── README.md
│       ├── src
│       │   ├── common
│       │   │   ├── constants
│       │   │   │   ├── index.ts
│       │   │   │   ├── paths.ts
│       │   │   │   └── providers.ts
│       │   │   ├── errors
│       │   │   │   ├── index.ts
│       │   │   │   └── task-master-error.ts
│       │   │   ├── interfaces
│       │   │   │   ├── configuration.interface.ts
│       │   │   │   ├── index.ts
│       │   │   │   └── storage.interface.ts
│       │   │   ├── logger
│       │   │   │   ├── factory.ts
│       │   │   │   ├── index.ts
│       │   │   │   ├── logger.spec.ts
│       │   │   │   └── logger.ts
│       │   │   ├── mappers
│       │   │   │   ├── TaskMapper.test.ts
│       │   │   │   └── TaskMapper.ts
│       │   │   ├── types
│       │   │   │   ├── database.types.ts
│       │   │   │   ├── index.ts
│       │   │   │   ├── legacy.ts
│       │   │   │   └── repository-types.ts
│       │   │   └── utils
│       │   │       ├── git-utils.ts
│       │   │       ├── id-generator.ts
│       │   │       ├── index.ts
│       │   │       ├── path-helpers.ts
│       │   │       ├── path-normalizer.spec.ts
│       │   │       ├── path-normalizer.ts
│       │   │       ├── project-root-finder.spec.ts
│       │   │       ├── project-root-finder.ts
│       │   │       ├── run-id-generator.spec.ts
│       │   │       └── run-id-generator.ts
│       │   ├── index.ts
│       │   ├── modules
│       │   │   ├── ai
│       │   │   │   ├── index.ts
│       │   │   │   ├── interfaces
│       │   │   │   │   └── ai-provider.interface.ts
│       │   │   │   └── providers
│       │   │   │       ├── base-provider.ts
│       │   │   │       └── index.ts
│       │   │   ├── auth
│       │   │   │   ├── auth-domain.spec.ts
│       │   │   │   ├── auth-domain.ts
│       │   │   │   ├── config.ts
│       │   │   │   ├── index.ts
│       │   │   │   ├── managers
│       │   │   │   │   ├── auth-manager.spec.ts
│       │   │   │   │   └── auth-manager.ts
│       │   │   │   ├── services
│       │   │   │   │   ├── context-store.ts
│       │   │   │   │   ├── oauth-service.ts
│       │   │   │   │   ├── organization.service.ts
│       │   │   │   │   ├── supabase-session-storage.spec.ts
│       │   │   │   │   └── supabase-session-storage.ts
│       │   │   │   └── types.ts
│       │   │   ├── briefs
│       │   │   │   ├── briefs-domain.ts
│       │   │   │   ├── index.ts
│       │   │   │   ├── services
│       │   │   │   │   └── brief-service.ts
│       │   │   │   ├── types.ts
│       │   │   │   └── utils
│       │   │   │       └── url-parser.ts
│       │   │   ├── commands
│       │   │   │   └── index.ts
│       │   │   ├── config
│       │   │   │   ├── config-domain.ts
│       │   │   │   ├── index.ts
│       │   │   │   ├── managers
│       │   │   │   │   ├── config-manager.spec.ts
│       │   │   │   │   └── config-manager.ts
│       │   │   │   └── services
│       │   │   │       ├── config-loader.service.spec.ts
│       │   │   │       ├── config-loader.service.ts
│       │   │   │       ├── config-merger.service.spec.ts
│       │   │   │       ├── config-merger.service.ts
│       │   │   │       ├── config-persistence.service.spec.ts
│       │   │   │       ├── config-persistence.service.ts
│       │   │   │       ├── environment-config-provider.service.spec.ts
│       │   │   │       ├── environment-config-provider.service.ts
│       │   │   │       ├── index.ts
│       │   │   │       ├── runtime-state-manager.service.spec.ts
│       │   │   │       └── runtime-state-manager.service.ts
│       │   │   ├── dependencies
│       │   │   │   └── index.ts
│       │   │   ├── execution
│       │   │   │   ├── executors
│       │   │   │   │   ├── base-executor.ts
│       │   │   │   │   ├── claude-executor.ts
│       │   │   │   │   └── executor-factory.ts
│       │   │   │   ├── index.ts
│       │   │   │   ├── services
│       │   │   │   │   └── executor-service.ts
│       │   │   │   └── types.ts
│       │   │   ├── git
│       │   │   │   ├── adapters
│       │   │   │   │   ├── git-adapter.test.ts
│       │   │   │   │   └── git-adapter.ts
│       │   │   │   ├── git-domain.ts
│       │   │   │   ├── index.ts
│       │   │   │   └── services
│       │   │   │       ├── branch-name-generator.spec.ts
│       │   │   │       ├── branch-name-generator.ts
│       │   │   │       ├── commit-message-generator.test.ts
│       │   │   │       ├── commit-message-generator.ts
│       │   │   │       ├── scope-detector.test.ts
│       │   │   │       ├── scope-detector.ts
│       │   │   │       ├── template-engine.test.ts
│       │   │   │       └── template-engine.ts
│       │   │   ├── integration
│       │   │   │   ├── clients
│       │   │   │   │   ├── index.ts
│       │   │   │   │   └── supabase-client.ts
│       │   │   │   ├── integration-domain.ts
│       │   │   │   └── services
│       │   │   │       ├── export.service.ts
│       │   │   │       ├── task-expansion.service.ts
│       │   │   │       └── task-retrieval.service.ts
│       │   │   ├── reports
│       │   │   │   ├── index.ts
│       │   │   │   ├── managers
│       │   │   │   │   └── complexity-report-manager.ts
│       │   │   │   └── types.ts
│       │   │   ├── storage
│       │   │   │   ├── adapters
│       │   │   │   │   ├── activity-logger.ts
│       │   │   │   │   ├── api-storage.ts
│       │   │   │   │   └── file-storage
│       │   │   │   │       ├── file-operations.ts
│       │   │   │   │       ├── file-storage.ts
│       │   │   │   │       ├── format-handler.ts
│       │   │   │   │       ├── index.ts
│       │   │   │   │       └── path-resolver.ts
│       │   │   │   ├── index.ts
│       │   │   │   ├── services
│       │   │   │   │   └── storage-factory.ts
│       │   │   │   └── utils
│       │   │   │       └── api-client.ts
│       │   │   ├── tasks
│       │   │   │   ├── entities
│       │   │   │   │   └── task.entity.ts
│       │   │   │   ├── parser
│       │   │   │   │   └── index.ts
│       │   │   │   ├── repositories
│       │   │   │   │   ├── supabase
│       │   │   │   │   │   ├── dependency-fetcher.ts
│       │   │   │   │   │   ├── index.ts
│       │   │   │   │   │   └── supabase-repository.ts
│       │   │   │   │   └── task-repository.interface.ts
│       │   │   │   ├── services
│       │   │   │   │   ├── preflight-checker.service.ts
│       │   │   │   │   ├── tag.service.ts
│       │   │   │   │   ├── task-execution-service.ts
│       │   │   │   │   ├── task-loader.service.ts
│       │   │   │   │   └── task-service.ts
│       │   │   │   └── tasks-domain.ts
│       │   │   ├── ui
│       │   │   │   └── index.ts
│       │   │   └── workflow
│       │   │       ├── managers
│       │   │       │   ├── workflow-state-manager.spec.ts
│       │   │       │   └── workflow-state-manager.ts
│       │   │       ├── orchestrators
│       │   │       │   ├── workflow-orchestrator.test.ts
│       │   │       │   └── workflow-orchestrator.ts
│       │   │       ├── services
│       │   │       │   ├── test-result-validator.test.ts
│       │   │       │   ├── test-result-validator.ts
│       │   │       │   ├── test-result-validator.types.ts
│       │   │       │   ├── workflow-activity-logger.ts
│       │   │       │   └── workflow.service.ts
│       │   │       ├── types.ts
│       │   │       └── workflow-domain.ts
│       │   ├── subpath-exports.test.ts
│       │   ├── tm-core.ts
│       │   └── utils
│       │       └── time.utils.ts
│       ├── tests
│       │   ├── auth
│       │   │   └── auth-refresh.test.ts
│       │   ├── integration
│       │   │   ├── auth-token-refresh.test.ts
│       │   │   ├── list-tasks.test.ts
│       │   │   └── storage
│       │   │       └── activity-logger.test.ts
│       │   ├── mocks
│       │   │   └── mock-provider.ts
│       │   ├── setup.ts
│       │   └── unit
│       │       ├── base-provider.test.ts
│       │       ├── executor.test.ts
│       │       └── smoke.test.ts
│       ├── tsconfig.json
│       └── vitest.config.ts
├── README-task-master.md
├── README.md
├── scripts
│   ├── create-worktree.sh
│   ├── dev.js
│   ├── init.js
│   ├── list-worktrees.sh
│   ├── modules
│   │   ├── ai-services-unified.js
│   │   ├── bridge-utils.js
│   │   ├── commands.js
│   │   ├── config-manager.js
│   │   ├── dependency-manager.js
│   │   ├── index.js
│   │   ├── prompt-manager.js
│   │   ├── supported-models.json
│   │   ├── sync-readme.js
│   │   ├── task-manager
│   │   │   ├── add-subtask.js
│   │   │   ├── add-task.js
│   │   │   ├── analyze-task-complexity.js
│   │   │   ├── clear-subtasks.js
│   │   │   ├── expand-all-tasks.js
│   │   │   ├── expand-task.js
│   │   │   ├── find-next-task.js
│   │   │   ├── generate-task-files.js
│   │   │   ├── is-task-dependent.js
│   │   │   ├── list-tasks.js
│   │   │   ├── migrate.js
│   │   │   ├── models.js
│   │   │   ├── move-task.js
│   │   │   ├── parse-prd
│   │   │   │   ├── index.js
│   │   │   │   ├── parse-prd-config.js
│   │   │   │   ├── parse-prd-helpers.js
│   │   │   │   ├── parse-prd-non-streaming.js
│   │   │   │   ├── parse-prd-streaming.js
│   │   │   │   └── parse-prd.js
│   │   │   ├── remove-subtask.js
│   │   │   ├── remove-task.js
│   │   │   ├── research.js
│   │   │   ├── response-language.js
│   │   │   ├── scope-adjustment.js
│   │   │   ├── set-task-status.js
│   │   │   ├── tag-management.js
│   │   │   ├── task-exists.js
│   │   │   ├── update-single-task-status.js
│   │   │   ├── update-subtask-by-id.js
│   │   │   ├── update-task-by-id.js
│   │   │   └── update-tasks.js
│   │   ├── task-manager.js
│   │   ├── ui.js
│   │   ├── update-config-tokens.js
│   │   ├── utils
│   │   │   ├── contextGatherer.js
│   │   │   ├── fuzzyTaskSearch.js
│   │   │   └── git-utils.js
│   │   └── utils.js
│   ├── task-complexity-report.json
│   ├── test-claude-errors.js
│   └── test-claude.js
├── sonar-project.properties
├── src
│   ├── ai-providers
│   │   ├── anthropic.js
│   │   ├── azure.js
│   │   ├── base-provider.js
│   │   ├── bedrock.js
│   │   ├── claude-code.js
│   │   ├── codex-cli.js
│   │   ├── gemini-cli.js
│   │   ├── google-vertex.js
│   │   ├── google.js
│   │   ├── grok-cli.js
│   │   ├── groq.js
│   │   ├── index.js
│   │   ├── lmstudio.js
│   │   ├── ollama.js
│   │   ├── openai-compatible.js
│   │   ├── openai.js
│   │   ├── openrouter.js
│   │   ├── perplexity.js
│   │   ├── xai.js
│   │   ├── zai-coding.js
│   │   └── zai.js
│   ├── constants
│   │   ├── commands.js
│   │   ├── paths.js
│   │   ├── profiles.js
│   │   ├── rules-actions.js
│   │   ├── task-priority.js
│   │   └── task-status.js
│   ├── profiles
│   │   ├── amp.js
│   │   ├── base-profile.js
│   │   ├── claude.js
│   │   ├── cline.js
│   │   ├── codex.js
│   │   ├── cursor.js
│   │   ├── gemini.js
│   │   ├── index.js
│   │   ├── kilo.js
│   │   ├── kiro.js
│   │   ├── opencode.js
│   │   ├── roo.js
│   │   ├── trae.js
│   │   ├── vscode.js
│   │   ├── windsurf.js
│   │   └── zed.js
│   ├── progress
│   │   ├── base-progress-tracker.js
│   │   ├── cli-progress-factory.js
│   │   ├── parse-prd-tracker.js
│   │   ├── progress-tracker-builder.js
│   │   └── tracker-ui.js
│   ├── prompts
│   │   ├── add-task.json
│   │   ├── analyze-complexity.json
│   │   ├── expand-task.json
│   │   ├── parse-prd.json
│   │   ├── README.md
│   │   ├── research.json
│   │   ├── schemas
│   │   │   ├── parameter.schema.json
│   │   │   ├── prompt-template.schema.json
│   │   │   ├── README.md
│   │   │   └── variant.schema.json
│   │   ├── update-subtask.json
│   │   ├── update-task.json
│   │   └── update-tasks.json
│   ├── provider-registry
│   │   └── index.js
│   ├── schemas
│   │   ├── add-task.js
│   │   ├── analyze-complexity.js
│   │   ├── base-schemas.js
│   │   ├── expand-task.js
│   │   ├── parse-prd.js
│   │   ├── registry.js
│   │   ├── update-subtask.js
│   │   ├── update-task.js
│   │   └── update-tasks.js
│   ├── task-master.js
│   ├── ui
│   │   ├── confirm.js
│   │   ├── indicators.js
│   │   └── parse-prd.js
│   └── utils
│       ├── asset-resolver.js
│       ├── create-mcp-config.js
│       ├── format.js
│       ├── getVersion.js
│       ├── logger-utils.js
│       ├── manage-gitignore.js
│       ├── path-utils.js
│       ├── profiles.js
│       ├── rule-transformer.js
│       ├── stream-parser.js
│       └── timeout-manager.js
├── test-clean-tags.js
├── test-config-manager.js
├── test-prd.txt
├── test-tag-functions.js
├── test-version-check-full.js
├── test-version-check.js
├── tests
│   ├── e2e
│   │   ├── e2e_helpers.sh
│   │   ├── parse_llm_output.cjs
│   │   ├── run_e2e.sh
│   │   ├── run_fallback_verification.sh
│   │   └── test_llm_analysis.sh
│   ├── fixtures
│   │   ├── .taskmasterconfig
│   │   ├── sample-claude-response.js
│   │   ├── sample-prd.txt
│   │   └── sample-tasks.js
│   ├── helpers
│   │   └── tool-counts.js
│   ├── integration
│   │   ├── claude-code-error-handling.test.js
│   │   ├── claude-code-optional.test.js
│   │   ├── cli
│   │   │   ├── commands.test.js
│   │   │   ├── complex-cross-tag-scenarios.test.js
│   │   │   └── move-cross-tag.test.js
│   │   ├── manage-gitignore.test.js
│   │   ├── mcp-server
│   │   │   └── direct-functions.test.js
│   │   ├── move-task-cross-tag.integration.test.js
│   │   ├── move-task-simple.integration.test.js
│   │   ├── profiles
│   │   │   ├── amp-init-functionality.test.js
│   │   │   ├── claude-init-functionality.test.js
│   │   │   ├── cline-init-functionality.test.js
│   │   │   ├── codex-init-functionality.test.js
│   │   │   ├── cursor-init-functionality.test.js
│   │   │   ├── gemini-init-functionality.test.js
│   │   │   ├── opencode-init-functionality.test.js
│   │   │   ├── roo-files-inclusion.test.js
│   │   │   ├── roo-init-functionality.test.js
│   │   │   ├── rules-files-inclusion.test.js
│   │   │   ├── trae-init-functionality.test.js
│   │   │   ├── vscode-init-functionality.test.js
│   │   │   └── windsurf-init-functionality.test.js
│   │   └── providers
│   │       └── temperature-support.test.js
│   ├── manual
│   │   ├── progress
│   │   │   ├── parse-prd-analysis.js
│   │   │   ├── test-parse-prd.js
│   │   │   └── TESTING_GUIDE.md
│   │   └── prompts
│   │       ├── prompt-test.js
│   │       └── README.md
│   ├── README.md
│   ├── setup.js
│   └── unit
│       ├── ai-providers
│       │   ├── base-provider.test.js
│       │   ├── claude-code.test.js
│       │   ├── codex-cli.test.js
│       │   ├── gemini-cli.test.js
│       │   ├── lmstudio.test.js
│       │   ├── mcp-components.test.js
│       │   ├── openai-compatible.test.js
│       │   ├── openai.test.js
│       │   ├── provider-registry.test.js
│       │   ├── zai-coding.test.js
│       │   ├── zai-provider.test.js
│       │   ├── zai-schema-introspection.test.js
│       │   └── zai.test.js
│       ├── ai-services-unified.test.js
│       ├── commands.test.js
│       ├── config-manager.test.js
│       ├── config-manager.test.mjs
│       ├── dependency-manager.test.js
│       ├── init.test.js
│       ├── initialize-project.test.js
│       ├── kebab-case-validation.test.js
│       ├── manage-gitignore.test.js
│       ├── mcp
│       │   └── tools
│       │       ├── __mocks__
│       │       │   └── move-task.js
│       │       ├── add-task.test.js
│       │       ├── analyze-complexity.test.js
│       │       ├── expand-all.test.js
│       │       ├── get-tasks.test.js
│       │       ├── initialize-project.test.js
│       │       ├── move-task-cross-tag-options.test.js
│       │       ├── move-task-cross-tag.test.js
│       │       ├── remove-task.test.js
│       │       └── tool-registration.test.js
│       ├── mcp-providers
│       │   ├── mcp-components.test.js
│       │   └── mcp-provider.test.js
│       ├── parse-prd.test.js
│       ├── profiles
│       │   ├── amp-integration.test.js
│       │   ├── claude-integration.test.js
│       │   ├── cline-integration.test.js
│       │   ├── codex-integration.test.js
│       │   ├── cursor-integration.test.js
│       │   ├── gemini-integration.test.js
│       │   ├── kilo-integration.test.js
│       │   ├── kiro-integration.test.js
│       │   ├── mcp-config-validation.test.js
│       │   ├── opencode-integration.test.js
│       │   ├── profile-safety-check.test.js
│       │   ├── roo-integration.test.js
│       │   ├── rule-transformer-cline.test.js
│       │   ├── rule-transformer-cursor.test.js
│       │   ├── rule-transformer-gemini.test.js
│       │   ├── rule-transformer-kilo.test.js
│       │   ├── rule-transformer-kiro.test.js
│       │   ├── rule-transformer-opencode.test.js
│       │   ├── rule-transformer-roo.test.js
│       │   ├── rule-transformer-trae.test.js
│       │   ├── rule-transformer-vscode.test.js
│       │   ├── rule-transformer-windsurf.test.js
│       │   ├── rule-transformer-zed.test.js
│       │   ├── rule-transformer.test.js
│       │   ├── selective-profile-removal.test.js
│       │   ├── subdirectory-support.test.js
│       │   ├── trae-integration.test.js
│       │   ├── vscode-integration.test.js
│       │   ├── windsurf-integration.test.js
│       │   └── zed-integration.test.js
│       ├── progress
│       │   └── base-progress-tracker.test.js
│       ├── prompt-manager.test.js
│       ├── prompts
│       │   ├── expand-task-prompt.test.js
│       │   └── prompt-migration.test.js
│       ├── scripts
│       │   └── modules
│       │       ├── commands
│       │       │   ├── move-cross-tag.test.js
│       │       │   └── README.md
│       │       ├── dependency-manager
│       │       │   ├── circular-dependencies.test.js
│       │       │   ├── cross-tag-dependencies.test.js
│       │       │   └── fix-dependencies-command.test.js
│       │       ├── task-manager
│       │       │   ├── add-subtask.test.js
│       │       │   ├── add-task.test.js
│       │       │   ├── analyze-task-complexity.test.js
│       │       │   ├── clear-subtasks.test.js
│       │       │   ├── complexity-report-tag-isolation.test.js
│       │       │   ├── expand-all-tasks.test.js
│       │       │   ├── expand-task.test.js
│       │       │   ├── find-next-task.test.js
│       │       │   ├── generate-task-files.test.js
│       │       │   ├── list-tasks.test.js
│       │       │   ├── models-baseurl.test.js
│       │       │   ├── move-task-cross-tag.test.js
│       │       │   ├── move-task.test.js
│       │       │   ├── parse-prd-schema.test.js
│       │       │   ├── parse-prd.test.js
│       │       │   ├── remove-subtask.test.js
│       │       │   ├── remove-task.test.js
│       │       │   ├── research.test.js
│       │       │   ├── scope-adjustment.test.js
│       │       │   ├── set-task-status.test.js
│       │       │   ├── setup.js
│       │       │   ├── update-single-task-status.test.js
│       │       │   ├── update-subtask-by-id.test.js
│       │       │   ├── update-task-by-id.test.js
│       │       │   └── update-tasks.test.js
│       │       ├── ui
│       │       │   └── cross-tag-error-display.test.js
│       │       └── utils-tag-aware-paths.test.js
│       ├── task-finder.test.js
│       ├── task-manager
│       │   ├── clear-subtasks.test.js
│       │   ├── move-task.test.js
│       │   ├── tag-boundary.test.js
│       │   └── tag-management.test.js
│       ├── task-master.test.js
│       ├── ui
│       │   └── indicators.test.js
│       ├── ui.test.js
│       ├── utils-strip-ansi.test.js
│       └── utils.test.js
├── tsconfig.json
├── tsdown.config.ts
├── turbo.json
└── update-task-migration-plan.md
```

# Files

--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------

```markdown
   1 | # task-master-ai
   2 | 
   3 | ## 0.33.0
   4 | 
   5 | ### Minor Changes
   6 | 
   7 | - [#1427](https://github.com/eyaltoledano/claude-task-master/pull/1427) [`122c23a`](https://github.com/eyaltoledano/claude-task-master/commit/122c23abb36634c1e68c476d681f41b4b4991671) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Added Gemini 3 pro preview to supported Taskmaster AI providers
   8 |   - Added to Google providers
   9 |   - Added to Gemini CLI providers
  10 |     - Attention: Gemini 3 Pro is available for:
  11 |       - Google AI Ultra Subscribers
  12 |       - Users who have access via a paid Gemini API key
  13 |         - If you want to use the gemini api key, make sure you have this defined in your .env or mcp.json env variables: `GEMINI_API_KEY=xxxx`
  14 | 
  15 | ## 0.32.2
  16 | 
  17 | ### Patch Changes
  18 | 
  19 | - [#1421](https://github.com/eyaltoledano/claude-task-master/pull/1421) [`e75946b`](https://github.com/eyaltoledano/claude-task-master/commit/e75946b1a998269e6a751d2b5baf5c3b7e9b9f46) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Upgrade fastmcp dependency to solve `Server does not support completions (required for completion/complete)`
  20 |   - This resolves errors where MCP clients (like Cursor) failed to connect to the Task Master MCP server:
  21 |     - [#1413](https://github.com/eyaltoledano/claude-task-master/issues/1413)
  22 |     - [#1411](https://github.com/eyaltoledano/claude-task-master/issues/1411)
  23 | 
  24 | ## 0.32.1
  25 | 
  26 | ### Patch Changes
  27 | 
  28 | - [#1396](https://github.com/eyaltoledano/claude-task-master/pull/1396) [`9883e83`](https://github.com/eyaltoledano/claude-task-master/commit/9883e83b78306e55003e960ea072a11048d89ec9) Thanks [@bjcoombs](https://github.com/bjcoombs)! - Fix box title alignment by adding emoji variant selector to warning sign
  29 | 
  30 | ## 0.32.0
  31 | 
  32 | ### Minor Changes
  33 | 
  34 | - [#1382](https://github.com/eyaltoledano/claude-task-master/pull/1382) [`ac4328a`](https://github.com/eyaltoledano/claude-task-master/commit/ac4328ae86380c50bb84fff0e98e2370f4ea666f) Thanks [@JJVvV](https://github.com/JJVvV)! - Added opt-in proxy support for all AI providers - respects http_proxy/https_proxy environment variables when enabled.
  35 | 
  36 |   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.
  37 | 
  38 |   **How to enable:**
  39 | 
  40 |   Proxy support is opt-in. Enable it using either method:
  41 | 
  42 |   **Method 1: Environment Variable**
  43 | 
  44 |   ```bash
  45 |   export TASKMASTER_ENABLE_PROXY=true
  46 |   export http_proxy=http://your-proxy:port
  47 |   export https_proxy=http://your-proxy:port
  48 |   export no_proxy=localhost,127.0.0.1  # Optional: bypass proxy for specific hosts
  49 | 
  50 |   # Then use Task Master normally
  51 |   task-master add-task "Create a new feature"
  52 |   ```
  53 | 
  54 |   **Method 2: Configuration File**
  55 | 
  56 |   Add to `.taskmaster/config.json`:
  57 | 
  58 |   ```json
  59 |   {
  60 |     "global": {
  61 |       "enableProxy": true
  62 |     }
  63 |   }
  64 |   ```
  65 | 
  66 |   Then set your proxy environment variables:
  67 | 
  68 |   ```bash
  69 |   export http_proxy=http://your-proxy:port
  70 |   export https_proxy=http://your-proxy:port
  71 |   ```
  72 | 
  73 |   **Technical details:**
  74 |   - Uses undici's `EnvHttpProxyAgent` for automatic proxy detection
  75 |   - Centralized implementation in `BaseAIProvider` for consistency across all providers
  76 |   - Supports all AI providers: OpenAI, Anthropic, Perplexity, Azure OpenAI, Google AI, Google Vertex AI, AWS Bedrock, and OpenAI-compatible providers
  77 |   - Opt-in design ensures users without proxy requirements are not affected
  78 |   - Priority: `TASKMASTER_ENABLE_PROXY` environment variable > `config.json` setting
  79 | 
  80 | - [#1408](https://github.com/eyaltoledano/claude-task-master/pull/1408) [`10ec025`](https://github.com/eyaltoledano/claude-task-master/commit/10ec0255812dad00aaa72f1b31f41ca978e4451c) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add --json back to `task-master list` and `task-master show` for when using the commands with ai agents (less context)
  81 | 
  82 | - [#1398](https://github.com/eyaltoledano/claude-task-master/pull/1398) [`e59c16c`](https://github.com/eyaltoledano/claude-task-master/commit/e59c16c707d3ade479a422d8c617004eac1a857f) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Claude Code provider now respects your global, project, and local Claude Code configuration files.
  83 | 
  84 |   When using the Claude Code AI provider, Task Master now automatically loads your Claude Code settings from:
  85 |   - **Global config** (`~/.claude/` directory) - Your personal preferences across all projects
  86 |   - **Project config** (`.claude/` directory) - Project-specific settings like CLAUDE.md instructions
  87 |   - **Local config** - Workspace-specific overrides
  88 | 
  89 |   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.
  90 | 
  91 |   **What's improved:**
  92 |   - ✅ CLAUDE.md files are now automatically loaded and applied (global and local)
  93 |   - ✅ Your custom Claude Code settings are respected
  94 |   - ✅ Project-specific instructions work as expected
  95 |   - ✅ No manual configuration needed - works out of the box
  96 | 
  97 |   **Issues:**
  98 |   - Resolves #1391
  99 |   - Resolves #1315
 100 | 
 101 | ### Patch Changes
 102 | 
 103 | - [#1400](https://github.com/eyaltoledano/claude-task-master/pull/1400) [`c62cf84`](https://github.com/eyaltoledano/claude-task-master/commit/c62cf845dad1960ec183df217293d4edbeea71b9) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix subtasks not showing parent task when displaying in cli (eg. tm show 10)
 104 | 
 105 | - [#1393](https://github.com/eyaltoledano/claude-task-master/pull/1393) [`da8ed6a`](https://github.com/eyaltoledano/claude-task-master/commit/da8ed6aa116b9ade3ef4502dd8b8c44727057b5f) Thanks [@bjcoombs](https://github.com/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.
 106 | 
 107 | - [#1407](https://github.com/eyaltoledano/claude-task-master/pull/1407) [`0003b6f`](https://github.com/eyaltoledano/claude-task-master/commit/0003b6fca6b8c9320ee959fb0081eed4ba086b98) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix complexity analysis prompt to ensure consistent JSON output format
 108 | 
 109 | - [#1351](https://github.com/eyaltoledano/claude-task-master/pull/1351) [`37aee78`](https://github.com/eyaltoledano/claude-task-master/commit/37aee7809ce753104692b2024eb8b2bb0d376c14) Thanks [@bjcoombs](https://github.com/bjcoombs)! - fix: prioritize .taskmaster in parent directories over other project markers
 110 | 
 111 |   When 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.
 112 | 
 113 |   This enables multi-repo monorepo setups where a single .taskmaster at the root tracks work across multiple sub-repositories.
 114 | 
 115 | - [#1406](https://github.com/eyaltoledano/claude-task-master/pull/1406) [`9079d04`](https://github.com/eyaltoledano/claude-task-master/commit/9079d0417907f468360e8db8dd461abb619609e7) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP server compatibility with Cursor IDE's latest update by upgrading to fastmcp v3.20.1 with Zod v4 support
 116 |   - This resolves connection failures where the MCP server was unable to establish proper capability negotiation.
 117 |   - Issue typically included wording like: `Server does not support completions`
 118 | 
 119 | ## 0.32.0-rc.0
 120 | 
 121 | ### Minor Changes
 122 | 
 123 | - [#1398](https://github.com/eyaltoledano/claude-task-master/pull/1398) [`e59c16c`](https://github.com/eyaltoledano/claude-task-master/commit/e59c16c707d3ade479a422d8c617004eac1a857f) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Claude Code provider now respects your global, project, and local Claude Code configuration files.
 124 | 
 125 |   When using the Claude Code AI provider, Task Master now automatically loads your Claude Code settings from:
 126 |   - **Global config** (`~/.claude/` directory) - Your personal preferences across all projects
 127 |   - **Project config** (`.claude/` directory) - Project-specific settings like CLAUDE.md instructions
 128 |   - **Local config** - Workspace-specific overrides
 129 | 
 130 |   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.
 131 | 
 132 |   **What's improved:**
 133 |   - ✅ CLAUDE.md files are now automatically loaded and applied (global and local)
 134 |   - ✅ Your custom Claude Code settings are respected
 135 |   - ✅ Project-specific instructions work as expected
 136 |   - ✅ No manual configuration needed - works out of the box
 137 | 
 138 |   **Issues:**
 139 |   - Resolves #1391
 140 |   - Resolves #1315
 141 | 
 142 | ### Patch Changes
 143 | 
 144 | - [#1400](https://github.com/eyaltoledano/claude-task-master/pull/1400) [`c62cf84`](https://github.com/eyaltoledano/claude-task-master/commit/c62cf845dad1960ec183df217293d4edbeea71b9) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix subtasks not showing parent task when displaying in cli (eg. tm show 10)
 145 | 
 146 | - [#1393](https://github.com/eyaltoledano/claude-task-master/pull/1393) [`da8ed6a`](https://github.com/eyaltoledano/claude-task-master/commit/da8ed6aa116b9ade3ef4502dd8b8c44727057b5f) Thanks [@bjcoombs](https://github.com/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.
 147 | 
 148 | - [#1407](https://github.com/eyaltoledano/claude-task-master/pull/1407) [`0003b6f`](https://github.com/eyaltoledano/claude-task-master/commit/0003b6fca6b8c9320ee959fb0081eed4ba086b98) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix complexity analysis prompt to ensure consistent JSON output format
 149 | 
 150 | - [#1351](https://github.com/eyaltoledano/claude-task-master/pull/1351) [`37aee78`](https://github.com/eyaltoledano/claude-task-master/commit/37aee7809ce753104692b2024eb8b2bb0d376c14) Thanks [@bjcoombs](https://github.com/bjcoombs)! - fix: prioritize .taskmaster in parent directories over other project markers
 151 | 
 152 |   When 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.
 153 | 
 154 |   This enables multi-repo monorepo setups where a single .taskmaster at the root tracks work across multiple sub-repositories.
 155 | 
 156 | - [#1406](https://github.com/eyaltoledano/claude-task-master/pull/1406) [`9079d04`](https://github.com/eyaltoledano/claude-task-master/commit/9079d0417907f468360e8db8dd461abb619609e7) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP server compatibility with Cursor IDE's latest update by upgrading to fastmcp v3.20.1 with Zod v4 support
 157 |   - This resolves connection failures where the MCP server was unable to establish proper capability negotiation.
 158 |   - Issue typically included wording like: `Server does not support completions`
 159 | 
 160 | - [#1382](https://github.com/eyaltoledano/claude-task-master/pull/1382) [`ac4328a`](https://github.com/eyaltoledano/claude-task-master/commit/ac4328ae86380c50bb84fff0e98e2370f4ea666f) Thanks [@JJVvV](https://github.com/JJVvV)! - Added opt-in proxy support for all AI providers - respects http_proxy/https_proxy environment variables when enabled.
 161 | 
 162 |   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.
 163 | 
 164 |   **How to enable:**
 165 | 
 166 |   Proxy support is opt-in. Enable it using either method:
 167 | 
 168 |   **Method 1: Environment Variable**
 169 | 
 170 |   ```bash
 171 |   export TASKMASTER_ENABLE_PROXY=true
 172 |   export http_proxy=http://your-proxy:port
 173 |   export https_proxy=http://your-proxy:port
 174 |   export no_proxy=localhost,127.0.0.1  # Optional: bypass proxy for specific hosts
 175 | 
 176 |   # Then use Task Master normally
 177 |   task-master add-task "Create a new feature"
 178 |   ```
 179 | 
 180 |   **Method 2: Configuration File**
 181 | 
 182 |   Add to `.taskmaster/config.json`:
 183 | 
 184 |   ```json
 185 |   {
 186 |     "global": {
 187 |       "enableProxy": true
 188 |     }
 189 |   }
 190 |   ```
 191 | 
 192 |   Then set your proxy environment variables:
 193 | 
 194 |   ```bash
 195 |   export http_proxy=http://your-proxy:port
 196 |   export https_proxy=http://your-proxy:port
 197 |   ```
 198 | 
 199 |   **Technical details:**
 200 |   - Uses undici's `EnvHttpProxyAgent` for automatic proxy detection
 201 |   - Centralized implementation in `BaseAIProvider` for consistency across all providers
 202 |   - Supports all AI providers: OpenAI, Anthropic, Perplexity, Azure OpenAI, Google AI, Google Vertex AI, AWS Bedrock, and OpenAI-compatible providers
 203 |   - Opt-in design ensures users without proxy requirements are not affected
 204 |   - Priority: `TASKMASTER_ENABLE_PROXY` environment variable > `config.json` setting
 205 | 
 206 | - [#1408](https://github.com/eyaltoledano/claude-task-master/pull/1408) [`10ec025`](https://github.com/eyaltoledano/claude-task-master/commit/10ec0255812dad00aaa72f1b31f41ca978e4451c) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add --json back to `task-master list` and `task-master show` for when using the commands with ai agents (less context)
 207 | 
 208 | ## 0.31.2
 209 | 
 210 | ### Patch Changes
 211 | 
 212 | - [#1377](https://github.com/eyaltoledano/claude-task-master/pull/1377) [`3c22875`](https://github.com/eyaltoledano/claude-task-master/commit/3c22875efeb5d21754d447a9559817bc5327a234) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix parse-prd schema to accept responses from models that omit optional fields (like Z.ai/GLM). Changed `metadata` field to use union pattern with `.default(null)` for better structured outputs compatibility.
 213 | 
 214 | - [#1377](https://github.com/eyaltoledano/claude-task-master/pull/1377) [`3c22875`](https://github.com/eyaltoledano/claude-task-master/commit/3c22875efeb5d21754d447a9559817bc5327a234) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix ai response not showing price after its json was repaired
 215 | 
 216 | - [#1377](https://github.com/eyaltoledano/claude-task-master/pull/1377) [`3c22875`](https://github.com/eyaltoledano/claude-task-master/commit/3c22875efeb5d21754d447a9559817bc5327a234) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Enable structured outputs for Z.ai providers. Added `supportsStructuredOutputs: true` to use `json_schema` mode for more reliable JSON generation in operations like parse-prd.
 217 | 
 218 | ## 0.31.1
 219 | 
 220 | ### Patch Changes
 221 | 
 222 | - [#1370](https://github.com/eyaltoledano/claude-task-master/pull/1370) [`9c3b273`](https://github.com/eyaltoledano/claude-task-master/commit/9c3b2737dd224e788b197f41df644ea0a6f4cfe2) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add support for ZAI (GLM) Coding Plan subscription endpoint as a separate provider. Users can now select between two ZAI providers:
 223 |   - **zai**: Standard ZAI endpoint (`https://api.z.ai/api/paas/v4/`)
 224 |   - **zai-coding**: Coding Plan endpoint (`https://api.z.ai/api/coding/paas/v4/`)
 225 | 
 226 |   Both providers use the same model IDs (glm-4.6, glm-4.5) but route to different API endpoints based on your subscription. When running `tm models --setup`, you'll see both providers listed separately:
 227 |   - `zai / glm-4.6` - Standard endpoint
 228 |   - `zai-coding / glm-4.6` - Coding Plan endpoint
 229 | 
 230 | - [#1371](https://github.com/eyaltoledano/claude-task-master/pull/1371) [`abf46b8`](https://github.com/eyaltoledano/claude-task-master/commit/abf46b8087c2f32466a71d057415bab315e35567) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improved auto-update experience:
 231 |   - updates now happen before your CLI command runs and automatically restart to execute your command with the new version.
 232 |   - No more manual restarts needed!
 233 | 
 234 | ## 0.31.0
 235 | 
 236 | ### Minor Changes
 237 | 
 238 | - [#1360](https://github.com/eyaltoledano/claude-task-master/pull/1360) [`819d5e1`](https://github.com/eyaltoledano/claude-task-master/commit/819d5e1bc5fb81be4b25f1823988a8e20abe8440) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add support for custom OpenAI-compatible providers, allowing you to connect Task Master to any service that implements the OpenAI API specification
 239 | 
 240 |   **How to use:**
 241 | 
 242 |   Configure your custom provider with the `models` command:
 243 | 
 244 |   ```bash
 245 |   task-master models --set-main <your-model-id> --openai-compatible --baseURL <your-api-endpoint>
 246 |   ```
 247 | 
 248 |   Example:
 249 | 
 250 |   ```bash
 251 |   task-master models --set-main llama-3-70b --openai-compatible --baseURL http://localhost:8000/v1
 252 |   # Or for an interactive view
 253 |   task-master models --setup
 254 |   ```
 255 | 
 256 |   Set your API key (if required by your provider) in mcp.json, your .env file or in your env exports:
 257 | 
 258 |   ```bash
 259 |   OPENAI_COMPATIBLE_API_KEY="your-key-here"
 260 |   ```
 261 | 
 262 |   This gives you the flexibility to use virtually any LLM service with Task Master, whether it's self-hosted, a specialized provider, or a custom inference server.
 263 | 
 264 | - [#1360](https://github.com/eyaltoledano/claude-task-master/pull/1360) [`819d5e1`](https://github.com/eyaltoledano/claude-task-master/commit/819d5e1bc5fb81be4b25f1823988a8e20abe8440) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add native support for Z.ai (GLM models), giving you access to high-performance Chinese models including glm-4.6 with massive 200K+ token context windows at competitive pricing
 265 | 
 266 |   **How to use:**
 267 |   1. Get your Z.ai API key from <https://z.ai/manage-apikey/apikey-list>
 268 |   2. Set your API key in .env, mcp.json or in env exports:
 269 | 
 270 |      ```bash
 271 |      ZAI_API_KEY="your-key-here"
 272 |      ```
 273 | 
 274 |   3. Configure Task Master to use GLM models:
 275 | 
 276 |      ```bash
 277 |      task-master models --set-main glm-4.6
 278 |      # Or for an interactive view
 279 |      task-master models --setup
 280 |      ```
 281 | 
 282 |   **Available models:**
 283 |   - `glm-4.6` - Latest model with 200K+ context, excellent for complex projects
 284 |   - `glm-4.5` - Previous generation, still highly capable
 285 |   - Additional GLM variants for different use cases: `glm-4.5-air`, `glm-4.5v`
 286 | 
 287 |   GLM models offer strong performance on software engineering tasks, with particularly good results on code generation and technical reasoning. The large context window makes them ideal for analyzing entire codebases or working with extensive documentation.
 288 | 
 289 | - [#1360](https://github.com/eyaltoledano/claude-task-master/pull/1360) [`819d5e1`](https://github.com/eyaltoledano/claude-task-master/commit/819d5e1bc5fb81be4b25f1823988a8e20abe8440) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add LM Studio integration, enabling you to run Task Master completely offline with local models at zero API cost.
 290 | 
 291 |   **How to use:**
 292 |   1. Download and install [LM Studio](https://lmstudio.ai/)
 293 |   2. Launch LM Studio and download a model (e.g., Llama 3.2, Mistral, Qwen)
 294 |   3. Optional: Add api key to mcp.json or .env (LMSTUDIO_API_KEY)
 295 |   4. Go to the "Local Server" tab and click "Start Server"
 296 |   5. Configure Task Master:
 297 | 
 298 |      ```bash
 299 |      task-master models --set-main <model-name> --lmstudio
 300 |      ```
 301 | 
 302 |      Example:
 303 | 
 304 |      ```bash
 305 |      task-master models --set-main llama-3.2-3b --lmstudio
 306 |      ```
 307 | 
 308 | ### Patch Changes
 309 | 
 310 | - [#1362](https://github.com/eyaltoledano/claude-task-master/pull/1362) [`3e70edf`](https://github.com/eyaltoledano/claude-task-master/commit/3e70edfa3a1f47bd8a6d2d2a30c20c72f5758b9b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve parse PRD schema for better llm model compatiblity
 311 |   - Fixes #1353
 312 | 
 313 | - [#1358](https://github.com/eyaltoledano/claude-task-master/pull/1358) [`0c639bd`](https://github.com/eyaltoledano/claude-task-master/commit/0c639bd1db9d2d9b4c2c22ac60b0d875ba75f80e) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix subtask ID display to show full compound notation
 314 | 
 315 |   When displaying a subtask via `tm show 104.1`, the header and properties table showed only the subtask's local ID (e.g., "1") instead of the full compound ID (e.g., "104.1"). The CLI now preserves and displays the original requested task ID throughout the display chain, ensuring subtasks are clearly identified with their parent context. Also improved TypeScript typing by using discriminated unions for Task/Subtask returns from `tasks.get()`, eliminating unsafe type coercions.
 316 | 
 317 | - [#1339](https://github.com/eyaltoledano/claude-task-master/pull/1339) [`3b09b5d`](https://github.com/eyaltoledano/claude-task-master/commit/3b09b5da2a929f260d275f056d35bb6ded54ca6d) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fixed MCP server sometimes crashing when getting into the commit step of autopilot
 318 |   - autopilot now persists state consistently through the whole flow
 319 | 
 320 | - [#1326](https://github.com/eyaltoledano/claude-task-master/pull/1326) [`9d5812b`](https://github.com/eyaltoledano/claude-task-master/commit/9d5812ba6725cfadebb8db8f4aa732cf3cdb3a36) Thanks [@SharifMrCreed](https://github.com/SharifMrCreed)! - Improve gemini cli integration
 321 | 
 322 |   When initializing Task Master with the `gemini` profile, you now get properly configured context files tailored specifically for Gemini CLI, including MCP configuration and Gemini-specific features like file references, session management, and headless mode.
 323 | 
 324 | ## 0.31.0-rc.0
 325 | 
 326 | ### Minor Changes
 327 | 
 328 | - [#1360](https://github.com/eyaltoledano/claude-task-master/pull/1360) [`819d5e1`](https://github.com/eyaltoledano/claude-task-master/commit/819d5e1bc5fb81be4b25f1823988a8e20abe8440) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add support for custom OpenAI-compatible providers, allowing you to connect Task Master to any service that implements the OpenAI API specification
 329 | 
 330 |   **How to use:**
 331 | 
 332 |   Configure your custom provider with the `models` command:
 333 | 
 334 |   ```bash
 335 |   task-master models --set-main <your-model-id> --openai-compatible --baseURL <your-api-endpoint>
 336 |   ```
 337 | 
 338 |   Example:
 339 | 
 340 |   ```bash
 341 |   task-master models --set-main llama-3-70b --openai-compatible --baseURL http://localhost:8000/v1
 342 |   # Or for an interactive view
 343 |   task-master models --setup
 344 |   ```
 345 | 
 346 |   Set your API key (if required by your provider) in mcp.json, your .env file or in your env exports:
 347 | 
 348 |   ```bash
 349 |   OPENAI_COMPATIBLE_API_KEY="your-key-here"
 350 |   ```
 351 | 
 352 |   This gives you the flexibility to use virtually any LLM service with Task Master, whether it's self-hosted, a specialized provider, or a custom inference server.
 353 | 
 354 | - [#1360](https://github.com/eyaltoledano/claude-task-master/pull/1360) [`819d5e1`](https://github.com/eyaltoledano/claude-task-master/commit/819d5e1bc5fb81be4b25f1823988a8e20abe8440) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add native support for Z.ai (GLM models), giving you access to high-performance Chinese models including glm-4.6 with massive 200K+ token context windows at competitive pricing
 355 | 
 356 |   **How to use:**
 357 |   1. Get your Z.ai API key from <https://z.ai/manage-apikey/apikey-list>
 358 |   2. Set your API key in .env, mcp.json or in env exports:
 359 | 
 360 |      ```bash
 361 |      ZAI_API_KEY="your-key-here"
 362 |      ```
 363 | 
 364 |   3. Configure Task Master to use GLM models:
 365 | 
 366 |      ```bash
 367 |      task-master models --set-main glm-4.6
 368 |      # Or for an interactive view
 369 |      task-master models --setup
 370 |      ```
 371 | 
 372 |   **Available models:**
 373 |   - `glm-4.6` - Latest model with 200K+ context, excellent for complex projects
 374 |   - `glm-4.5` - Previous generation, still highly capable
 375 |   - Additional GLM variants for different use cases: `glm-4.5-air`, `glm-4.5v`
 376 | 
 377 |   GLM models offer strong performance on software engineering tasks, with particularly good results on code generation and technical reasoning. The large context window makes them ideal for analyzing entire codebases or working with extensive documentation.
 378 | 
 379 | - [#1360](https://github.com/eyaltoledano/claude-task-master/pull/1360) [`819d5e1`](https://github.com/eyaltoledano/claude-task-master/commit/819d5e1bc5fb81be4b25f1823988a8e20abe8440) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add LM Studio integration, enabling you to run Task Master completely offline with local models at zero API cost.
 380 | 
 381 |   **How to use:**
 382 |   1. Download and install [LM Studio](https://lmstudio.ai/)
 383 |   2. Launch LM Studio and download a model (e.g., Llama 3.2, Mistral, Qwen)
 384 |   3. Optional: Add api key to mcp.json or .env (LMSTUDIO_API_KEY)
 385 |   4. Go to the "Local Server" tab and click "Start Server"
 386 |   5. Configure Task Master:
 387 | 
 388 |      ```bash
 389 |      task-master models --set-main <model-name> --lmstudio
 390 |      ```
 391 | 
 392 |      Example:
 393 | 
 394 |      ```bash
 395 |      task-master models --set-main llama-3.2-3b --lmstudio
 396 |      ```
 397 | 
 398 | ### Patch Changes
 399 | 
 400 | - [#1362](https://github.com/eyaltoledano/claude-task-master/pull/1362) [`3e70edf`](https://github.com/eyaltoledano/claude-task-master/commit/3e70edfa3a1f47bd8a6d2d2a30c20c72f5758b9b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve parse PRD schema for better llm model compatiblity
 401 |   - Fixes #1353
 402 | 
 403 | - [#1358](https://github.com/eyaltoledano/claude-task-master/pull/1358) [`0c639bd`](https://github.com/eyaltoledano/claude-task-master/commit/0c639bd1db9d2d9b4c2c22ac60b0d875ba75f80e) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix subtask ID display to show full compound notation
 404 | 
 405 |   When displaying a subtask via `tm show 104.1`, the header and properties table showed only the subtask's local ID (e.g., "1") instead of the full compound ID (e.g., "104.1"). The CLI now preserves and displays the original requested task ID throughout the display chain, ensuring subtasks are clearly identified with their parent context. Also improved TypeScript typing by using discriminated unions for Task/Subtask returns from `tasks.get()`, eliminating unsafe type coercions.
 406 | 
 407 | - [#1339](https://github.com/eyaltoledano/claude-task-master/pull/1339) [`3b09b5d`](https://github.com/eyaltoledano/claude-task-master/commit/3b09b5da2a929f260d275f056d35bb6ded54ca6d) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fixed MCP server sometimes crashing when getting into the commit step of autopilot
 408 |   - autopilot now persists state consistently through the whole flow
 409 | 
 410 | - [#1326](https://github.com/eyaltoledano/claude-task-master/pull/1326) [`9d5812b`](https://github.com/eyaltoledano/claude-task-master/commit/9d5812ba6725cfadebb8db8f4aa732cf3cdb3a36) Thanks [@SharifMrCreed](https://github.com/SharifMrCreed)! - Improve gemini cli integration
 411 | 
 412 |   When initializing Task Master with the `gemini` profile, you now get properly configured context files tailored specifically for Gemini CLI, including MCP configuration and Gemini-specific features like file references, session management, and headless mode.
 413 | 
 414 | ## 0.30.2
 415 | 
 416 | ### Patch Changes
 417 | 
 418 | - [#1340](https://github.com/eyaltoledano/claude-task-master/pull/1340) [`d63a40c`](https://github.com/eyaltoledano/claude-task-master/commit/d63a40c6ddc1ed2fe418206a19acd3e9dc27fd99) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve session persistence reliability
 419 | 
 420 | ## 0.30.1
 421 | 
 422 | ### Patch Changes
 423 | 
 424 | - [#1305](https://github.com/eyaltoledano/claude-task-master/pull/1305) [`a98d96e`](https://github.com/eyaltoledano/claude-task-master/commit/a98d96ef0414833b948672f86da4acc11f700ebb) Thanks [@bjcoombs](https://github.com/bjcoombs)! - Fix warning message box width to match dashboard box width for consistent UI alignment
 425 | 
 426 | - [#1346](https://github.com/eyaltoledano/claude-task-master/pull/1346) [`25addf9`](https://github.com/eyaltoledano/claude-task-master/commit/25addf919f58b439dbc2f6ccf5be822b48280fa3) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - remove file and complexity report parameter from get-tasks and get-task mcp tool
 427 |   - In an effort to reduce complexity and context bloat for ai coding agents, we simplified the parameters of these tools
 428 | 
 429 | ## 0.30.1-rc.0
 430 | 
 431 | ### Patch Changes
 432 | 
 433 | - [#1305](https://github.com/eyaltoledano/claude-task-master/pull/1305) [`a98d96e`](https://github.com/eyaltoledano/claude-task-master/commit/a98d96ef0414833b948672f86da4acc11f700ebb) Thanks [@bjcoombs](https://github.com/bjcoombs)! - Fix warning message box width to match dashboard box width for consistent UI alignment
 434 | 
 435 | ## 0.30.0
 436 | 
 437 | ### Minor Changes
 438 | 
 439 | - [#1181](https://github.com/eyaltoledano/claude-task-master/pull/1181) [`a69d8c9`](https://github.com/eyaltoledano/claude-task-master/commit/a69d8c91dc9205a3fdaf9d32276144fa3bcad55d) Thanks [@karol-f](https://github.com/karol-f)! - Add configurable MCP tool loading to optimize LLM context usage
 440 | 
 441 |   You can now control which Task Master MCP tools are loaded by setting the `TASK_MASTER_TOOLS` environment variable in your MCP configuration. This helps reduce context usage for LLMs by only loading the tools you need.
 442 | 
 443 |   **Configuration Options:**
 444 |   - `all` (default): Load all 36 tools
 445 |   - `core` or `lean`: Load only 7 essential tools for daily development
 446 |     - Includes: `get_tasks`, `next_task`, `get_task`, `set_task_status`, `update_subtask`, `parse_prd`, `expand_task`
 447 |   - `standard`: Load 15 commonly used tools (all core tools plus 8 more)
 448 |     - Additional tools: `initialize_project`, `analyze_project_complexity`, `expand_all`, `add_subtask`, `remove_task`, `generate`, `add_task`, `complexity_report`
 449 |   - Custom list: Comma-separated tool names (e.g., `get_tasks,next_task,set_task_status`)
 450 | 
 451 |   **Example .mcp.json configuration:**
 452 | 
 453 |   ```json
 454 |   {
 455 |     "mcpServers": {
 456 |       "task-master-ai": {
 457 |         "command": "npx",
 458 |         "args": ["-y", "task-master-ai"],
 459 |         "env": {
 460 |           "TASK_MASTER_TOOLS": "standard",
 461 |           "ANTHROPIC_API_KEY": "your_key_here"
 462 |         }
 463 |       }
 464 |     }
 465 |   }
 466 |   ```
 467 | 
 468 |   For complete details on all available tools, configuration examples, and usage guidelines, see the [MCP Tools documentation](https://docs.task-master.dev/capabilities/mcp#configurable-tool-loading).
 469 | 
 470 | - [#1312](https://github.com/eyaltoledano/claude-task-master/pull/1312) [`d7fca18`](https://github.com/eyaltoledano/claude-task-master/commit/d7fca1844f24ad8ce079c21d9799a3c4b4413381) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve next command to work with remote
 471 | 
 472 | - [#1317](https://github.com/eyaltoledano/claude-task-master/pull/1317) [`548beb4`](https://github.com/eyaltoledano/claude-task-master/commit/548beb434453c69041572eb5927ee7da7075c213) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add 4.5 haiku and sonnet to supported models for claude-code and anthropic ai providers
 473 | 
 474 | - [#1309](https://github.com/eyaltoledano/claude-task-master/pull/1309) [`ccb87a5`](https://github.com/eyaltoledano/claude-task-master/commit/ccb87a516a11f7ec4b03133c8f24f4fd8c3a45fc) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add autonomous TDD workflow automation system with new `tm autopilot` commands and MCP tools for AI-driven test-driven development.
 475 | 
 476 |   **New CLI Commands:**
 477 |   - `tm autopilot start <taskId>` - Initialize TDD workflow
 478 |   - `tm autopilot next` - Get next action in workflow
 479 |   - `tm autopilot status` - Check workflow progress
 480 |   - `tm autopilot complete` - Advance phase with test results
 481 |   - `tm autopilot commit` - Save progress with metadata
 482 |   - `tm autopilot resume` - Continue from checkpoint
 483 |   - `tm autopilot abort` - Cancel workflow
 484 | 
 485 |   **New MCP Tools:**
 486 |   Seven new autopilot tools for programmatic control: `autopilot_start`, `autopilot_next`, `autopilot_status`, `autopilot_complete_phase`, `autopilot_commit`, `autopilot_resume`, `autopilot_abort`
 487 | 
 488 |   **Features:**
 489 |   - Complete RED → GREEN → COMMIT cycle enforcement
 490 |   - Intelligent commit message generation with metadata
 491 |   - Activity logging and state persistence
 492 |   - Configurable workflow settings via `.taskmaster/config.json`
 493 |   - Comprehensive AI agent integration documentation
 494 | 
 495 |   **Documentation:**
 496 |   - AI Agent Integration Guide (2,800+ lines)
 497 |   - TDD Quick Start Guide
 498 |   - Example prompts and integration patterns
 499 | 
 500 |   > **Learn more:** [TDD Workflow Quickstart Guide](https://dev.task-master.dev/tdd-workflow/quickstart)
 501 | 
 502 |   This release enables AI agents to autonomously execute test-driven development workflows with full state management and recovery capabilities.
 503 | 
 504 | ### Patch Changes
 505 | 
 506 | - [#1314](https://github.com/eyaltoledano/claude-task-master/pull/1314) [`6bc75c0`](https://github.com/eyaltoledano/claude-task-master/commit/6bc75c0ac68b59cb10cee70574a689f83e4de768) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve auth token refresh flow
 507 | 
 508 | - [#1302](https://github.com/eyaltoledano/claude-task-master/pull/1302) [`3283506`](https://github.com/eyaltoledano/claude-task-master/commit/3283506444d59896ecb97721ef2e96e290eb84d3) Thanks [@bjcoombs](https://github.com/bjcoombs)! - Enable Task Master commands to traverse parent directories to find project root from nested paths
 509 | 
 510 |   Fixes #1301
 511 | 
 512 | - [#1323](https://github.com/eyaltoledano/claude-task-master/pull/1323) [`dc6652c`](https://github.com/eyaltoledano/claude-task-master/commit/dc6652ccd2b50b91eb55d92899ebf70c7b4d6601) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP server compatibility with Draft-07 clients (Augment IDE, gemini-cli, gemini code assist)
 513 |   - Resolves #1284
 514 | 
 515 |   **Problem:**
 516 |   - MCP tools were using Zod v4, which outputs JSON Schema Draft 2020-12
 517 |   - MCP clients only support Draft-07
 518 |   - Tools were not discoverable in gemini-cli and other clients
 519 | 
 520 |   **Solution:**
 521 |   - Updated all MCP tools to import from `zod/v3` instead of `zod`
 522 |   - Zod v3 schemas convert to Draft-07 via FastMCP's zod-to-json-schema
 523 |   - Fixed logger to use stderr instead of stdout (MCP protocol requirement)
 524 | 
 525 |   This is a temporary workaround until FastMCP adds JSON Schema version configuration.
 526 | 
 527 | ## 0.30.0-rc.1
 528 | 
 529 | ### Minor Changes
 530 | 
 531 | - [#1317](https://github.com/eyaltoledano/claude-task-master/pull/1317) [`548beb4`](https://github.com/eyaltoledano/claude-task-master/commit/548beb434453c69041572eb5927ee7da7075c213) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add 4.5 haiku and sonnet to supported models for claude-code and anthropic ai providers
 532 | 
 533 | - [#1309](https://github.com/eyaltoledano/claude-task-master/pull/1309) [`ccb87a5`](https://github.com/eyaltoledano/claude-task-master/commit/ccb87a516a11f7ec4b03133c8f24f4fd8c3a45fc) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add autonomous TDD workflow automation system with new `tm autopilot` commands and MCP tools for AI-driven test-driven development.
 534 | 
 535 |   **New CLI Commands:**
 536 |   - `tm autopilot start <taskId>` - Initialize TDD workflow
 537 |   - `tm autopilot next` - Get next action in workflow
 538 |   - `tm autopilot status` - Check workflow progress
 539 |   - `tm autopilot complete` - Advance phase with test results
 540 |   - `tm autopilot commit` - Save progress with metadata
 541 |   - `tm autopilot resume` - Continue from checkpoint
 542 |   - `tm autopilot abort` - Cancel workflow
 543 | 
 544 |   **New MCP Tools:**
 545 |   Seven new autopilot tools for programmatic control: `autopilot_start`, `autopilot_next`, `autopilot_status`, `autopilot_complete_phase`, `autopilot_commit`, `autopilot_resume`, `autopilot_abort`
 546 | 
 547 |   **Features:**
 548 |   - Complete RED → GREEN → COMMIT cycle enforcement
 549 |   - Intelligent commit message generation with metadata
 550 |   - Activity logging and state persistence
 551 |   - Configurable workflow settings via `.taskmaster/config.json`
 552 |   - Comprehensive AI agent integration documentation
 553 | 
 554 |   **Documentation:**
 555 |   - AI Agent Integration Guide (2,800+ lines)
 556 |   - TDD Quick Start Guide
 557 |   - Example prompts and integration patterns
 558 | 
 559 |   > **Learn more:** [TDD Workflow Quickstart Guide](https://dev.task-master.dev/tdd-workflow/quickstart)
 560 | 
 561 |   This release enables AI agents to autonomously execute test-driven development workflows with full state management and recovery capabilities.
 562 | 
 563 | ### Patch Changes
 564 | 
 565 | - [#1323](https://github.com/eyaltoledano/claude-task-master/pull/1323) [`dc6652c`](https://github.com/eyaltoledano/claude-task-master/commit/dc6652ccd2b50b91eb55d92899ebf70c7b4d6601) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP server compatibility with Draft-07 clients (Augment IDE, gemini-cli, gemini code assist)
 566 |   - Resolves #1284
 567 | 
 568 |   **Problem:**
 569 |   - MCP tools were using Zod v4, which outputs JSON Schema Draft 2020-12
 570 |   - MCP clients only support Draft-07
 571 |   - Tools were not discoverable in gemini-cli and other clients
 572 | 
 573 |   **Solution:**
 574 |   - Updated all MCP tools to import from `zod/v3` instead of `zod`
 575 |   - Zod v3 schemas convert to Draft-07 via FastMCP's zod-to-json-schema
 576 |   - Fixed logger to use stderr instead of stdout (MCP protocol requirement)
 577 | 
 578 |   This is a temporary workaround until FastMCP adds JSON Schema version configuration.
 579 | 
 580 | ## 0.30.0-rc.0
 581 | 
 582 | ### Minor Changes
 583 | 
 584 | - [#1181](https://github.com/eyaltoledano/claude-task-master/pull/1181) [`a69d8c9`](https://github.com/eyaltoledano/claude-task-master/commit/a69d8c91dc9205a3fdaf9d32276144fa3bcad55d) Thanks [@karol-f](https://github.com/karol-f)! - Add configurable MCP tool loading to optimize LLM context usage
 585 | 
 586 |   You can now control which Task Master MCP tools are loaded by setting the `TASK_MASTER_TOOLS` environment variable in your MCP configuration. This helps reduce context usage for LLMs by only loading the tools you need.
 587 | 
 588 |   **Configuration Options:**
 589 |   - `all` (default): Load all 36 tools
 590 |   - `core` or `lean`: Load only 7 essential tools for daily development
 591 |     - Includes: `get_tasks`, `next_task`, `get_task`, `set_task_status`, `update_subtask`, `parse_prd`, `expand_task`
 592 |   - `standard`: Load 15 commonly used tools (all core tools plus 8 more)
 593 |     - Additional tools: `initialize_project`, `analyze_project_complexity`, `expand_all`, `add_subtask`, `remove_task`, `generate`, `add_task`, `complexity_report`
 594 |   - Custom list: Comma-separated tool names (e.g., `get_tasks,next_task,set_task_status`)
 595 | 
 596 |   **Example .mcp.json configuration:**
 597 | 
 598 |   ```json
 599 |   {
 600 |     "mcpServers": {
 601 |       "task-master-ai": {
 602 |         "command": "npx",
 603 |         "args": ["-y", "task-master-ai"],
 604 |         "env": {
 605 |           "TASK_MASTER_TOOLS": "standard",
 606 |           "ANTHROPIC_API_KEY": "your_key_here"
 607 |         }
 608 |       }
 609 |     }
 610 |   }
 611 |   ```
 612 | 
 613 |   For complete details on all available tools, configuration examples, and usage guidelines, see the [MCP Tools documentation](https://docs.task-master.dev/capabilities/mcp#configurable-tool-loading).
 614 | 
 615 | - [#1312](https://github.com/eyaltoledano/claude-task-master/pull/1312) [`d7fca18`](https://github.com/eyaltoledano/claude-task-master/commit/d7fca1844f24ad8ce079c21d9799a3c4b4413381) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve next command to work with remote
 616 | 
 617 | ### Patch Changes
 618 | 
 619 | - [#1314](https://github.com/eyaltoledano/claude-task-master/pull/1314) [`6bc75c0`](https://github.com/eyaltoledano/claude-task-master/commit/6bc75c0ac68b59cb10cee70574a689f83e4de768) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve auth token refresh flow
 620 | 
 621 | - [#1302](https://github.com/eyaltoledano/claude-task-master/pull/1302) [`3283506`](https://github.com/eyaltoledano/claude-task-master/commit/3283506444d59896ecb97721ef2e96e290eb84d3) Thanks [@bjcoombs](https://github.com/bjcoombs)! - Enable Task Master commands to traverse parent directories to find project root from nested paths
 622 | 
 623 |   Fixes #1301
 624 | 
 625 | ## 0.29.0
 626 | 
 627 | ### Minor Changes
 628 | 
 629 | - [#1286](https://github.com/eyaltoledano/claude-task-master/pull/1286) [`f12a16d`](https://github.com/eyaltoledano/claude-task-master/commit/f12a16d09649f62148515f11f616157c7d0bd2d5) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add changelog highlights to auto-update notifications
 630 | 
 631 |   When the CLI auto-updates to a new version, it now displays a "What's New" section.
 632 | 
 633 | - [#1293](https://github.com/eyaltoledano/claude-task-master/pull/1293) [`3010b90`](https://github.com/eyaltoledano/claude-task-master/commit/3010b90d98f3a7d8636caa92fc33d6ee69d4bed0) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add Claude Code plugin with marketplace distribution
 634 | 
 635 |   This release introduces official Claude Code plugin support, marking the evolution from legacy `.claude` directory copying to a modern plugin-based architecture.
 636 | 
 637 |   ## 🎉 New: Claude Code Plugin
 638 | 
 639 |   Task Master AI commands and agents are now distributed as a proper Claude Code plugin:
 640 |   - **49 slash commands** with clean naming (`/taskmaster:command-name`)
 641 |   - **3 specialized AI agents** (task-orchestrator, task-executor, task-checker)
 642 |   - **MCP server integration** for deep Claude Code integration
 643 | 
 644 |   **Installation:**
 645 | 
 646 |   ```bash
 647 |   /plugin marketplace add eyaltoledano/claude-task-master
 648 |   /plugin install taskmaster@taskmaster
 649 |   ```
 650 | 
 651 |   ### The `rules add claude` command no longer copies commands and agents to `.claude/commands/` and `.claude/agents/`. Instead, it now
 652 |   - Shows plugin installation instructions
 653 |   - Only manages CLAUDE.md imports for agent instructions
 654 |   - Directs users to install the official plugin
 655 | 
 656 |   **Migration for Existing Users:**
 657 | 
 658 |   If you previously used `rules add claude`:
 659 |   1. The old commands in `.claude/commands/` will continue to work but won't receive updates
 660 |   2. Install the plugin for the latest features: `/plugin install taskmaster@taskmaster`
 661 |   3. remove old `.claude/commands/` and `.claude/agents/` directories
 662 | 
 663 |   **Why This Change?**
 664 | 
 665 |   Claude Code plugins provide:
 666 |   - ✅ Automatic updates when we release new features
 667 |   - ✅ Better command organization and naming
 668 |   - ✅ Seamless integration with Claude Code
 669 |   - ✅ No manual file copying or management
 670 | 
 671 |   The plugin system is the future of Task Master AI integration with Claude Code!
 672 | 
 673 | - [#1285](https://github.com/eyaltoledano/claude-task-master/pull/1285) [`2a910a4`](https://github.com/eyaltoledano/claude-task-master/commit/2a910a40bac375f9f61d797bf55597303d556b48) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add RPG (Repository Planning Graph) method template for structured PRD creation. The new `example_prd_rpg.txt` template teaches AI agents and developers the RPG methodology through embedded instructions, inline good/bad examples, and XML-style tags for structure. This template enables creation of dependency-aware PRDs that automatically generate topologically-ordered task graphs when parsed with Task Master.
 674 | 
 675 |   Key features:
 676 |   - Method-as-template: teaches RPG principles (dual-semantics, explicit dependencies, topological order) while being used
 677 |   - Inline instructions at decision points guide AI through each section
 678 |   - Good/bad examples for immediate pattern matching
 679 |   - Flexible plain-text format with XML-style tags for parseability
 680 |   - Critical dependency-graph section ensures correct task ordering
 681 |   - Automatic inclusion during `task-master init`
 682 |   - Comprehensive documentation at [docs.task-master.dev/capabilities/rpg-method](https://docs.task-master.dev/capabilities/rpg-method)
 683 |   - Tool recommendations for code-context-aware PRD creation (Claude Code, Cursor, Gemini CLI, Codex/Grok)
 684 | 
 685 |   The RPG template complements the existing `example_prd.txt` and provides a more structured approach for complex projects requiring clear module boundaries and dependency chains.
 686 | 
 687 | - [#1287](https://github.com/eyaltoledano/claude-task-master/pull/1287) [`90e6bdc`](https://github.com/eyaltoledano/claude-task-master/commit/90e6bdcf1c59f65ad27fcdfe3b13b9dca7e77654) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Enhance `expand_all` to intelligently use complexity analysis recommendations when expanding tasks.
 688 | 
 689 |   The expand-all operation now automatically leverages recommendations from `analyze-complexity` to determine optimal subtask counts for each task, resulting in more accurate and context-aware task breakdowns.
 690 | 
 691 |   Key improvements:
 692 |   - Automatic integration with complexity analysis reports
 693 |   - Tag-aware complexity report path resolution
 694 |   - Intelligent subtask count determination based on task complexity
 695 |   - Falls back to defaults when complexity analysis is unavailable
 696 |   - Enhanced logging for better visibility into expansion decisions
 697 | 
 698 |   When you run `task-master expand --all` after `task-master analyze-complexity`, Task Master now uses the recommended subtask counts from the complexity analysis instead of applying uniform defaults, ensuring each task is broken down according to its actual complexity.
 699 | 
 700 | ### Patch Changes
 701 | 
 702 | - [#1191](https://github.com/eyaltoledano/claude-task-master/pull/1191) [`aaf903f`](https://github.com/eyaltoledano/claude-task-master/commit/aaf903ff2f606c779a22e9a4b240ab57b3683815) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix cross-level task dependencies not being saved
 703 | 
 704 |   Fixes an issue where adding dependencies between subtasks and top-level tasks (e.g., `task-master add-dependency --id=2.2 --depends-on=11`) would report success but fail to persist the changes. Dependencies can now be created in both directions between any task levels.
 705 | 
 706 | - [#1299](https://github.com/eyaltoledano/claude-task-master/pull/1299) [`4c1ef2c`](https://github.com/eyaltoledano/claude-task-master/commit/4c1ef2ca94411c53bcd2a78ec710b06c500236dd) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve refresh token when authenticating
 707 | 
 708 | ## 0.29.0-rc.1
 709 | 
 710 | ### Patch Changes
 711 | 
 712 | - [#1299](https://github.com/eyaltoledano/claude-task-master/pull/1299) [`a6c5152`](https://github.com/eyaltoledano/claude-task-master/commit/a6c5152f20edd8717cf1aea34e7c178b1261aa99) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve refresh token when authenticating
 713 | 
 714 | ## 0.29.0-rc.0
 715 | 
 716 | ### Minor Changes
 717 | 
 718 | - [#1286](https://github.com/eyaltoledano/claude-task-master/pull/1286) [`f12a16d`](https://github.com/eyaltoledano/claude-task-master/commit/f12a16d09649f62148515f11f616157c7d0bd2d5) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add changelog highlights to auto-update notifications
 719 | 
 720 |   When the CLI auto-updates to a new version, it now displays a "What's New" section.
 721 | 
 722 | - [#1293](https://github.com/eyaltoledano/claude-task-master/pull/1293) [`3010b90`](https://github.com/eyaltoledano/claude-task-master/commit/3010b90d98f3a7d8636caa92fc33d6ee69d4bed0) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add Claude Code plugin with marketplace distribution
 723 | 
 724 |   This release introduces official Claude Code plugin support, marking the evolution from legacy `.claude` directory copying to a modern plugin-based architecture.
 725 | 
 726 |   ## 🎉 New: Claude Code Plugin
 727 | 
 728 |   Task Master AI commands and agents are now distributed as a proper Claude Code plugin:
 729 |   - **49 slash commands** with clean naming (`/task-master-ai:command-name`)
 730 |   - **3 specialized AI agents** (task-orchestrator, task-executor, task-checker)
 731 |   - **MCP server integration** for deep Claude Code integration
 732 | 
 733 |   **Installation:**
 734 | 
 735 |   ```bash
 736 |   /plugin marketplace add eyaltoledano/claude-task-master
 737 |   /plugin install taskmaster@taskmaster
 738 |   ```
 739 | 
 740 |   ### The `rules add claude` command no longer copies commands and agents to `.claude/commands/` and `.claude/agents/`. Instead, it now
 741 |   - Shows plugin installation instructions
 742 |   - Only manages CLAUDE.md imports for agent instructions
 743 |   - Directs users to install the official plugin
 744 | 
 745 |   **Migration for Existing Users:**
 746 | 
 747 |   If you previously used `rules add claude`:
 748 |   1. The old commands in `.claude/commands/` will continue to work but won't receive updates
 749 |   2. Install the plugin for the latest features: `/plugin install taskmaster@taskmaster`
 750 |   3. remove old `.claude/commands/` and `.claude/agents/` directories
 751 | 
 752 |   **Why This Change?**
 753 | 
 754 |   Claude Code plugins provide:
 755 |   - ✅ Automatic updates when we release new features
 756 |   - ✅ Better command organization and naming
 757 |   - ✅ Seamless integration with Claude Code
 758 |   - ✅ No manual file copying or management
 759 | 
 760 |   The plugin system is the future of Task Master AI integration with Claude Code!
 761 | 
 762 | - [#1285](https://github.com/eyaltoledano/claude-task-master/pull/1285) [`2a910a4`](https://github.com/eyaltoledano/claude-task-master/commit/2a910a40bac375f9f61d797bf55597303d556b48) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add RPG (Repository Planning Graph) method template for structured PRD creation. The new `example_prd_rpg.txt` template teaches AI agents and developers the RPG methodology through embedded instructions, inline good/bad examples, and XML-style tags for structure. This template enables creation of dependency-aware PRDs that automatically generate topologically-ordered task graphs when parsed with Task Master.
 763 | 
 764 |   Key features:
 765 |   - Method-as-template: teaches RPG principles (dual-semantics, explicit dependencies, topological order) while being used
 766 |   - Inline instructions at decision points guide AI through each section
 767 |   - Good/bad examples for immediate pattern matching
 768 |   - Flexible plain-text format with XML-style tags for parseability
 769 |   - Critical dependency-graph section ensures correct task ordering
 770 |   - Automatic inclusion during `task-master init`
 771 |   - Comprehensive documentation at [docs.task-master.dev/capabilities/rpg-method](https://docs.task-master.dev/capabilities/rpg-method)
 772 |   - Tool recommendations for code-context-aware PRD creation (Claude Code, Cursor, Gemini CLI, Codex/Grok)
 773 | 
 774 |   The RPG template complements the existing `example_prd.txt` and provides a more structured approach for complex projects requiring clear module boundaries and dependency chains.
 775 | 
 776 | - [#1287](https://github.com/eyaltoledano/claude-task-master/pull/1287) [`90e6bdc`](https://github.com/eyaltoledano/claude-task-master/commit/90e6bdcf1c59f65ad27fcdfe3b13b9dca7e77654) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Enhance `expand_all` to intelligently use complexity analysis recommendations when expanding tasks.
 777 | 
 778 |   The expand-all operation now automatically leverages recommendations from `analyze-complexity` to determine optimal subtask counts for each task, resulting in more accurate and context-aware task breakdowns.
 779 | 
 780 |   Key improvements:
 781 |   - Automatic integration with complexity analysis reports
 782 |   - Tag-aware complexity report path resolution
 783 |   - Intelligent subtask count determination based on task complexity
 784 |   - Falls back to defaults when complexity analysis is unavailable
 785 |   - Enhanced logging for better visibility into expansion decisions
 786 | 
 787 |   When you run `task-master expand --all` after `task-master analyze-complexity`, Task Master now uses the recommended subtask counts from the complexity analysis instead of applying uniform defaults, ensuring each task is broken down according to its actual complexity.
 788 | 
 789 | ### Patch Changes
 790 | 
 791 | - [#1191](https://github.com/eyaltoledano/claude-task-master/pull/1191) [`aaf903f`](https://github.com/eyaltoledano/claude-task-master/commit/aaf903ff2f606c779a22e9a4b240ab57b3683815) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix cross-level task dependencies not being saved
 792 | 
 793 |   Fixes an issue where adding dependencies between subtasks and top-level tasks (e.g., `task-master add-dependency --id=2.2 --depends-on=11`) would report success but fail to persist the changes. Dependencies can now be created in both directions between any task levels.
 794 | 
 795 | ## 0.28.0
 796 | 
 797 | ### Minor Changes
 798 | 
 799 | - [#1273](https://github.com/eyaltoledano/claude-task-master/pull/1273) [`b43b7ce`](https://github.com/eyaltoledano/claude-task-master/commit/b43b7ce201625eee956fb2f8cd332f238bb78c21) Thanks [@ben-vargas](https://github.com/ben-vargas)! - Add Codex CLI provider with OAuth authentication
 800 |   - Added codex-cli provider for GPT-5 and GPT-5-Codex models (272K input / 128K output)
 801 |   - OAuth-first authentication via `codex login` - no API key required
 802 |   - Optional OPENAI_CODEX_API_KEY support
 803 |   - Codebase analysis capabilities automatically enabled
 804 |   - Command-specific settings and approval/sandbox modes
 805 | 
 806 | - [#1215](https://github.com/eyaltoledano/claude-task-master/pull/1215) [`0079b7d`](https://github.com/eyaltoledano/claude-task-master/commit/0079b7defdad550811f704c470fdd01955d91d4d) Thanks [@joedanz](https://github.com/joedanz)! - Add Cursor IDE custom slash command support
 807 | 
 808 |   Expose Task Master commands as Cursor slash commands by copying assets/claude/commands to .cursor/commands on profile add and cleaning up on remove.
 809 | 
 810 | - [#1246](https://github.com/eyaltoledano/claude-task-master/pull/1246) [`18aa416`](https://github.com/eyaltoledano/claude-task-master/commit/18aa416035f44345bde1c7321490345733a5d042) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Added api keys page on docs website: docs.task-master.dev/getting-started/api-keys
 811 | 
 812 | - [#1246](https://github.com/eyaltoledano/claude-task-master/pull/1246) [`18aa416`](https://github.com/eyaltoledano/claude-task-master/commit/18aa416035f44345bde1c7321490345733a5d042) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Move to AI SDK v5:
 813 |   - Works better with claude-code and gemini-cli as ai providers
 814 |   - Improved openai model family compatibility
 815 |   - Migrate ollama provider to v2
 816 |   - Closes #1223, #1013, #1161, #1174
 817 | 
 818 | - [#1262](https://github.com/eyaltoledano/claude-task-master/pull/1262) [`738ec51`](https://github.com/eyaltoledano/claude-task-master/commit/738ec51c049a295a12839b2dfddaf05e23b8fede) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Migrate AI services to use generateObject for structured data generation
 819 | 
 820 |   This update migrates all AI service calls from generateText to generateObject, ensuring more reliable and structured responses across all commands.
 821 | 
 822 |   ### Key Changes:
 823 |   - **Unified AI Service**: Replaced separate generateText implementations with a single generateObjectService that handles structured data generation
 824 |   - **JSON Mode Support**: Added proper JSON mode configuration for providers that support it (OpenAI, Anthropic, Google, Groq)
 825 |   - **Schema Validation**: Integrated Zod schemas for all AI-generated content with automatic validation
 826 |   - **Provider Compatibility**: Maintained compatibility with all existing providers while leveraging their native structured output capabilities
 827 |   - **Improved Reliability**: Structured output generation reduces parsing errors and ensures consistent data formats
 828 | 
 829 |   ### Technical Improvements:
 830 |   - Centralized provider configuration in `ai-providers-unified.js`
 831 |   - Added `generateObject` support detection for each provider
 832 |   - Implemented proper error handling for schema validation failures
 833 |   - Maintained backward compatibility with existing prompt structures
 834 | 
 835 |   ### Bug Fixes:
 836 |   - Fixed subtask ID numbering issue where AI was generating inconsistent IDs (101-105, 601-603) instead of sequential numbering (1, 2, 3...)
 837 |   - Enhanced prompt instructions to enforce proper ID generation patterns
 838 |   - Ensured subtasks display correctly as X.1, X.2, X.3 format
 839 | 
 840 |   This migration improves the reliability and consistency of AI-generated content throughout the Task Master application.
 841 | 
 842 | - [#1112](https://github.com/eyaltoledano/claude-task-master/pull/1112) [`d67b81d`](https://github.com/eyaltoledano/claude-task-master/commit/d67b81d25ddd927fabb6f5deb368e8993519c541) Thanks [@olssonsten](https://github.com/olssonsten)! - Enhanced Roo Code profile with MCP timeout configuration for improved reliability during long-running AI operations. The Roo profile now automatically configures a 300-second timeout for MCP server operations, preventing timeouts during complex tasks like `parse-prd`, `expand-all`, `analyze-complexity`, and `research` operations. This change also replaces static MCP configuration files with programmatic generation for better maintainability.
 843 | 
 844 |   **What's New:**
 845 |   - 300-second timeout for MCP operations (up from default 60 seconds)
 846 |   - Programmatic MCP configuration generation (replaces static asset files)
 847 |   - Enhanced reliability for AI-powered operations
 848 |   - Consistent with other AI coding assistant profiles
 849 | 
 850 |   **Migration:** No user action required - existing Roo Code installations will automatically receive the enhanced MCP configuration on next initialization.
 851 | 
 852 | - [#1246](https://github.com/eyaltoledano/claude-task-master/pull/1246) [`986ac11`](https://github.com/eyaltoledano/claude-task-master/commit/986ac117aee00bcd3e6830a0f76e1ad6d10e0bca) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Upgrade grok-cli ai provider to ai sdk v5
 853 | 
 854 | ### Patch Changes
 855 | 
 856 | - [#1235](https://github.com/eyaltoledano/claude-task-master/pull/1235) [`aaacc3d`](https://github.com/eyaltoledano/claude-task-master/commit/aaacc3dae36247b4de72b2d2697f49e5df6d01e3) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve `analyze-complexity` cli docs and `--research` flag documentation
 857 | 
 858 | - [#1251](https://github.com/eyaltoledano/claude-task-master/pull/1251) [`0b2c696`](https://github.com/eyaltoledano/claude-task-master/commit/0b2c6967c4605c33a100cff16f6ce8ff09ad06f0) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Change parent task back to "pending" when all subtasks are in "pending" state
 859 | 
 860 | - [#1274](https://github.com/eyaltoledano/claude-task-master/pull/1274) [`4f984f8`](https://github.com/eyaltoledano/claude-task-master/commit/4f984f8a6965da9f9c7edd60ddfd6560ac022917) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Do a quick fix on build
 861 | 
 862 | - [#1277](https://github.com/eyaltoledano/claude-task-master/pull/1277) [`7b5a7c4`](https://github.com/eyaltoledano/claude-task-master/commit/7b5a7c4495a68b782f7407fc5d0e0d3ae81f42f5) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP connection errors caused by deprecated generateTaskFiles calls. Resolves "Cannot read properties of null (reading 'toString')" errors when using MCP tools for task management operations.
 863 | 
 864 | - [#1276](https://github.com/eyaltoledano/claude-task-master/pull/1276) [`caee040`](https://github.com/eyaltoledano/claude-task-master/commit/caee040907f856d31a660171c9e6d966f23c632e) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP server error when file parameter not provided - now properly constructs default tasks.json path instead of failing with 'tasksJsonPath is required' error.
 865 | 
 866 | - [#1172](https://github.com/eyaltoledano/claude-task-master/pull/1172) [`b5fe723`](https://github.com/eyaltoledano/claude-task-master/commit/b5fe723f8ead928e9f2dbde13b833ee70ac3382d) Thanks [@jujax](https://github.com/jujax)! - Fix Claude Code settings validation for pathToClaudeCodeExecutable
 867 | 
 868 | - [#1192](https://github.com/eyaltoledano/claude-task-master/pull/1192) [`2b69936`](https://github.com/eyaltoledano/claude-task-master/commit/2b69936ee7b34346d6de5175af20e077359e2e2a) Thanks [@nukunga](https://github.com/nukunga)! - Fix sonar deep research model failing, should be called `sonar-deep-research`
 869 | 
 870 | - [#1270](https://github.com/eyaltoledano/claude-task-master/pull/1270) [`20004a3`](https://github.com/eyaltoledano/claude-task-master/commit/20004a39ea848f747e1ff48981bfe176554e4055) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix complexity score not showing for `task-master show` and `task-master list`
 871 |   - Added complexity score on "next task" when running `task-master list`
 872 |   - Added colors to complexity to reflect complexity (easy, medium, hard)
 873 | 
 874 | ## 0.28.0-rc.2
 875 | 
 876 | ### Minor Changes
 877 | 
 878 | - [#1273](https://github.com/eyaltoledano/claude-task-master/pull/1273) [`b43b7ce`](https://github.com/eyaltoledano/claude-task-master/commit/b43b7ce201625eee956fb2f8cd332f238bb78c21) Thanks [@ben-vargas](https://github.com/ben-vargas)! - Add Codex CLI provider with OAuth authentication
 879 |   - Added codex-cli provider for GPT-5 and GPT-5-Codex models (272K input / 128K output)
 880 |   - OAuth-first authentication via `codex login` - no API key required
 881 |   - Optional OPENAI_CODEX_API_KEY support
 882 |   - Codebase analysis capabilities automatically enabled
 883 |   - Command-specific settings and approval/sandbox modes
 884 | 
 885 | ### Patch Changes
 886 | 
 887 | - [#1277](https://github.com/eyaltoledano/claude-task-master/pull/1277) [`7b5a7c4`](https://github.com/eyaltoledano/claude-task-master/commit/7b5a7c4495a68b782f7407fc5d0e0d3ae81f42f5) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP connection errors caused by deprecated generateTaskFiles calls. Resolves "Cannot read properties of null (reading 'toString')" errors when using MCP tools for task management operations.
 888 | 
 889 | - [#1276](https://github.com/eyaltoledano/claude-task-master/pull/1276) [`caee040`](https://github.com/eyaltoledano/claude-task-master/commit/caee040907f856d31a660171c9e6d966f23c632e) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP server error when file parameter not provided - now properly constructs default tasks.json path instead of failing with 'tasksJsonPath is required' error.
 890 | 
 891 | ## 0.28.0-rc.1
 892 | 
 893 | ### Patch Changes
 894 | 
 895 | - [#1274](https://github.com/eyaltoledano/claude-task-master/pull/1274) [`4f984f8`](https://github.com/eyaltoledano/claude-task-master/commit/4f984f8a6965da9f9c7edd60ddfd6560ac022917) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Do a quick fix on build
 896 | 
 897 | ## 0.28.0-rc.0
 898 | 
 899 | ### Minor Changes
 900 | 
 901 | - [#1215](https://github.com/eyaltoledano/claude-task-master/pull/1215) [`0079b7d`](https://github.com/eyaltoledano/claude-task-master/commit/0079b7defdad550811f704c470fdd01955d91d4d) Thanks [@joedanz](https://github.com/joedanz)! - Add Cursor IDE custom slash command support
 902 | 
 903 |   Expose Task Master commands as Cursor slash commands by copying assets/claude/commands to .cursor/commands on profile add and cleaning up on remove.
 904 | 
 905 | - [#1246](https://github.com/eyaltoledano/claude-task-master/pull/1246) [`18aa416`](https://github.com/eyaltoledano/claude-task-master/commit/18aa416035f44345bde1c7321490345733a5d042) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Added api keys page on docs website: docs.task-master.dev/getting-started/api-keys
 906 | 
 907 | - [#1246](https://github.com/eyaltoledano/claude-task-master/pull/1246) [`18aa416`](https://github.com/eyaltoledano/claude-task-master/commit/18aa416035f44345bde1c7321490345733a5d042) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Move to AI SDK v5:
 908 |   - Works better with claude-code and gemini-cli as ai providers
 909 |   - Improved openai model family compatibility
 910 |   - Migrate ollama provider to v2
 911 |   - Closes #1223, #1013, #1161, #1174
 912 | 
 913 | - [#1262](https://github.com/eyaltoledano/claude-task-master/pull/1262) [`738ec51`](https://github.com/eyaltoledano/claude-task-master/commit/738ec51c049a295a12839b2dfddaf05e23b8fede) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Migrate AI services to use generateObject for structured data generation
 914 | 
 915 |   This update migrates all AI service calls from generateText to generateObject, ensuring more reliable and structured responses across all commands.
 916 | 
 917 |   ### Key Changes:
 918 |   - **Unified AI Service**: Replaced separate generateText implementations with a single generateObjectService that handles structured data generation
 919 |   - **JSON Mode Support**: Added proper JSON mode configuration for providers that support it (OpenAI, Anthropic, Google, Groq)
 920 |   - **Schema Validation**: Integrated Zod schemas for all AI-generated content with automatic validation
 921 |   - **Provider Compatibility**: Maintained compatibility with all existing providers while leveraging their native structured output capabilities
 922 |   - **Improved Reliability**: Structured output generation reduces parsing errors and ensures consistent data formats
 923 | 
 924 |   ### Technical Improvements:
 925 |   - Centralized provider configuration in `ai-providers-unified.js`
 926 |   - Added `generateObject` support detection for each provider
 927 |   - Implemented proper error handling for schema validation failures
 928 |   - Maintained backward compatibility with existing prompt structures
 929 | 
 930 |   ### Bug Fixes:
 931 |   - Fixed subtask ID numbering issue where AI was generating inconsistent IDs (101-105, 601-603) instead of sequential numbering (1, 2, 3...)
 932 |   - Enhanced prompt instructions to enforce proper ID generation patterns
 933 |   - Ensured subtasks display correctly as X.1, X.2, X.3 format
 934 | 
 935 |   This migration improves the reliability and consistency of AI-generated content throughout the Task Master application.
 936 | 
 937 | - [#1112](https://github.com/eyaltoledano/claude-task-master/pull/1112) [`d67b81d`](https://github.com/eyaltoledano/claude-task-master/commit/d67b81d25ddd927fabb6f5deb368e8993519c541) Thanks [@olssonsten](https://github.com/olssonsten)! - Enhanced Roo Code profile with MCP timeout configuration for improved reliability during long-running AI operations. The Roo profile now automatically configures a 300-second timeout for MCP server operations, preventing timeouts during complex tasks like `parse-prd`, `expand-all`, `analyze-complexity`, and `research` operations. This change also replaces static MCP configuration files with programmatic generation for better maintainability.
 938 | 
 939 |   **What's New:**
 940 |   - 300-second timeout for MCP operations (up from default 60 seconds)
 941 |   - Programmatic MCP configuration generation (replaces static asset files)
 942 |   - Enhanced reliability for AI-powered operations
 943 |   - Consistent with other AI coding assistant profiles
 944 | 
 945 |   **Migration:** No user action required - existing Roo Code installations will automatically receive the enhanced MCP configuration on next initialization.
 946 | 
 947 | - [#1246](https://github.com/eyaltoledano/claude-task-master/pull/1246) [`986ac11`](https://github.com/eyaltoledano/claude-task-master/commit/986ac117aee00bcd3e6830a0f76e1ad6d10e0bca) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Upgrade grok-cli ai provider to ai sdk v5
 948 | 
 949 | ### Patch Changes
 950 | 
 951 | - [#1235](https://github.com/eyaltoledano/claude-task-master/pull/1235) [`aaacc3d`](https://github.com/eyaltoledano/claude-task-master/commit/aaacc3dae36247b4de72b2d2697f49e5df6d01e3) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve `analyze-complexity` cli docs and `--research` flag documentation
 952 | 
 953 | - [#1251](https://github.com/eyaltoledano/claude-task-master/pull/1251) [`0b2c696`](https://github.com/eyaltoledano/claude-task-master/commit/0b2c6967c4605c33a100cff16f6ce8ff09ad06f0) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Change parent task back to "pending" when all subtasks are in "pending" state
 954 | 
 955 | - [#1172](https://github.com/eyaltoledano/claude-task-master/pull/1172) [`b5fe723`](https://github.com/eyaltoledano/claude-task-master/commit/b5fe723f8ead928e9f2dbde13b833ee70ac3382d) Thanks [@jujax](https://github.com/jujax)! - Fix Claude Code settings validation for pathToClaudeCodeExecutable
 956 | 
 957 | - [#1192](https://github.com/eyaltoledano/claude-task-master/pull/1192) [`2b69936`](https://github.com/eyaltoledano/claude-task-master/commit/2b69936ee7b34346d6de5175af20e077359e2e2a) Thanks [@nukunga](https://github.com/nukunga)! - Fix sonar deep research model failing, should be called `sonar-deep-research`
 958 | 
 959 | - [#1270](https://github.com/eyaltoledano/claude-task-master/pull/1270) [`20004a3`](https://github.com/eyaltoledano/claude-task-master/commit/20004a39ea848f747e1ff48981bfe176554e4055) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix complexity score not showing for `task-master show` and `task-master list`
 960 |   - Added complexity score on "next task" when running `task-master list`
 961 |   - Added colors to complexity to reflect complexity (easy, medium, hard)
 962 | 
 963 | ## 0.27.3
 964 | 
 965 | ### Patch Changes
 966 | 
 967 | - [#1254](https://github.com/eyaltoledano/claude-task-master/pull/1254) [`af53525`](https://github.com/eyaltoledano/claude-task-master/commit/af53525cbc660a595b67d4bb90d906911c71f45d) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fixed issue where `tm show` command could not find subtasks using dotted notation IDs (e.g., '8.1').
 968 |   - The command now properly searches within parent task subtasks and returns the correct subtask information.
 969 | 
 970 | ## 0.27.2
 971 | 
 972 | ### Patch Changes
 973 | 
 974 | - [#1248](https://github.com/eyaltoledano/claude-task-master/pull/1248) [`044a7bf`](https://github.com/eyaltoledano/claude-task-master/commit/044a7bfc98049298177bc655cf341d7a8b6a0011) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix set-status for subtasks:
 975 |   - Parent tasks are now set as `done` when subtasks are all `done`
 976 |   - Parent tasks are now set as `in-progress` when at least one subtask is `in-progress` or `done`
 977 | 
 978 | ## 0.27.1
 979 | 
 980 | ### Patch Changes
 981 | 
 982 | - [#1232](https://github.com/eyaltoledano/claude-task-master/pull/1232) [`f487736`](https://github.com/eyaltoledano/claude-task-master/commit/f487736670ef8c484059f676293777eabb249c9e) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix module not found for new 0.27.0 release
 983 | 
 984 | - [#1233](https://github.com/eyaltoledano/claude-task-master/pull/1233) [`c911608`](https://github.com/eyaltoledano/claude-task-master/commit/c911608f60454253f4e024b57ca84e5a5a53f65c) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix Zed MCP configuration by adding required "source" property
 985 |   - Add "source": "custom" property to task-master-ai server in Zed settings.json
 986 | 
 987 | ## 0.27.1-rc.1
 988 | 
 989 | ### Patch Changes
 990 | 
 991 | - [#1233](https://github.com/eyaltoledano/claude-task-master/pull/1233) [`1a18794`](https://github.com/eyaltoledano/claude-task-master/commit/1a1879483b86c118a4e46c02cbf4acebfcf6bcf9) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - One last testing final final
 992 | 
 993 | ## 0.27.1-rc.0
 994 | 
 995 | ### Patch Changes
 996 | 
 997 | - [#1232](https://github.com/eyaltoledano/claude-task-master/pull/1232) [`f487736`](https://github.com/eyaltoledano/claude-task-master/commit/f487736670ef8c484059f676293777eabb249c9e) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix module not found for new 0.27.0 release
 998 | 
 999 | ## 0.27.0
1000 | 
1001 | ### Minor Changes
1002 | 
1003 | - [#1220](https://github.com/eyaltoledano/claude-task-master/pull/1220) [`4e12643`](https://github.com/eyaltoledano/claude-task-master/commit/4e126430a092fb54afb035514fb3d46115714f97) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - No longer need --package=task-master-ai in mcp server
1004 |   - A lot of users were having issues with Taskmaster and usually a simple fix was to remove --package from your mcp.json
1005 |   - we now bundle our whole package, so we no longer need the --package
1006 | 
1007 | - [#1200](https://github.com/eyaltoledano/claude-task-master/pull/1200) [`fce8414`](https://github.com/eyaltoledano/claude-task-master/commit/fce841490a9ebbf1801a42dd8a29397379cf1142) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add new `task-master start` command for automated task execution with Claude Code
1008 |   - You can now start working on tasks directly by running `task-master start <task-id>` which will automatically launch Claude Code with a comprehensive prompt containing all task details, implementation guidelines, and context.
1009 |   - `task-master start` will automatically detect next-task when no ID is provided.
1010 | 
1011 | - [#1200](https://github.com/eyaltoledano/claude-task-master/pull/1200) [`fce8414`](https://github.com/eyaltoledano/claude-task-master/commit/fce841490a9ebbf1801a42dd8a29397379cf1142) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Move from javascript to typescript, not a full refactor but we now have a typescript environment and are moving our javascript commands slowly into typescript
1012 | 
1013 | - [#1200](https://github.com/eyaltoledano/claude-task-master/pull/1200) [`fce8414`](https://github.com/eyaltoledano/claude-task-master/commit/fce841490a9ebbf1801a42dd8a29397379cf1142) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add grok-cli as a provider with full codebase context support. You can now use Grok models (grok-2, grok-3, grok-4, etc.) with Task Master for AI operations that have access to your entire codebase context, enabling more informed task generation and PRD parsing.
1014 | 
1015 |   ## Setup Instructions
1016 |   1. **Get your Grok API key** from [console.x.ai](https://console.x.ai)
1017 |   2. **Set the environment variable**:
1018 |      ```bash
1019 |      export GROK_CLI_API_KEY="your-api-key-here"
1020 |      ```
1021 |   3. **Configure Task Master to use Grok**:
1022 |      ```bash
1023 |      task-master models --set-main grok-beta
1024 |      # or
1025 |      task-master models --set-research grok-beta
1026 |      # or
1027 |      task-master models --set-fallback grok-beta
1028 |      ```
1029 | 
1030 |   ## Key Features
1031 |   - **Full codebase context**: Grok models can analyze your entire project when generating tasks or parsing PRDs
1032 |   - **xAI model access**: Support for latest Grok models (grok-2, grok-3, grok-4, etc.)
1033 |   - **Code-aware task generation**: Create more accurate and contextual tasks based on your actual codebase
1034 |   - **Intelligent PRD parsing**: Parse requirements with understanding of your existing code structure
1035 | 
1036 |   ## Available Models
1037 |   - `grok-beta` - Latest Grok model with codebase context
1038 |   - `grok-vision-beta` - Grok with vision capabilities and codebase context
1039 | 
1040 |   The Grok CLI provider integrates with xAI's Grok models via grok-cli and can also use the local Grok CLI configuration file (`~/.grok/user-settings.json`) if available.
1041 | 
1042 |   ## Credits
1043 | 
1044 |   Built using the [grok-cli](https://github.com/superagent-ai/grok-cli) by Superagent AI for seamless integration with xAI's Grok models.
1045 | 
1046 | - [#1225](https://github.com/eyaltoledano/claude-task-master/pull/1225) [`a621ff0`](https://github.com/eyaltoledano/claude-task-master/commit/a621ff05eafb51a147a9aabd7b37ddc0e45b0869) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve taskmaster ai provider defaults
1047 |   - moving from main anthropic 3.7 to anthropic sonnet 4
1048 |   - moving from fallback anthropic 3.5 to anthropic 3.7
1049 | 
1050 | - [#1217](https://github.com/eyaltoledano/claude-task-master/pull/1217) [`e6de285`](https://github.com/eyaltoledano/claude-task-master/commit/e6de285ceacb0a397e952a63435cd32a9c731515) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - @tm/cli: add auto-update functionality to every command
1051 | 
1052 | - [#1200](https://github.com/eyaltoledano/claude-task-master/pull/1200) [`fce8414`](https://github.com/eyaltoledano/claude-task-master/commit/fce841490a9ebbf1801a42dd8a29397379cf1142) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Fix Grok model configuration validation and update deprecated Claude fallback model. Grok models now properly support their full 131K token capacity, and the fallback model has been upgraded to Claude Sonnet 4 for better performance and future compatibility.
1053 | 
1054 | ## 0.27.0-rc.2
1055 | 
1056 | ### Minor Changes
1057 | 
1058 | - [#1217](https://github.com/eyaltoledano/claude-task-master/pull/1217) [`e6de285`](https://github.com/eyaltoledano/claude-task-master/commit/e6de285ceacb0a397e952a63435cd32a9c731515) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - @tm/cli: add auto-update functionality to every command
1059 | 
1060 | ## 0.27.0-rc.1
1061 | 
1062 | ### Minor Changes
1063 | 
1064 | - [`255b9f0`](https://github.com/eyaltoledano/claude-task-master/commit/255b9f0334555b0063280abde701445cd62fa11b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Testing one more pre-release iteration
1065 | 
1066 | ## 0.27.0-rc.0
1067 | 
1068 | ### Minor Changes
1069 | 
1070 | - [#1213](https://github.com/eyaltoledano/claude-task-master/pull/1213) [`137ef36`](https://github.com/eyaltoledano/claude-task-master/commit/137ef362789a9cdfdb1925e35e0438c1fa6c69ee) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Test out the RC
1071 | 
1072 | ### Patch Changes
1073 | 
1074 | - Updated dependencies [[`137ef36`](https://github.com/eyaltoledano/claude-task-master/commit/137ef362789a9cdfdb1925e35e0438c1fa6c69ee)]:
1075 |   - @tm/[email protected]
1076 | 
1077 | ## 0.26.0
1078 | 
1079 | ### Minor Changes
1080 | 
1081 | - [#1133](https://github.com/eyaltoledano/claude-task-master/pull/1133) [`df26c65`](https://github.com/eyaltoledano/claude-task-master/commit/df26c65632000874a73504963b08f18c46283144) Thanks [@neonwatty](https://github.com/neonwatty)! - Restore Taskmaster claude-code commands and move clear commands under /remove to avoid collision with the claude-code /clear command.
1082 | 
1083 | - [#1163](https://github.com/eyaltoledano/claude-task-master/pull/1163) [`37af0f1`](https://github.com/eyaltoledano/claude-task-master/commit/37af0f191227a68d119b7f89a377bf932ee3ac66) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Enhanced Gemini CLI provider with codebase-aware task generation
1084 | 
1085 |   Added automatic codebase analysis for Gemini CLI provider in parse-prd, and analyze-complexity, add-task, udpate-task, update, update-subtask commands
1086 |   When using Gemini CLI as the AI provider, Task Master now instructs the AI to analyze the project structure, existing implementations, and patterns before generating tasks or subtasks
1087 |   Tasks and subtasks generated by Claude Code are now informed by actual codebase analysis, resulting in more accurate and contextual outputs
1088 | 
1089 | - [#1165](https://github.com/eyaltoledano/claude-task-master/pull/1165) [`c4f92f6`](https://github.com/eyaltoledano/claude-task-master/commit/c4f92f6a0aee3435c56eb8d27d9aa9204284833e) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add configurable codebase analysis feature flag with multiple configuration sources
1090 | 
1091 |   Users can now control whether codebase analysis features (Claude Code and Gemini CLI integration) are enabled through environment variables, MCP configuration, or project config files.
1092 | 
1093 |   Priority order: .env > MCP session env > .taskmaster/config.json.
1094 | 
1095 |   Set `TASKMASTER_ENABLE_CODEBASE_ANALYSIS=false` in `.env` to disable codebase analysis prompts and tool integration.
1096 | 
1097 | - [#1135](https://github.com/eyaltoledano/claude-task-master/pull/1135) [`8783708`](https://github.com/eyaltoledano/claude-task-master/commit/8783708e5e3389890a78fcf685d3da0580e73b3f) Thanks [@mm-parthy](https://github.com/mm-parthy)! - feat(move): improve cross-tag move UX and safety
1098 |   - CLI: print "Next Steps" tips after cross-tag moves that used --ignore-dependencies (validate/fix guidance)
1099 |   - CLI: show dedicated help block on ID collisions (destination tag already has the ID)
1100 |   - Core: add structured suggestions to TASK_ALREADY_EXISTS errors
1101 |   - MCP: map ID collision errors to TASK_ALREADY_EXISTS and include suggestions
1102 |   - Tests: cover MCP options, error suggestions, CLI tips printing, and integration error payload suggestions
1103 | 
1104 |   ***
1105 | 
1106 | - [#1162](https://github.com/eyaltoledano/claude-task-master/pull/1162) [`4dad2fd`](https://github.com/eyaltoledano/claude-task-master/commit/4dad2fd613ceac56a65ae9d3c1c03092b8860ac9) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Enhanced Claude Code and Google CLI integration with automatic codebase analysis for task operations
1107 | 
1108 |   When using Claude Code as the AI provider, task management commands now automatically analyze your codebase before generating or updating tasks. This provides more accurate, context-aware implementation details that align with your project's existing architecture and patterns.
1109 | 
1110 |   Commands contextualised:
1111 |   - add-task
1112 |   - update-subtask
1113 |   - update-task
1114 |   - update
1115 | 
1116 | ### Patch Changes
1117 | 
1118 | - [#1135](https://github.com/eyaltoledano/claude-task-master/pull/1135) [`8783708`](https://github.com/eyaltoledano/claude-task-master/commit/8783708e5e3389890a78fcf685d3da0580e73b3f) Thanks [@mm-parthy](https://github.com/mm-parthy)! - docs(move): clarify cross-tag move docs; deprecate "force"; add explicit --with-dependencies/--ignore-dependencies examples
1119 | 
1120 | ## 0.26.0-rc.1
1121 | 
1122 | ### Minor Changes
1123 | 
1124 | - [#1165](https://github.com/eyaltoledano/claude-task-master/pull/1165) [`c4f92f6`](https://github.com/eyaltoledano/claude-task-master/commit/c4f92f6a0aee3435c56eb8d27d9aa9204284833e) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add configurable codebase analysis feature flag with multiple configuration sources
1125 | 
1126 |   Users can now control whether codebase analysis features (Claude Code and Gemini CLI integration) are enabled through environment variables, MCP configuration, or project config files.
1127 | 
1128 |   Priority order: .env > MCP session env > .taskmaster/config.json.
1129 | 
1130 |   Set `TASKMASTER_ENABLE_CODEBASE_ANALYSIS=false` in `.env` to disable codebase analysis prompts and tool integration.
1131 | 
1132 | ## 0.26.0-rc.0
1133 | 
1134 | ### Minor Changes
1135 | 
1136 | - [#1163](https://github.com/eyaltoledano/claude-task-master/pull/1163) [`37af0f1`](https://github.com/eyaltoledano/claude-task-master/commit/37af0f191227a68d119b7f89a377bf932ee3ac66) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Enhanced Gemini CLI provider with codebase-aware task generation
1137 | 
1138 |   Added automatic codebase analysis for Gemini CLI provider in parse-prd, and analyze-complexity, add-task, udpate-task, update, update-subtask commands
1139 |   When using Gemini CLI as the AI provider, Task Master now instructs the AI to analyze the project structure, existing implementations, and patterns before generating tasks or subtasks
1140 |   Tasks and subtasks generated by Claude Code are now informed by actual codebase analysis, resulting in more accurate and contextual outputs
1141 | 
1142 | - [#1135](https://github.com/eyaltoledano/claude-task-master/pull/1135) [`8783708`](https://github.com/eyaltoledano/claude-task-master/commit/8783708e5e3389890a78fcf685d3da0580e73b3f) Thanks [@mm-parthy](https://github.com/mm-parthy)! - feat(move): improve cross-tag move UX and safety
1143 |   - CLI: print "Next Steps" tips after cross-tag moves that used --ignore-dependencies (validate/fix guidance)
1144 |   - CLI: show dedicated help block on ID collisions (destination tag already has the ID)
1145 |   - Core: add structured suggestions to TASK_ALREADY_EXISTS errors
1146 |   - MCP: map ID collision errors to TASK_ALREADY_EXISTS and include suggestions
1147 |   - Tests: cover MCP options, error suggestions, CLI tips printing, and integration error payload suggestions
1148 | 
1149 |   ***
1150 | 
1151 | - [#1162](https://github.com/eyaltoledano/claude-task-master/pull/1162) [`4dad2fd`](https://github.com/eyaltoledano/claude-task-master/commit/4dad2fd613ceac56a65ae9d3c1c03092b8860ac9) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Enhanced Claude Code and Google CLI integration with automatic codebase analysis for task operations
1152 | 
1153 |   When using Claude Code as the AI provider, task management commands now automatically analyze your codebase before generating or updating tasks. This provides more accurate, context-aware implementation details that align with your project's existing architecture and patterns.
1154 | 
1155 |   Commands contextualised:
1156 |   - add-task
1157 |   - update-subtask
1158 |   - update-task
1159 |   - update
1160 | 
1161 | ### Patch Changes
1162 | 
1163 | - [#1135](https://github.com/eyaltoledano/claude-task-master/pull/1135) [`8783708`](https://github.com/eyaltoledano/claude-task-master/commit/8783708e5e3389890a78fcf685d3da0580e73b3f) Thanks [@mm-parthy](https://github.com/mm-parthy)! - docs(move): clarify cross-tag move docs; deprecate "force"; add explicit --with-dependencies/--ignore-dependencies examples
1164 | 
1165 | ## 0.25.1
1166 | 
1167 | ### Patch Changes
1168 | 
1169 | - [#1152](https://github.com/eyaltoledano/claude-task-master/pull/1152) [`8933557`](https://github.com/eyaltoledano/claude-task-master/commit/89335578ffffc65504b2055c0c85aa7521e5e79b) Thanks [@ben-vargas](https://github.com/ben-vargas)! - fix(claude-code): prevent crash/hang when the optional `@anthropic-ai/claude-code` SDK is missing by guarding `AbortError instanceof` checks and adding explicit SDK presence checks in `doGenerate`/`doStream`. Also bump the optional dependency to `^1.0.88` for improved export consistency.
1170 | 
1171 |   Related to JSON truncation handling in #920; this change addresses a separate error-path crash reported in #1142.
1172 | 
1173 | - [#1151](https://github.com/eyaltoledano/claude-task-master/pull/1151) [`db720a9`](https://github.com/eyaltoledano/claude-task-master/commit/db720a954d390bb44838cd021b8813dde8f3d8de) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Temporarily disable streaming for improved model compatibility - will be re-enabled in upcoming release
1174 | 
1175 | ## 0.25.0
1176 | 
1177 | ### Minor Changes
1178 | 
1179 | - [#1088](https://github.com/eyaltoledano/claude-task-master/pull/1088) [`04e11b5`](https://github.com/eyaltoledano/claude-task-master/commit/04e11b5e828597c0ba5b82ca7d5fb6f933e4f1e8) Thanks [@mm-parthy](https://github.com/mm-parthy)! - Add cross-tag task movement functionality for organizing tasks across different contexts.
1180 | 
1181 |   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.
1182 | 
1183 |   ## CLI Usage Examples
1184 | 
1185 |   Move a single task from one tag to another:
1186 | 
1187 |   ```bash
1188 |   # Move task 5 from backlog tag to in-progress tag
1189 |   task-master move --from=5 --from-tag=backlog --to-tag=feature-1
1190 | 
1191 |   # Move task with its dependencies
1192 |   task-master move --from=5 --from-tag=backlog --to-tag=feature-2 --with-dependencies
1193 | 
1194 |   # Move task without checking dependencies
1195 |   task-master move --from=5 --from-tag=backlog --to-tag=bug-3 --ignore-dependencies
1196 |   ```
1197 | 
1198 |   Move multiple tasks at once:
1199 | 
1200 |   ```bash
1201 |   # Move multiple tasks between tags
1202 |   task-master move --from=5,6,7 --from-tag=backlog --to-tag=bug-4 --with-dependencies
1203 |   ```
1204 | 
1205 | - [#1040](https://github.com/eyaltoledano/claude-task-master/pull/1040) [`fc47714`](https://github.com/eyaltoledano/claude-task-master/commit/fc477143400fd11d953727bf1b4277af5ad308d1) Thanks [@DomVidja](https://github.com/DomVidja)! - "Add Kilo Code profile integration with custom modes and MCP configuration"
1206 | 
1207 | - [#1054](https://github.com/eyaltoledano/claude-task-master/pull/1054) [`782728f`](https://github.com/eyaltoledano/claude-task-master/commit/782728ff95aa2e3b766d48273b57f6c6753e8573) Thanks [@martincik](https://github.com/martincik)! - Add compact mode --compact / -c flag to the `tm list` CLI command
1208 |   - 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.
1209 |     - Git-style format: ID STATUS TITLE (PRIORITY) → DEPS
1210 |     - Color-coded status, priority, and dependencies
1211 |     - Smart title truncation and dependency abbreviation
1212 |     - Subtask support with indentation
1213 |     - Full backward compatibility with existing list options
1214 | 
1215 | - [#1048](https://github.com/eyaltoledano/claude-task-master/pull/1048) [`e3ed4d7`](https://github.com/eyaltoledano/claude-task-master/commit/e3ed4d7c14b56894d7da675eb2b757423bea8f9d) Thanks [@joedanz](https://github.com/joedanz)! - Add CLI & MCP progress tracking for parse-prd command.
1216 | 
1217 | - [#1124](https://github.com/eyaltoledano/claude-task-master/pull/1124) [`95640dc`](https://github.com/eyaltoledano/claude-task-master/commit/95640dcde87ce7879858c0a951399fb49f3b6397) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add support for ollama `gpt-oss:20b` and `gpt-oss:120b`
1218 | 
1219 | - [#1123](https://github.com/eyaltoledano/claude-task-master/pull/1123) [`311b243`](https://github.com/eyaltoledano/claude-task-master/commit/311b2433e23c771c8d3a4d3f5ac577302b8321e5) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Remove `clear` Taskmaster claude code commands since they were too close to the claude-code clear command
1220 | 
1221 | ### Patch Changes
1222 | 
1223 | - [#1131](https://github.com/eyaltoledano/claude-task-master/pull/1131) [`3dee60d`](https://github.com/eyaltoledano/claude-task-master/commit/3dee60dc3d566e3cff650accb30f994b8bb3a15e) Thanks [@joedanz](https://github.com/joedanz)! - Update Cursor one-click install link to new URL format
1224 | 
1225 | - [#1088](https://github.com/eyaltoledano/claude-task-master/pull/1088) [`04e11b5`](https://github.com/eyaltoledano/claude-task-master/commit/04e11b5e828597c0ba5b82ca7d5fb6f933e4f1e8) Thanks [@mm-parthy](https://github.com/mm-parthy)! - Fix `add-tag --from-branch` command error where `projectRoot` was not properly referenced
1226 | 
1227 |   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.
1228 | 
1229 | ## 0.25.0-rc.0
1230 | 
1231 | ### Minor Changes
1232 | 
1233 | - [#1088](https://github.com/eyaltoledano/claude-task-master/pull/1088) [`04e11b5`](https://github.com/eyaltoledano/claude-task-master/commit/04e11b5e828597c0ba5b82ca7d5fb6f933e4f1e8) Thanks [@mm-parthy](https://github.com/mm-parthy)! - Add cross-tag task movement functionality for organizing tasks across different contexts.
1234 | 
1235 |   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.
1236 | 
1237 |   ## CLI Usage Examples
1238 | 
1239 |   Move a single task from one tag to another:
1240 | 
1241 |   ```bash
1242 |   # Move task 5 from backlog tag to in-progress tag
1243 |   task-master move --from=5 --from-tag=backlog --to-tag=feature-1
1244 | 
1245 |   # Move task with its dependencies
1246 |   task-master move --from=5 --from-tag=backlog --to-tag=feature-2 --with-dependencies
1247 | 
1248 |   # Move task without checking dependencies
1249 |   task-master move --from=5 --from-tag=backlog --to-tag=bug-3 --ignore-dependencies
1250 |   ```
1251 | 
1252 |   Move multiple tasks at once:
1253 | 
1254 |   ```bash
1255 |   # Move multiple tasks between tags
1256 |   task-master move --from=5,6,7 --from-tag=backlog --to-tag=bug-4 --with-dependencies
1257 |   ```
1258 | 
1259 | - [#1040](https://github.com/eyaltoledano/claude-task-master/pull/1040) [`fc47714`](https://github.com/eyaltoledano/claude-task-master/commit/fc477143400fd11d953727bf1b4277af5ad308d1) Thanks [@DomVidja](https://github.com/DomVidja)! - "Add Kilo Code profile integration with custom modes and MCP configuration"
1260 | 
1261 | - [#1054](https://github.com/eyaltoledano/claude-task-master/pull/1054) [`782728f`](https://github.com/eyaltoledano/claude-task-master/commit/782728ff95aa2e3b766d48273b57f6c6753e8573) Thanks [@martincik](https://github.com/martincik)! - Add compact mode --compact / -c flag to the `tm list` CLI command
1262 |   - 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.
1263 |     - Git-style format: ID STATUS TITLE (PRIORITY) → DEPS
1264 |     - Color-coded status, priority, and dependencies
1265 |     - Smart title truncation and dependency abbreviation
1266 |     - Subtask support with indentation
1267 |     - Full backward compatibility with existing list options
1268 | 
1269 | - [#1048](https://github.com/eyaltoledano/claude-task-master/pull/1048) [`e3ed4d7`](https://github.com/eyaltoledano/claude-task-master/commit/e3ed4d7c14b56894d7da675eb2b757423bea8f9d) Thanks [@joedanz](https://github.com/joedanz)! - Add CLI & MCP progress tracking for parse-prd command.
1270 | 
1271 | - [#1124](https://github.com/eyaltoledano/claude-task-master/pull/1124) [`95640dc`](https://github.com/eyaltoledano/claude-task-master/commit/95640dcde87ce7879858c0a951399fb49f3b6397) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add support for ollama `gpt-oss:20b` and `gpt-oss:120b`
1272 | 
1273 | - [#1123](https://github.com/eyaltoledano/claude-task-master/pull/1123) [`311b243`](https://github.com/eyaltoledano/claude-task-master/commit/311b2433e23c771c8d3a4d3f5ac577302b8321e5) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Remove `clear` Taskmaster claude code commands since they were too close to the claude-code clear command
1274 | 
1275 | ### Patch Changes
1276 | 
1277 | - [#1131](https://github.com/eyaltoledano/claude-task-master/pull/1131) [`3dee60d`](https://github.com/eyaltoledano/claude-task-master/commit/3dee60dc3d566e3cff650accb30f994b8bb3a15e) Thanks [@joedanz](https://github.com/joedanz)! - Update Cursor one-click install link to new URL format
1278 | 
1279 | - [#1088](https://github.com/eyaltoledano/claude-task-master/pull/1088) [`04e11b5`](https://github.com/eyaltoledano/claude-task-master/commit/04e11b5e828597c0ba5b82ca7d5fb6f933e4f1e8) Thanks [@mm-parthy](https://github.com/mm-parthy)! - Fix `add-tag --from-branch` command error where `projectRoot` was not properly referenced
1280 | 
1281 |   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.
1282 | 
1283 | ## 0.24.0
1284 | 
1285 | ### Minor Changes
1286 | 
1287 | - [#1098](https://github.com/eyaltoledano/claude-task-master/pull/1098) [`36468f3`](https://github.com/eyaltoledano/claude-task-master/commit/36468f3c93faf4035a5c442ccbc501077f3440f1) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Enhanced Claude Code provider with codebase-aware task generation
1288 |   - Added automatic codebase analysis for Claude Code provider in `parse-prd`, `expand-task`, and `analyze-complexity` commands
1289 |   - When using Claude Code as the AI provider, Task Master now instructs the AI to analyze the project structure, existing implementations, and patterns before generating tasks or subtasks
1290 |   - Tasks and subtasks generated by Claude Code are now informed by actual codebase analysis, resulting in more accurate and contextual outputs
1291 | 
1292 | - [#1105](https://github.com/eyaltoledano/claude-task-master/pull/1105) [`75c514c`](https://github.com/eyaltoledano/claude-task-master/commit/75c514cf5b2ca47f95c0ad7fa92654a4f2a6be4b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add GPT-5 support with proper parameter handling
1293 |   - Added GPT-5 model to supported models configuration with SWE score of 0.749
1294 | 
1295 | - [#1091](https://github.com/eyaltoledano/claude-task-master/pull/1091) [`4bb6370`](https://github.com/eyaltoledano/claude-task-master/commit/4bb63706b80c28d1b2d782ba868a725326f916c7) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add Claude Code subagent support with task-orchestrator, task-executor, and task-checker
1296 | 
1297 |   ## New Claude Code Agents
1298 | 
1299 |   Added specialized agents for Claude Code users to enable parallel task execution, intelligent task orchestration, and quality assurance:
1300 | 
1301 |   ### task-orchestrator
1302 | 
1303 |   Coordinates and manages the execution of Task Master tasks with intelligent dependency analysis:
1304 |   - Analyzes task dependencies to identify parallelizable work
1305 |   - Deploys multiple task-executor agents for concurrent execution
1306 |   - Monitors task completion and updates the dependency graph
1307 |   - Automatically identifies and starts newly unblocked tasks
1308 | 
1309 |   ### task-executor
1310 | 
1311 |   Handles the actual implementation of individual tasks:
1312 |   - Executes specific tasks identified by the orchestrator
1313 |   - Works on concrete implementation rather than planning
1314 |   - Updates task status and logs progress
1315 |   - Can work in parallel with other executors on independent tasks
1316 | 
1317 |   ### task-checker
1318 | 
1319 |   Verifies that completed tasks meet their specifications:
1320 |   - Reviews tasks marked as 'review' status
1321 |   - Validates implementation against requirements
1322 |   - Runs tests and checks for best practices
1323 |   - Ensures quality before marking tasks as 'done'
1324 | 
1325 |   ## Installation
1326 | 
1327 |   When using the Claude profile (`task-master rules add claude`), the agents are automatically installed to `.claude/agents/` directory.
1328 | 
1329 |   ## Usage Example
1330 | 
1331 |   ```bash
1332 |   # In Claude Code, after initializing a project with tasks:
1333 | 
1334 |   # Use task-orchestrator to analyze and coordinate work
1335 |   # The orchestrator will:
1336 |   # 1. Check task dependencies
1337 |   # 2. Identify tasks that can run in parallel
1338 |   # 3. Deploy executors for available work
1339 |   # 4. Monitor progress and deploy new executors as tasks complete
1340 | 
1341 |   # Use task-executor for specific task implementation
1342 |   # When the orchestrator identifies task 2.3 needs work:
1343 |   # The executor will implement that specific task
1344 |   ```
1345 | 
1346 |   ## Benefits
1347 |   - **Parallel Execution**: Multiple independent tasks can be worked on simultaneously
1348 |   - **Intelligent Scheduling**: Orchestrator understands dependencies and optimizes execution order
1349 |   - **Separation of Concerns**: Planning (orchestrator) is separated from execution (executor)
1350 |   - **Progress Tracking**: Real-time updates as tasks are completed
1351 |   - **Automatic Progression**: As tasks complete, newly unblocked tasks are automatically started
1352 | 
1353 | ### Patch Changes
1354 | 
1355 | - [#1094](https://github.com/eyaltoledano/claude-task-master/pull/1094) [`4357af3`](https://github.com/eyaltoledano/claude-task-master/commit/4357af3f13859d90bca8795215e5d5f1d94abde5) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix expand task generating unrelated generic subtasks
1356 | 
1357 |   Fixed an issue where `task-master expand` would generate generic authentication-related subtasks regardless of the parent task context when using complexity reports. The expansion now properly includes the parent task details alongside any expansion guidance.
1358 | 
1359 | - [#1079](https://github.com/eyaltoledano/claude-task-master/pull/1079) [`e495b2b`](https://github.com/eyaltoledano/claude-task-master/commit/e495b2b55950ee54c7d0f1817d8530e28bd79c05) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix scope-up/down prompts to include all required fields for better AI model compatibility
1360 |   - Added missing `priority` field to scope adjustment prompts to prevent validation errors with Claude-code and other models
1361 |   - Ensures generated JSON includes all fields required by the schema
1362 | 
1363 | - [#1079](https://github.com/eyaltoledano/claude-task-master/pull/1079) [`e495b2b`](https://github.com/eyaltoledano/claude-task-master/commit/e495b2b55950ee54c7d0f1817d8530e28bd79c05) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP scope-up/down tools not finding tasks
1364 |   - Fixed task ID parsing in MCP layer - now correctly converts string IDs to numbers
1365 |   - scope_up_task and scope_down_task MCP tools now work properly
1366 | 
1367 | - [#1079](https://github.com/eyaltoledano/claude-task-master/pull/1079) [`e495b2b`](https://github.com/eyaltoledano/claude-task-master/commit/e495b2b55950ee54c7d0f1817d8530e28bd79c05) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve AI provider compatibility for JSON generation
1368 |   - Fixed schema compatibility issues between Perplexity and OpenAI o3 models
1369 |   - Removed nullable/default modifiers from Zod schemas for broader compatibility
1370 |   - Added automatic JSON repair for malformed AI responses (handles cases like missing array values)
1371 |   - Perplexity now uses JSON mode for more reliable structured output
1372 |   - Post-processing handles default values separately from schema validation
1373 | 
1374 | ## 0.24.0-rc.2
1375 | 
1376 | ### Minor Changes
1377 | 
1378 | - [#1105](https://github.com/eyaltoledano/claude-task-master/pull/1105) [`75c514c`](https://github.com/eyaltoledano/claude-task-master/commit/75c514cf5b2ca47f95c0ad7fa92654a4f2a6be4b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add GPT-5 support with proper parameter handling
1379 |   - Added GPT-5 model to supported models configuration with SWE score of 0.749
1380 | 
1381 | ## 0.24.0-rc.1
1382 | 
1383 | ### Minor Changes
1384 | 
1385 | - [#1093](https://github.com/eyaltoledano/claude-task-master/pull/1093) [`36468f3`](https://github.com/eyaltoledano/claude-task-master/commit/36468f3c93faf4035a5c442ccbc501077f3440f1) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Enhanced Claude Code provider with codebase-aware task generation
1386 |   - Added automatic codebase analysis for Claude Code provider in `parse-prd`, `expand-task`, and `analyze-complexity` commands
1387 |   - When using Claude Code as the AI provider, Task Master now instructs the AI to analyze the project structure, existing implementations, and patterns before generating tasks or subtasks
1388 |   - Tasks and subtasks generated by Claude Code are now informed by actual codebase analysis, resulting in more accurate and contextual outputs
1389 | 
1390 | - [#1091](https://github.com/eyaltoledano/claude-task-master/pull/1091) [`4bb6370`](https://github.com/eyaltoledano/claude-task-master/commit/4bb63706b80c28d1b2d782ba868a725326f916c7) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add Claude Code subagent support with task-orchestrator, task-executor, and task-checker
1391 | 
1392 |   ## New Claude Code Agents
1393 | 
1394 |   Added specialized agents for Claude Code users to enable parallel task execution, intelligent task orchestration, and quality assurance:
1395 | 
1396 |   ### task-orchestrator
1397 | 
1398 |   Coordinates and manages the execution of Task Master tasks with intelligent dependency analysis:
1399 |   - Analyzes task dependencies to identify parallelizable work
1400 |   - Deploys multiple task-executor agents for concurrent execution
1401 |   - Monitors task completion and updates the dependency graph
1402 |   - Automatically identifies and starts newly unblocked tasks
1403 | 
1404 |   ### task-executor
1405 | 
1406 |   Handles the actual implementation of individual tasks:
1407 |   - Executes specific tasks identified by the orchestrator
1408 |   - Works on concrete implementation rather than planning
1409 |   - Updates task status and logs progress
1410 |   - Can work in parallel with other executors on independent tasks
1411 | 
1412 |   ### task-checker
1413 | 
1414 |   Verifies that completed tasks meet their specifications:
1415 |   - Reviews tasks marked as 'review' status
1416 |   - Validates implementation against requirements
1417 |   - Runs tests and checks for best practices
1418 |   - Ensures quality before marking tasks as 'done'
1419 | 
1420 |   ## Installation
1421 | 
1422 |   When using the Claude profile (`task-master rules add claude`), the agents are automatically installed to `.claude/agents/` directory.
1423 | 
1424 |   ## Usage Example
1425 | 
1426 |   ```bash
1427 |   # In Claude Code, after initializing a project with tasks:
1428 | 
1429 |   # Use task-orchestrator to analyze and coordinate work
1430 |   # The orchestrator will:
1431 |   # 1. Check task dependencies
1432 |   # 2. Identify tasks that can run in parallel
1433 |   # 3. Deploy executors for available work
1434 |   # 4. Monitor progress and deploy new executors as tasks complete
1435 | 
1436 |   # Use task-executor for specific task implementation
1437 |   # When the orchestrator identifies task 2.3 needs work:
1438 |   # The executor will implement that specific task
1439 |   ```
1440 | 
1441 |   ## Benefits
1442 |   - **Parallel Execution**: Multiple independent tasks can be worked on simultaneously
1443 |   - **Intelligent Scheduling**: Orchestrator understands dependencies and optimizes execution order
1444 |   - **Separation of Concerns**: Planning (orchestrator) is separated from execution (executor)
1445 |   - **Progress Tracking**: Real-time updates as tasks are completed
1446 |   - **Automatic Progression**: As tasks complete, newly unblocked tasks are automatically started
1447 | 
1448 | ### Patch Changes
1449 | 
1450 | - [#1094](https://github.com/eyaltoledano/claude-task-master/pull/1094) [`4357af3`](https://github.com/eyaltoledano/claude-task-master/commit/4357af3f13859d90bca8795215e5d5f1d94abde5) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix expand task generating unrelated generic subtasks
1451 | 
1452 |   Fixed an issue where `task-master expand` would generate generic authentication-related subtasks regardless of the parent task context when using complexity reports. The expansion now properly includes the parent task details alongside any expansion guidance.
1453 | 
1454 | ## 0.23.1-rc.0
1455 | 
1456 | ### Patch Changes
1457 | 
1458 | - [#1079](https://github.com/eyaltoledano/claude-task-master/pull/1079) [`e495b2b`](https://github.com/eyaltoledano/claude-task-master/commit/e495b2b55950ee54c7d0f1817d8530e28bd79c05) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix scope-up/down prompts to include all required fields for better AI model compatibility
1459 |   - Added missing `priority` field to scope adjustment prompts to prevent validation errors with Claude-code and other models
1460 |   - Ensures generated JSON includes all fields required by the schema
1461 | 
1462 | - [#1079](https://github.com/eyaltoledano/claude-task-master/pull/1079) [`e495b2b`](https://github.com/eyaltoledano/claude-task-master/commit/e495b2b55950ee54c7d0f1817d8530e28bd79c05) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP scope-up/down tools not finding tasks
1463 |   - Fixed task ID parsing in MCP layer - now correctly converts string IDs to numbers
1464 |   - scope_up_task and scope_down_task MCP tools now work properly
1465 | 
1466 | - [#1079](https://github.com/eyaltoledano/claude-task-master/pull/1079) [`e495b2b`](https://github.com/eyaltoledano/claude-task-master/commit/e495b2b55950ee54c7d0f1817d8530e28bd79c05) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve AI provider compatibility for JSON generation
1467 |   - Fixed schema compatibility issues between Perplexity and OpenAI o3 models
1468 |   - Removed nullable/default modifiers from Zod schemas for broader compatibility
1469 |   - Added automatic JSON repair for malformed AI responses (handles cases like missing array values)
1470 |   - Perplexity now uses JSON mode for more reliable structured output
1471 |   - Post-processing handles default values separately from schema validation
1472 | 
1473 | ## 0.23.0
1474 | 
1475 | ### Minor Changes
1476 | 
1477 | - [#1064](https://github.com/eyaltoledano/claude-task-master/pull/1064) [`53903f1`](https://github.com/eyaltoledano/claude-task-master/commit/53903f1e8eee23ac512eb13a6d81d8cbcfe658cb) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add new `scope-up` and `scope-down` commands for dynamic task complexity adjustment
1478 | 
1479 |   This release introduces two powerful new commands that allow you to dynamically adjust the complexity of your tasks and subtasks without recreating them from scratch.
1480 | 
1481 |   **New CLI Commands:**
1482 |   - `task-master scope-up` - Increase task complexity (add more detail, requirements, or implementation steps)
1483 |   - `task-master scope-down` - Decrease task complexity (simplify, remove unnecessary details, or streamline)
1484 | 
1485 |   **Key Features:**
1486 |   - **Multiple tasks**: Support comma-separated IDs to adjust multiple tasks at once (`--id=5,7,12`)
1487 |   - **Strength levels**: Choose adjustment intensity with `--strength=light|regular|heavy` (defaults to regular)
1488 |   - **Custom prompts**: Use `--prompt` flag to specify exactly how you want tasks adjusted
1489 |   - **MCP integration**: Available as `scope_up_task` and `scope_down_task` tools in Cursor and other MCP environments
1490 |   - **Smart context**: AI considers your project context and task dependencies when making adjustments
1491 | 
1492 |   **Usage Examples:**
1493 | 
1494 |   ```bash
1495 |   # Make a task more detailed
1496 |   task-master scope-up --id=5
1497 | 
1498 |   # Simplify multiple tasks with light touch
1499 |   task-master scope-down --id=10,11,12 --strength=light
1500 | 
1501 |   # Custom adjustment with specific instructions
1502 |   task-master scope-up --id=7 --prompt="Add more error handling and edge cases"
1503 |   ```
1504 | 
1505 |   **Why use this?**
1506 |   - **Iterative refinement**: Adjust task complexity as your understanding evolves
1507 |   - **Project phase adaptation**: Scale tasks up for implementation, down for planning
1508 |   - **Team coordination**: Adjust complexity based on team member experience levels
1509 |   - **Milestone alignment**: Fine-tune tasks to match project phase requirements
1510 | 
1511 |   Perfect for agile workflows where task requirements change as you learn more about the problem space.
1512 | 
1513 | ### Patch Changes
1514 | 
1515 | - [#1063](https://github.com/eyaltoledano/claude-task-master/pull/1063) [`2ae6e7e`](https://github.com/eyaltoledano/claude-task-master/commit/2ae6e7e6be3605c3c4d353f34666e54750dba973) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix for tasks not found when using string IDs
1516 | 
1517 | - [#1049](https://github.com/eyaltoledano/claude-task-master/pull/1049) [`45a14c3`](https://github.com/eyaltoledano/claude-task-master/commit/45a14c323d21071c15106335e89ad1f4a20976ab) Thanks [@ben-vargas](https://github.com/ben-vargas)! - Fix tag-specific complexity report detection in expand command
1518 | 
1519 |   The expand command now correctly finds and uses tag-specific complexity reports (e.g., `task-complexity-report_feature-xyz.json`) when operating in a tag context. Previously, it would always look for the generic `task-complexity-report.json` file due to a default value in the CLI option definition.
1520 | 
1521 | ## 0.23.0-rc.2
1522 | 
1523 | ### Minor Changes
1524 | 
1525 | - [#1064](https://github.com/eyaltoledano/claude-task-master/pull/1064) [`53903f1`](https://github.com/eyaltoledano/claude-task-master/commit/53903f1e8eee23ac512eb13a6d81d8cbcfe658cb) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add new `scope-up` and `scope-down` commands for dynamic task complexity adjustment
1526 | 
1527 |   This release introduces two powerful new commands that allow you to dynamically adjust the complexity of your tasks and subtasks without recreating them from scratch.
1528 | 
1529 |   **New CLI Commands:**
1530 |   - `task-master scope-up` - Increase task complexity (add more detail, requirements, or implementation steps)
1531 |   - `task-master scope-down` - Decrease task complexity (simplify, remove unnecessary details, or streamline)
1532 | 
1533 |   **Key Features:**
1534 |   - **Multiple tasks**: Support comma-separated IDs to adjust multiple tasks at once (`--id=5,7,12`)
1535 |   - **Strength levels**: Choose adjustment intensity with `--strength=light|regular|heavy` (defaults to regular)
1536 |   - **Custom prompts**: Use `--prompt` flag to specify exactly how you want tasks adjusted
1537 |   - **MCP integration**: Available as `scope_up_task` and `scope_down_task` tools in Cursor and other MCP environments
1538 |   - **Smart context**: AI considers your project context and task dependencies when making adjustments
1539 | 
1540 |   **Usage Examples:**
1541 | 
1542 |   ```bash
1543 |   # Make a task more detailed
1544 |   task-master scope-up --id=5
1545 | 
1546 |   # Simplify multiple tasks with light touch
1547 |   task-master scope-down --id=10,11,12 --strength=light
1548 | 
1549 |   # Custom adjustment with specific instructions
1550 |   task-master scope-up --id=7 --prompt="Add more error handling and edge cases"
1551 |   ```
1552 | 
1553 |   **Why use this?**
1554 |   - **Iterative refinement**: Adjust task complexity as your understanding evolves
1555 |   - **Project phase adaptation**: Scale tasks up for implementation, down for planning
1556 |   - **Team coordination**: Adjust complexity based on team member experience levels
1557 |   - **Milestone alignment**: Fine-tune tasks to match project phase requirements
1558 | 
1559 |   Perfect for agile workflows where task requirements change as you learn more about the problem space.
1560 | 
1561 | ## 0.22.1-rc.1
1562 | 
1563 | ### Patch Changes
1564 | 
1565 | - [#1069](https://github.com/eyaltoledano/claude-task-master/pull/1069) [`72ca68e`](https://github.com/eyaltoledano/claude-task-master/commit/72ca68edeb870ff7a3b0d2d632e09dae921dc16a) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add new `scope-up` and `scope-down` commands for dynamic task complexity adjustment
1566 | 
1567 |   This release introduces two powerful new commands that allow you to dynamically adjust the complexity of your tasks and subtasks without recreating them from scratch.
1568 | 
1569 |   **New CLI Commands:**
1570 |   - `task-master scope-up` - Increase task complexity (add more detail, requirements, or implementation steps)
1571 |   - `task-master scope-down` - Decrease task complexity (simplify, remove unnecessary details, or streamline)
1572 | 
1573 |   **Key Features:**
1574 |   - **Multiple tasks**: Support comma-separated IDs to adjust multiple tasks at once (`--id=5,7,12`)
1575 |   - **Strength levels**: Choose adjustment intensity with `--strength=light|regular|heavy` (defaults to regular)
1576 |   - **Custom prompts**: Use `--prompt` flag to specify exactly how you want tasks adjusted
1577 |   - **MCP integration**: Available as `scope_up_task` and `scope_down_task` tools in Cursor and other MCP environments
1578 |   - **Smart context**: AI considers your project context and task dependencies when making adjustments
1579 | 
1580 |   **Usage Examples:**
1581 | 
1582 |   ```bash
1583 |   # Make a task more detailed
1584 |   task-master scope-up --id=5
1585 | 
1586 |   # Simplify multiple tasks with light touch
1587 |   task-master scope-down --id=10,11,12 --strength=light
1588 | 
1589 |   # Custom adjustment with specific instructions
1590 |   task-master scope-up --id=7 --prompt="Add more error handling and edge cases"
1591 |   ```
1592 | 
1593 |   **Why use this?**
1594 |   - **Iterative refinement**: Adjust task complexity as your understanding evolves
1595 |   - **Project phase adaptation**: Scale tasks up for implementation, down for planning
1596 |   - **Team coordination**: Adjust complexity based on team member experience levels
1597 |   - **Milestone alignment**: Fine-tune tasks to match project phase requirements
1598 | 
1599 |   Perfect for agile workflows where task requirements change as you learn more about the problem space.
1600 | 
1601 | ## 0.22.1-rc.0
1602 | 
1603 | ### Patch Changes
1604 | 
1605 | - [#1063](https://github.com/eyaltoledano/claude-task-master/pull/1063) [`2ae6e7e`](https://github.com/eyaltoledano/claude-task-master/commit/2ae6e7e6be3605c3c4d353f34666e54750dba973) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix for tasks not found when using string IDs
1606 | 
1607 | - [#1049](https://github.com/eyaltoledano/claude-task-master/pull/1049) [`45a14c3`](https://github.com/eyaltoledano/claude-task-master/commit/45a14c323d21071c15106335e89ad1f4a20976ab) Thanks [@ben-vargas](https://github.com/ben-vargas)! - Fix tag-specific complexity report detection in expand command
1608 | 
1609 |   The expand command now correctly finds and uses tag-specific complexity reports (e.g., `task-complexity-report_feature-xyz.json`) when operating in a tag context. Previously, it would always look for the generic `task-complexity-report.json` file due to a default value in the CLI option definition.
1610 | 
1611 | ## 0.22.0
1612 | 
1613 | ### Minor Changes
1614 | 
1615 | - [#1043](https://github.com/eyaltoledano/claude-task-master/pull/1043) [`dc44ed9`](https://github.com/eyaltoledano/claude-task-master/commit/dc44ed9de8a57aca5d39d3a87565568bd0a82068) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Prompt to generate a complexity report when it is missing
1616 | 
1617 | - [#1032](https://github.com/eyaltoledano/claude-task-master/pull/1032) [`4423119`](https://github.com/eyaltoledano/claude-task-master/commit/4423119a5ec53958c9dffa8bf564da8be7a2827d) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add comprehensive Kiro IDE integration with autonomous task management hooks
1618 |   - **Kiro Profile**: Added full support for Kiro IDE with automatic installation of 7 Taskmaster agent hooks
1619 |   - **Hook-Driven Workflow**: Introduced natural language automation hooks that eliminate manual task status updates
1620 |   - **Automatic Hook Installation**: Hooks are now automatically copied to `.kiro/hooks/` when running `task-master rules add kiro`
1621 |   - **Language-Agnostic Support**: All hooks support multiple programming languages (JS, Python, Go, Rust, Java, etc.)
1622 |   - **Frontmatter Transformation**: Kiro rules use simplified `inclusion: always` format instead of Cursor's complex frontmatter
1623 |   - **Special Rule**: Added `taskmaster_hooks_workflow.md` that guides AI assistants to prefer hook-driven completion
1624 | 
1625 |   Key hooks included:
1626 |   - Task Dependency Auto-Progression: Automatically starts tasks when dependencies complete
1627 |   - Code Change Task Tracker: Updates task progress as you save files
1628 |   - Test Success Task Completer: Marks tasks done when tests pass
1629 |   - Daily Standup Assistant: Provides personalized task status summaries
1630 |   - PR Readiness Checker: Validates task completion before creating pull requests
1631 |   - Complexity Analyzer: Auto-expands complex tasks into manageable subtasks
1632 |   - Git Commit Task Linker: Links commits to tasks for better traceability
1633 | 
1634 |   This creates a truly autonomous development workflow where task management happens naturally as you code!
1635 | 
1636 | ### Patch Changes
1637 | 
1638 | - [#1033](https://github.com/eyaltoledano/claude-task-master/pull/1033) [`7b90568`](https://github.com/eyaltoledano/claude-task-master/commit/7b9056832653464f934c91c22997077065d738c4) Thanks [@ben-vargas](https://github.com/ben-vargas)! - Fix compatibility with @google/gemini-cli-core v0.1.12+ by updating ai-sdk-provider-gemini-cli to v0.1.1.
1639 | 
1640 | - [#1038](https://github.com/eyaltoledano/claude-task-master/pull/1038) [`77cc5e4`](https://github.com/eyaltoledano/claude-task-master/commit/77cc5e4537397642f2664f61940a101433ee6fb4) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix 'expand --all' and 'show' commands to correctly handle tag contexts for complexity reports and task display.
1641 | 
1642 | - [#1025](https://github.com/eyaltoledano/claude-task-master/pull/1025) [`8781794`](https://github.com/eyaltoledano/claude-task-master/commit/8781794c56d454697fc92c88a3925982d6b81205) Thanks [@joedanz](https://github.com/joedanz)! - Clean up remaining automatic task file generation calls
1643 | 
1644 | - [#1035](https://github.com/eyaltoledano/claude-task-master/pull/1035) [`fb7d588`](https://github.com/eyaltoledano/claude-task-master/commit/fb7d588137e8c53b0d0f54bd1dd8d387648583ee) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix max_tokens limits for OpenRouter and Groq models
1645 |   - Add special handling in config-manager.js for custom OpenRouter models to use a conservative default of 32,768 max_tokens
1646 |   - Update qwen/qwen-turbo model max_tokens from 1,000,000 to 32,768 to match OpenRouter's actual limits
1647 |   - Fix moonshotai/kimi-k2-instruct max_tokens to 16,384 to match Groq's actual limit (fixes #1028)
1648 |   - This prevents "maximum context length exceeded" errors when using OpenRouter models not in our supported models list
1649 | 
1650 | - [#1027](https://github.com/eyaltoledano/claude-task-master/pull/1027) [`6ae66b2`](https://github.com/eyaltoledano/claude-task-master/commit/6ae66b2afbfe911340fa25e0236c3db83deaa7eb) Thanks [@andreswebs](https://github.com/andreswebs)! - Fix VSCode profile generation to use correct rule file names (using `.instructions.md` extension instead of `.md`) and front-matter properties (removing the unsupported `alwaysApply` property from instructions files' front-matter).
1651 | 
1652 | ## 0.22.0-rc.1
1653 | 
1654 | ### Minor Changes
1655 | 
1656 | - [#1043](https://github.com/eyaltoledano/claude-task-master/pull/1043) [`dc44ed9`](https://github.com/eyaltoledano/claude-task-master/commit/dc44ed9de8a57aca5d39d3a87565568bd0a82068) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Prompt to generate a complexity report when it is missing
1657 | 
1658 | ## 0.22.0-rc.0
1659 | 
1660 | ### Minor Changes
1661 | 
1662 | - [#1032](https://github.com/eyaltoledano/claude-task-master/pull/1032) [`4423119`](https://github.com/eyaltoledano/claude-task-master/commit/4423119a5ec53958c9dffa8bf564da8be7a2827d) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add comprehensive Kiro IDE integration with autonomous task management hooks
1663 |   - **Kiro Profile**: Added full support for Kiro IDE with automatic installation of 7 Taskmaster agent hooks
1664 |   - **Hook-Driven Workflow**: Introduced natural language automation hooks that eliminate manual task status updates
1665 |   - **Automatic Hook Installation**: Hooks are now automatically copied to `.kiro/hooks/` when running `task-master rules add kiro`
1666 |   - **Language-Agnostic Support**: All hooks support multiple programming languages (JS, Python, Go, Rust, Java, etc.)
1667 |   - **Frontmatter Transformation**: Kiro rules use simplified `inclusion: always` format instead of Cursor's complex frontmatter
1668 |   - **Special Rule**: Added `taskmaster_hooks_workflow.md` that guides AI assistants to prefer hook-driven completion
1669 | 
1670 |   Key hooks included:
1671 |   - Task Dependency Auto-Progression: Automatically starts tasks when dependencies complete
1672 |   - Code Change Task Tracker: Updates task progress as you save files
1673 |   - Test Success Task Completer: Marks tasks done when tests pass
1674 |   - Daily Standup Assistant: Provides personalized task status summaries
1675 |   - PR Readiness Checker: Validates task completion before creating pull requests
1676 |   - Complexity Analyzer: Auto-expands complex tasks into manageable subtasks
1677 |   - Git Commit Task Linker: Links commits to tasks for better traceability
1678 | 
1679 |   This creates a truly autonomous development workflow where task management happens naturally as you code!
1680 | 
1681 | ### Patch Changes
1682 | 
1683 | - [#1033](https://github.com/eyaltoledano/claude-task-master/pull/1033) [`7b90568`](https://github.com/eyaltoledano/claude-task-master/commit/7b9056832653464f934c91c22997077065d738c4) Thanks [@ben-vargas](https://github.com/ben-vargas)! - Fix compatibility with @google/gemini-cli-core v0.1.12+ by updating ai-sdk-provider-gemini-cli to v0.1.1.
1684 | 
1685 | - [#1038](https://github.com/eyaltoledano/claude-task-master/pull/1038) [`77cc5e4`](https://github.com/eyaltoledano/claude-task-master/commit/77cc5e4537397642f2664f61940a101433ee6fb4) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix 'expand --all' and 'show' commands to correctly handle tag contexts for complexity reports and task display.
1686 | 
1687 | - [#1025](https://github.com/eyaltoledano/claude-task-master/pull/1025) [`8781794`](https://github.com/eyaltoledano/claude-task-master/commit/8781794c56d454697fc92c88a3925982d6b81205) Thanks [@joedanz](https://github.com/joedanz)! - Clean up remaining automatic task file generation calls
1688 | 
1689 | - [#1035](https://github.com/eyaltoledano/claude-task-master/pull/1035) [`fb7d588`](https://github.com/eyaltoledano/claude-task-master/commit/fb7d588137e8c53b0d0f54bd1dd8d387648583ee) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix max_tokens limits for OpenRouter and Groq models
1690 |   - Add special handling in config-manager.js for custom OpenRouter models to use a conservative default of 32,768 max_tokens
1691 |   - Update qwen/qwen-turbo model max_tokens from 1,000,000 to 32,768 to match OpenRouter's actual limits
1692 |   - Fix moonshotai/kimi-k2-instruct max_tokens to 16,384 to match Groq's actual limit (fixes #1028)
1693 |   - This prevents "maximum context length exceeded" errors when using OpenRouter models not in our supported models list
1694 | 
1695 | - [#1027](https://github.com/eyaltoledano/claude-task-master/pull/1027) [`6ae66b2`](https://github.com/eyaltoledano/claude-task-master/commit/6ae66b2afbfe911340fa25e0236c3db83deaa7eb) Thanks [@andreswebs](https://github.com/andreswebs)! - Fix VSCode profile generation to use correct rule file names (using `.instructions.md` extension instead of `.md`) and front-matter properties (removing the unsupported `alwaysApply` property from instructions files' front-matter).
1696 | 
1697 | ## 0.21.0
1698 | 
1699 | ### Minor Changes
1700 | 
1701 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`9c58a92`](https://github.com/eyaltoledano/claude-task-master/commit/9c58a922436c0c5e7ff1b20ed2edbc269990c772) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add Kiro editor rule profile support
1702 |   - Add support for Kiro IDE with custom rule files and MCP configuration
1703 |   - Generate rule files in `.kiro/steering/` directory with markdown format
1704 |   - Include MCP server configuration with enhanced file inclusion patterns
1705 | 
1706 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`444aa5a`](https://github.com/eyaltoledano/claude-task-master/commit/444aa5ae1943ba72d012b3f01b1cc9362a328248) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Created a comprehensive documentation site for Task Master AI. Visit https://docs.task-master.dev to explore guides, API references, and examples.
1707 | 
1708 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`58a301c`](https://github.com/eyaltoledano/claude-task-master/commit/58a301c380d18a9d9509137f3e989d24200a5faa) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Complete Groq provider integration and add MoonshotAI Kimi K2 model support
1709 |   - Fixed Groq provider registration
1710 |   - Added Groq API key validation
1711 |   - Added GROQ_API_KEY to .env.example
1712 |   - Added moonshotai/kimi-k2-instruct model with $1/$3 per 1M token pricing and 16k max output
1713 | 
1714 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`b0e09c7`](https://github.com/eyaltoledano/claude-task-master/commit/b0e09c76ed73b00434ac95606679f570f1015a3d) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - feat: Add Zed editor rule profile with agent rules and MCP config
1715 |   - Resolves #637
1716 | 
1717 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`6c5e0f9`](https://github.com/eyaltoledano/claude-task-master/commit/6c5e0f97f8403c4da85c1abba31cb8b1789511a7) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add Amp rule profile with AGENT.md and MCP config
1718 | 
1719 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`444aa5a`](https://github.com/eyaltoledano/claude-task-master/commit/444aa5ae1943ba72d012b3f01b1cc9362a328248) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve project root detection
1720 |   - No longer creates an infinite loop when unable to detect your code workspace
1721 | 
1722 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`36c4a7a`](https://github.com/eyaltoledano/claude-task-master/commit/36c4a7a86924c927ad7f86a4f891f66ad55eb4d2) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add OpenCode profile with AGENTS.md and MCP config
1723 |   - Resolves #965
1724 | 
1725 | ### Patch Changes
1726 | 
1727 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`444aa5a`](https://github.com/eyaltoledano/claude-task-master/commit/444aa5ae1943ba72d012b3f01b1cc9362a328248) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Make `task-master update` more reliable with AI responses
1728 | 
1729 |   The `update` command now handles AI responses more robustly. If the AI forgets to include certain task fields, the command will automatically fill in the missing data from your original tasks instead of failing. This means smoother bulk task updates without losing important information like IDs, dependencies, or completed subtasks.
1730 | 
1731 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`444aa5a`](https://github.com/eyaltoledano/claude-task-master/commit/444aa5ae1943ba72d012b3f01b1cc9362a328248) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix subtask dependency validation when expanding tasks
1732 | 
1733 |   When using `task-master expand` to break down tasks into subtasks, dependencies between subtasks are now properly validated. Previously, subtasks with dependencies would fail validation. Now subtasks can correctly depend on their siblings within the same parent task.
1734 | 
1735 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`6d69d02`](https://github.com/eyaltoledano/claude-task-master/commit/6d69d02fe03edcc785380415995d5cfcdd97acbb) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Prevent CLAUDE.md overwrite by using Claude Code's import feature
1736 |   - Task Master now creates its instructions in `.taskmaster/CLAUDE.md` instead of overwriting the user's `CLAUDE.md`
1737 |   - Adds an import section to the user's CLAUDE.md that references the Task Master instructions
1738 |   - Preserves existing user content in CLAUDE.md files
1739 |   - Provides clean uninstall that only removes Task Master's additions
1740 | 
1741 |   **Breaking Change**: Task Master instructions for Claude Code are now stored in `.taskmaster/CLAUDE.md` and imported into the main CLAUDE.md file. Users who previously had Task Master content directly in their CLAUDE.md will need to run `task-master rules remove claude` followed by `task-master rules add claude` to migrate to the new structure.
1742 | 
1743 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`fd005c4`](https://github.com/eyaltoledano/claude-task-master/commit/fd005c4c5481ffac58b11f01a448fa5b29056b8d) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Implement Boundary-First Tag Resolution to ensure consistent and deterministic tag handling across CLI and MCP, resolving potential race conditions.
1744 | 
1745 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`444aa5a`](https://github.com/eyaltoledano/claude-task-master/commit/444aa5ae1943ba72d012b3f01b1cc9362a328248) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix `task-master lang --setup` breaking when no language is defined, now defaults to English
1746 | 
1747 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`624922c`](https://github.com/eyaltoledano/claude-task-master/commit/624922ca598c4ce8afe9a5646ebb375d4616db63) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix: show command no longer requires complexity report file to exist
1748 | 
1749 |   The `tm show` command was incorrectly requiring the complexity report file to exist even when not needed. Now it only validates the complexity report path when a custom report file is explicitly provided via the -r/--report option.
1750 | 
1751 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`858d4a1`](https://github.com/eyaltoledano/claude-task-master/commit/858d4a1c5486d20e7e3a8e37e3329d7fb8200310) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Update VS Code profile with MCP config transformation
1752 | 
1753 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`0451ebc`](https://github.com/eyaltoledano/claude-task-master/commit/0451ebcc32cd7e9d395b015aaa8602c4734157e1) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP server error when retrieving tools and resources
1754 | 
1755 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`0a70ab6`](https://github.com/eyaltoledano/claude-task-master/commit/0a70ab6179cb2b5b4b2d9dc256a7a3b69a0e5dd6) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add MCP configuration support to Claude Code rules
1756 | 
1757 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`4629128`](https://github.com/eyaltoledano/claude-task-master/commit/4629128943f6283385f4762c09cf2752f855cc33) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fixed the comprehensive taskmaster system integration via custom slash commands with proper syntax
1758 |   - Provide claude clode with a complete set of of commands that can trigger task master events directly within Claude Code
1759 | 
1760 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`0886c83`](https://github.com/eyaltoledano/claude-task-master/commit/0886c83d0c678417c0313256a6dd96f7ee2c9ac6) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Correct MCP server name and use 'Add to Cursor' button with updated placeholder keys.
1761 | 
1762 | - [#1009](https://github.com/eyaltoledano/claude-task-master/pull/1009) [`88c434a`](https://github.com/eyaltoledano/claude-task-master/commit/88c434a9393e429d9277f59b3e20f1005076bbe0) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add missing API keys to .env.example and README.md
1763 | 
1764 | ## 0.21.0-rc.0
1765 | 
1766 | ### Minor Changes
1767 | 
1768 | - [#1001](https://github.com/eyaltoledano/claude-task-master/pull/1001) [`75a36ea`](https://github.com/eyaltoledano/claude-task-master/commit/75a36ea99a1c738a555bdd4fe7c763d0c5925e37) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add Kiro editor rule profile support
1769 |   - Add support for Kiro IDE with custom rule files and MCP configuration
1770 |   - Generate rule files in `.kiro/steering/` directory with markdown format
1771 |   - Include MCP server configuration with enhanced file inclusion patterns
1772 | 
1773 | - [#1011](https://github.com/eyaltoledano/claude-task-master/pull/1011) [`3eb050a`](https://github.com/eyaltoledano/claude-task-master/commit/3eb050aaddb90fca1a04517e2ee24f73934323be) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Created a comprehensive documentation site for Task Master AI. Visit https://docs.task-master.dev to explore guides, API references, and examples.
1774 | 
1775 | - [#978](https://github.com/eyaltoledano/claude-task-master/pull/978) [`fedfd6a`](https://github.com/eyaltoledano/claude-task-master/commit/fedfd6a0f41a78094f7ee7f69be689b699475a79) Thanks [@ben-vargas](https://github.com/ben-vargas)! - Complete Groq provider integration and add MoonshotAI Kimi K2 model support
1776 |   - Fixed Groq provider registration
1777 |   - Added Groq API key validation
1778 |   - Added GROQ_API_KEY to .env.example
1779 |   - Added moonshotai/kimi-k2-instruct model with $1/$3 per 1M token pricing and 16k max output
1780 | 
1781 | - [#974](https://github.com/eyaltoledano/claude-task-master/pull/974) [`5b0eda0`](https://github.com/eyaltoledano/claude-task-master/commit/5b0eda07f20a365aa2ec1736eed102bca81763a9) Thanks [@joedanz](https://github.com/joedanz)! - feat: Add Zed editor rule profile with agent rules and MCP config
1782 |   - Resolves #637
1783 | 
1784 | - [#973](https://github.com/eyaltoledano/claude-task-master/pull/973) [`6d05e86`](https://github.com/eyaltoledano/claude-task-master/commit/6d05e8622c1d761acef10414940ff9a766b3b57d) Thanks [@joedanz](https://github.com/joedanz)! - Add Amp rule profile with AGENT.md and MCP config
1785 | 
1786 | - [#1011](https://github.com/eyaltoledano/claude-task-master/pull/1011) [`3eb050a`](https://github.com/eyaltoledano/claude-task-master/commit/3eb050aaddb90fca1a04517e2ee24f73934323be) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve project root detection
1787 |   - No longer creates an infinite loop when unable to detect your code workspace
1788 | 
1789 | - [#970](https://github.com/eyaltoledano/claude-task-master/pull/970) [`b87499b`](https://github.com/eyaltoledano/claude-task-master/commit/b87499b56e626001371a87ed56ffc72675d829f3) Thanks [@joedanz](https://github.com/joedanz)! - Add OpenCode profile with AGENTS.md and MCP config
1790 |   - Resolves #965
1791 | 
1792 | ### Patch Changes
1793 | 
1794 | - [#1011](https://github.com/eyaltoledano/claude-task-master/pull/1011) [`3eb050a`](https://github.com/eyaltoledano/claude-task-master/commit/3eb050aaddb90fca1a04517e2ee24f73934323be) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Make `task-master update` more reliable with AI responses
1795 | 
1796 |   The `update` command now handles AI responses more robustly. If the AI forgets to include certain task fields, the command will automatically fill in the missing data from your original tasks instead of failing. This means smoother bulk task updates without losing important information like IDs, dependencies, or completed subtasks.
1797 | 
1798 | - [#1011](https://github.com/eyaltoledano/claude-task-master/pull/1011) [`3eb050a`](https://github.com/eyaltoledano/claude-task-master/commit/3eb050aaddb90fca1a04517e2ee24f73934323be) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix subtask dependency validation when expanding tasks
1799 | 
1800 |   When using `task-master expand` to break down tasks into subtasks, dependencies between subtasks are now properly validated. Previously, subtasks with dependencies would fail validation. Now subtasks can correctly depend on their siblings within the same parent task.
1801 | 
1802 | - [#949](https://github.com/eyaltoledano/claude-task-master/pull/949) [`f662654`](https://github.com/eyaltoledano/claude-task-master/commit/f662654afb8e7a230448655265d6f41adf6df62c) Thanks [@ben-vargas](https://github.com/ben-vargas)! - Prevent CLAUDE.md overwrite by using Claude Code's import feature
1803 |   - Task Master now creates its instructions in `.taskmaster/CLAUDE.md` instead of overwriting the user's `CLAUDE.md`
1804 |   - Adds an import section to the user's CLAUDE.md that references the Task Master instructions
1805 |   - Preserves existing user content in CLAUDE.md files
1806 |   - Provides clean uninstall that only removes Task Master's additions
1807 | 
1808 |   **Breaking Change**: Task Master instructions for Claude Code are now stored in `.taskmaster/CLAUDE.md` and imported into the main CLAUDE.md file. Users who previously had Task Master content directly in their CLAUDE.md will need to run `task-master rules remove claude` followed by `task-master rules add claude` to migrate to the new structure.
1809 | 
1810 | - [#943](https://github.com/eyaltoledano/claude-task-master/pull/943) [`f98df5c`](https://github.com/eyaltoledano/claude-task-master/commit/f98df5c0fdb253b2b55d4278c11d626529c4dba4) Thanks [@mm-parthy](https://github.com/mm-parthy)! - Implement Boundary-First Tag Resolution to ensure consistent and deterministic tag handling across CLI and MCP, resolving potential race conditions.
1811 | 
1812 | - [#1011](https://github.com/eyaltoledano/claude-task-master/pull/1011) [`3eb050a`](https://github.com/eyaltoledano/claude-task-master/commit/3eb050aaddb90fca1a04517e2ee24f73934323be) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix `task-master lang --setup` breaking when no language is defined, now defaults to English
1813 | 
1814 | - [#979](https://github.com/eyaltoledano/claude-task-master/pull/979) [`ab2e946`](https://github.com/eyaltoledano/claude-task-master/commit/ab2e94608749a2f148118daa0443bd32bca6e7a1) Thanks [@ben-vargas](https://github.com/ben-vargas)! - Fix: show command no longer requires complexity report file to exist
1815 | 
1816 |   The `tm show` command was incorrectly requiring the complexity report file to exist even when not needed. Now it only validates the complexity report path when a custom report file is explicitly provided via the -r/--report option.
1817 | 
1818 | - [#971](https://github.com/eyaltoledano/claude-task-master/pull/971) [`5544222`](https://github.com/eyaltoledano/claude-task-master/commit/55442226d0aa4870470d2a9897f5538d6a0e329e) Thanks [@joedanz](https://github.com/joedanz)! - Update VS Code profile with MCP config transformation
1819 | 
1820 | - [#1002](https://github.com/eyaltoledano/claude-task-master/pull/1002) [`6d0654c`](https://github.com/eyaltoledano/claude-task-master/commit/6d0654cb4191cee794e1c8cbf2b92dc33d4fb410) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP server error when retrieving tools and resources
1821 | 
1822 | - [#980](https://github.com/eyaltoledano/claude-task-master/pull/980) [`cc4fe20`](https://github.com/eyaltoledano/claude-task-master/commit/cc4fe205fb468e7144c650acc92486df30731560) Thanks [@joedanz](https://github.com/joedanz)! - Add MCP configuration support to Claude Code rules
1823 | 
1824 | - [#968](https://github.com/eyaltoledano/claude-task-master/pull/968) [`7b4803a`](https://github.com/eyaltoledano/claude-task-master/commit/7b4803a479105691c7ed032fd878fe3d48d82724) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fixed the comprehensive taskmaster system integration via custom slash commands with proper syntax
1825 |   - Provide claude clode with a complete set of of commands that can trigger task master events directly within Claude Code
1826 | 
1827 | - [#995](https://github.com/eyaltoledano/claude-task-master/pull/995) [`b78de8d`](https://github.com/eyaltoledano/claude-task-master/commit/b78de8dbb4d6dc93b48e2f81c32960ef069736ed) Thanks [@joedanz](https://github.com/joedanz)! - Correct MCP server name and use 'Add to Cursor' button with updated placeholder keys.
1828 | 
1829 | - [#972](https://github.com/eyaltoledano/claude-task-master/pull/972) [`1c7badf`](https://github.com/eyaltoledano/claude-task-master/commit/1c7badff2f5c548bfa90a3b2634e63087a382a84) Thanks [@joedanz](https://github.com/joedanz)! - Add missing API keys to .env.example and README.md
1830 | 
1831 | ## 0.20.0
1832 | 
1833 | ### Minor Changes
1834 | 
1835 | - [#950](https://github.com/eyaltoledano/claude-task-master/pull/950) [`699e9ee`](https://github.com/eyaltoledano/claude-task-master/commit/699e9eefb5d687b256e9402d686bdd5e3a358b4a) Thanks [@ben-vargas](https://github.com/ben-vargas)! - Add support for xAI Grok 4 model
1836 |   - Add grok-4 model to xAI provider with $3/$15 per 1M token pricing
1837 |   - Enable main, fallback, and research roles for grok-4
1838 |   - Max tokens set to 131,072 (matching other xAI models)
1839 | 
1840 | - [#946](https://github.com/eyaltoledano/claude-task-master/pull/946) [`5f009a5`](https://github.com/eyaltoledano/claude-task-master/commit/5f009a5e1fc10e37be26f5135df4b7f44a9c5320) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add stricter validation and clearer feedback for task priority when adding new tasks
1841 |   - if a task priority is invalid, it will default to medium
1842 |   - made taks priority case-insensitive, essentially making HIGH and high the same value
1843 | 
1844 | - [#863](https://github.com/eyaltoledano/claude-task-master/pull/863) [`b530657`](https://github.com/eyaltoledano/claude-task-master/commit/b53065713c8da0ae6f18eb2655397aa975004923) Thanks [@OrenMe](https://github.com/OrenMe)! - Add support for MCP Sampling as AI provider, requires no API key, uses the client LLM provider
1845 | 
1846 | - [#930](https://github.com/eyaltoledano/claude-task-master/pull/930) [`98d1c97`](https://github.com/eyaltoledano/claude-task-master/commit/98d1c974361a56ddbeb772b1272986b9d3913459) Thanks [@OmarElKadri](https://github.com/OmarElKadri)! - Added Groq provider support
1847 | 
1848 | ### Patch Changes
1849 | 
1850 | - [#958](https://github.com/eyaltoledano/claude-task-master/pull/958) [`6c88a4a`](https://github.com/eyaltoledano/claude-task-master/commit/6c88a4a749083e3bd2d073a9240799771774495a) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Recover from `@anthropic-ai/claude-code` JSON truncation bug that caused Task Master to crash when handling large (>8 kB) structured responses. The CLI/SDK still truncates, but Task Master now detects the error, preserves buffered text, and returns a usable response instead of throwing.
1851 | 
1852 | - [#958](https://github.com/eyaltoledano/claude-task-master/pull/958) [`3334e40`](https://github.com/eyaltoledano/claude-task-master/commit/3334e409ae659d5223bb136ae23fd22c5e219073) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Updating dependency ai-sdk-provider-gemini-cli to 0.0.4 to address breaking change Google made to Gemini CLI and add better 'api-key' in addition to 'gemini-api-key' AI-SDK compatibility.
1853 | 
1854 | - [#853](https://github.com/eyaltoledano/claude-task-master/pull/853) [`95c299d`](https://github.com/eyaltoledano/claude-task-master/commit/95c299df642bd8e6d75f8fa5110ac705bcc72edf) Thanks [@joedanz](https://github.com/joedanz)! - Unify and streamline profile system architecture for improved maintainability
1855 | 
1856 | ## 0.20.0-rc.0
1857 | 
1858 | ### Minor Changes
1859 | 
1860 | - [#950](https://github.com/eyaltoledano/claude-task-master/pull/950) [`699e9ee`](https://github.com/eyaltoledano/claude-task-master/commit/699e9eefb5d687b256e9402d686bdd5e3a358b4a) Thanks [@ben-vargas](https://github.com/ben-vargas)! - Add support for xAI Grok 4 model
1861 |   - Add grok-4 model to xAI provider with $3/$15 per 1M token pricing
1862 |   - Enable main, fallback, and research roles for grok-4
1863 |   - Max tokens set to 131,072 (matching other xAI models)
1864 | 
1865 | - [#946](https://github.com/eyaltoledano/claude-task-master/pull/946) [`5f009a5`](https://github.com/eyaltoledano/claude-task-master/commit/5f009a5e1fc10e37be26f5135df4b7f44a9c5320) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add stricter validation and clearer feedback for task priority when adding new tasks
1866 |   - if a task priority is invalid, it will default to medium
1867 |   - made taks priority case-insensitive, essentially making HIGH and high the same value
1868 | 
1869 | - [#863](https://github.com/eyaltoledano/claude-task-master/pull/863) [`b530657`](https://github.com/eyaltoledano/claude-task-master/commit/b53065713c8da0ae6f18eb2655397aa975004923) Thanks [@OrenMe](https://github.com/OrenMe)! - Add support for MCP Sampling as AI provider, requires no API key, uses the client LLM provider
1870 | 
1871 | - [#930](https://github.com/eyaltoledano/claude-task-master/pull/930) [`98d1c97`](https://github.com/eyaltoledano/claude-task-master/commit/98d1c974361a56ddbeb772b1272986b9d3913459) Thanks [@OmarElKadri](https://github.com/OmarElKadri)! - Added Groq provider support
1872 | 
1873 | ### Patch Changes
1874 | 
1875 | - [#916](https://github.com/eyaltoledano/claude-task-master/pull/916) [`6c88a4a`](https://github.com/eyaltoledano/claude-task-master/commit/6c88a4a749083e3bd2d073a9240799771774495a) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Recover from `@anthropic-ai/claude-code` JSON truncation bug that caused Task Master to crash when handling large (>8 kB) structured responses. The CLI/SDK still truncates, but Task Master now detects the error, preserves buffered text, and returns a usable response instead of throwing.
1876 | 
1877 | - [#916](https://github.com/eyaltoledano/claude-task-master/pull/916) [`3334e40`](https://github.com/eyaltoledano/claude-task-master/commit/3334e409ae659d5223bb136ae23fd22c5e219073) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Updating dependency ai-sdk-provider-gemini-cli to 0.0.4 to address breaking change Google made to Gemini CLI and add better 'api-key' in addition to 'gemini-api-key' AI-SDK compatibility.
1878 | 
1879 | - [#853](https://github.com/eyaltoledano/claude-task-master/pull/853) [`95c299d`](https://github.com/eyaltoledano/claude-task-master/commit/95c299df642bd8e6d75f8fa5110ac705bcc72edf) Thanks [@joedanz](https://github.com/joedanz)! - Unify and streamline profile system architecture for improved maintainability
1880 | 
1881 | ## 0.19.0
1882 | 
1883 | ### Minor Changes
1884 | 
1885 | - [#897](https://github.com/eyaltoledano/claude-task-master/pull/897) [`dd96f51`](https://github.com/eyaltoledano/claude-task-master/commit/dd96f51179d9901f6ae854b0c60f0bcc8c13ae0d) Thanks [@ben-vargas](https://github.com/ben-vargas)! - Adds support for gemini-cli as a provider, enabling free or subscription use through Google Accounts and paid Gemini Cloud Assist (GCA) subscriptions.
1886 | 
1887 | - [#884](https://github.com/eyaltoledano/claude-task-master/pull/884) [`5eafc5e`](https://github.com/eyaltoledano/claude-task-master/commit/5eafc5ea112c91326bb8abda7a78d7c2a4fa16a1) Thanks [@geoh](https://github.com/geoh)! - Added option for the AI to determine the number of tasks required based entirely on complexity
1888 | 
1889 | - [#872](https://github.com/eyaltoledano/claude-task-master/pull/872) [`f7fbdd6`](https://github.com/eyaltoledano/claude-task-master/commit/f7fbdd6755c4a1ee3ab2a3f435961f249fa19c15) Thanks [@geoh](https://github.com/geoh)! - Add advanced settings for Claude Code AI Provider
1890 | 
1891 | - [#870](https://github.com/eyaltoledano/claude-task-master/pull/870) [`6fd5e23`](https://github.com/eyaltoledano/claude-task-master/commit/6fd5e23396a7e348ea2300e67cbd0c97141c081f) Thanks [@nishedcob](https://github.com/nishedcob)! - Include additional Anthropic models running on Bedrock in what is supported
1892 | 
1893 | - [#510](https://github.com/eyaltoledano/claude-task-master/pull/510) [`c99df64`](https://github.com/eyaltoledano/claude-task-master/commit/c99df64f651fb40bae5d7979ee2b2428586f44d3) Thanks [@shenysun](https://github.com/shenysun)! - Add support for custom response language
1894 | 
1895 | ### Patch Changes
1896 | 
1897 | - [#892](https://github.com/eyaltoledano/claude-task-master/pull/892) [`56a415e`](https://github.com/eyaltoledano/claude-task-master/commit/56a415ef795c5aa0e52e7419af8d4f4862611a8c) Thanks [@joedanz](https://github.com/joedanz)! - Ensure projectRoot is a string (potential WSL fix)
1898 | 
1899 | - [#856](https://github.com/eyaltoledano/claude-task-master/pull/856) [`43e0025`](https://github.com/eyaltoledano/claude-task-master/commit/43e0025f4c5870a3c56682cbb8fe0348d711953b) Thanks [@mm-parthy](https://github.com/mm-parthy)! - Fix bulk update tag corruption in tagged task lists
1900 | 
1901 | - [#857](https://github.com/eyaltoledano/claude-task-master/pull/857) [`598e687`](https://github.com/eyaltoledano/claude-task-master/commit/598e687067d1af44f1a9916266ae94af3e752067) Thanks [@mm-parthy](https://github.com/mm-parthy)! - Fix expand-task to use tag-specific complexity reports
1902 | 
1903 |   The expand-task function now correctly uses complexity reports specific to the current tag context (e.g., task-complexity-report_feature-branch.json) instead of always using the default task-complexity-report.json file. This enables proper task expansion behavior when working with multiple tag contexts.
1904 | 
1905 | - [#855](https://github.com/eyaltoledano/claude-task-master/pull/855) [`e4456b1`](https://github.com/eyaltoledano/claude-task-master/commit/e4456b11bc3ae46e120d244fc32c1807a8a58a57) Thanks [@joedanz](https://github.com/joedanz)! - Fix .gitignore missing trailing newline during project initialization
1906 | 
1907 | - [#846](https://github.com/eyaltoledano/claude-task-master/pull/846) [`59a4ec9`](https://github.com/eyaltoledano/claude-task-master/commit/59a4ec9e1a452079e5c78c00428d140f13a1c8f6) Thanks [@joedanz](https://github.com/joedanz)! - Default to Cursor profile for MCP init when no rules specified
1908 | 
1909 | - [#852](https://github.com/eyaltoledano/claude-task-master/pull/852) [`f38abd6`](https://github.com/eyaltoledano/claude-task-master/commit/f38abd68436ea5d093b2e22c2b8520b6e6906251) Thanks [@hrmshandy](https://github.com/hrmshandy)! - fixes a critical issue where subtask generation fails on gemini-2.5-pro unless explicitly prompted to return 'details' field as a string not an object
1910 | 
1911 | - [#908](https://github.com/eyaltoledano/claude-task-master/pull/908) [`24e9206`](https://github.com/eyaltoledano/claude-task-master/commit/24e9206da0d5d3f2f7819ed94fa0c9b459fc9f9b) Thanks [@joedanz](https://github.com/joedanz)! - Fix rules command to use reliable project root detection like other commands
1912 | 
1913 | ## 0.18.0
1914 | 
1915 | ### Minor Changes
1916 | 
1917 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Can now configure baseURL of provider with `<PROVIDER>_BASE_URL`
1918 |   - For example:
1919 |     - `OPENAI_BASE_URL`
1920 | 
1921 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Added comprehensive rule profile management:
1922 | 
1923 |   **New Profile Support**: Added comprehensive IDE profile support with eight specialized profiles: Claude Code, Cline, Codex, Cursor, Roo, Trae, VS Code, and Windsurf. Each profile is optimized for its respective IDE with appropriate mappings and configuration.
1924 |   **Initialization**: You can now specify which rule profiles to include at project initialization using `--rules <profiles>` or `-r <profiles>` (e.g., `task-master init -r cursor,roo`). Only the selected profiles and configuration are included.
1925 |   **Add/Remove Commands**: `task-master rules add <profiles>` and `task-master rules remove <profiles>` let you manage specific rule profiles and MCP config after initialization, supporting multiple profiles at once.
1926 |   **Interactive Setup**: `task-master rules setup` launches an interactive prompt to select which rule profiles to add to your project. This does **not** re-initialize your project or affect shell aliases; it only manages rules.
1927 |   **Selective Removal**: Rules removal intelligently preserves existing non-Task Master rules and files and only removes Task Master-specific rules. Profile directories are only removed when completely empty and all conditions are met (no existing rules, no other files/folders, MCP config completely removed).
1928 |   **Safety Features**: Confirmation messages clearly explain that only Task Master-specific rules and MCP configurations will be removed, while preserving existing custom rules and other files.
1929 |   **Robust Validation**: Includes comprehensive checks for array types in MCP config processing and error handling throughout the rules management system.
1930 | 
1931 |   This enables more flexible, rule-specific project setups with intelligent cleanup that preserves user customizations while safely managing Task Master components.
1932 |   - Resolves #338
1933 | 
1934 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Make task-master more compatible with the "o" family models of OpenAI
1935 | 
1936 |   Now works well with:
1937 |   - o3
1938 |   - o3-mini
1939 |   - etc.
1940 | 
1941 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add better support for python projects by adding `pyproject.toml` as a projectRoot marker
1942 | 
1943 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - - **Git Worktree Detection:**
1944 |   - Now properly skips Git initialization when inside existing Git worktree
1945 |   - Prevents accidental nested repository creation
1946 |   - **Flag System Overhaul:**
1947 |     - `--git`/`--no-git` controls repository initialization
1948 |     - `--aliases`/`--no-aliases` consistently manages shell alias creation
1949 |     - `--git-tasks`/`--no-git-tasks` controls whether task files are stored in Git
1950 |     - `--dry-run` accurately previews all initialization behaviors
1951 |   - **GitTasks Functionality:**
1952 |     - New `--git-tasks` flag includes task files in Git (comments them out in .gitignore)
1953 |     - New `--no-git-tasks` flag excludes task files from Git (default behavior)
1954 |     - Supports both CLI and MCP interfaces with proper parameter passing
1955 | 
1956 |   **Implementation Details:**
1957 |   - Added explicit Git worktree detection before initialization
1958 |   - Refactored flag processing to ensure consistent behavior
1959 |   - Fixes #734
1960 | 
1961 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add Claude Code provider support
1962 | 
1963 |   Introduces a new provider that enables using Claude models (Opus and Sonnet) through the Claude Code CLI without requiring an API key.
1964 | 
1965 |   Key features:
1966 |   - New claude-code provider with support for opus and sonnet models
1967 |   - No API key required - uses local Claude Code CLI installation
1968 |   - Optional dependency - won't affect users who don't need Claude Code
1969 |   - Lazy loading ensures the provider only loads when requested
1970 |   - Full integration with existing Task Master commands and workflows
1971 |   - Comprehensive test coverage for reliability
1972 |   - New --claude-code flag for the models command
1973 | 
1974 |   Users can now configure Claude Code models with:
1975 |   task-master models --set-main sonnet --claude-code
1976 |   task-master models --set-research opus --claude-code
1977 | 
1978 |   The @anthropic-ai/claude-code package is optional and won't be installed unless explicitly needed.
1979 | 
1980 | ### Patch Changes
1981 | 
1982 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix expand command preserving tagged task structure and preventing data corruption
1983 |   - Enhance E2E tests with comprehensive tag-aware expand testing to verify tag corruption fix
1984 |   - Add new test section for feature-expand tag creation and testing during expand operations
1985 |   - Verify tag preservation during expand, force expand, and expand --all operations
1986 |   - Test that master tag remains intact while feature-expand tag receives subtasks correctly
1987 |   - Fix file path references to use correct .taskmaster/config.json and .taskmaster/tasks/tasks.json locations
1988 |   - All tag corruption verification tests pass successfully, confirming the expand command tag corruption bug fix works as expected
1989 | 
1990 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix Cursor deeplink installation by providing copy-paste instructions for GitHub compatibility
1991 | 
1992 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Call rules interactive setup during init
1993 | 
1994 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Update o3 model price
1995 | 
1996 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improves Amazon Bedrock support
1997 | 
1998 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix issues with task creation/update where subtasks are being created like id: <parent_task>.<subtask> instead if just id: <subtask>
1999 | 
2000 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fixes issue with expand CLI command "Complexity report not found"
2001 |   - Closes #735
2002 |   - Closes #728
2003 | 
2004 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Store tasks in Git by default
2005 | 
2006 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve provider validation system with clean constants structure
2007 |   - **Fixed "Invalid provider hint" errors**: Resolved validation failures for Azure, Vertex, and Bedrock providers
2008 |   - **Improved search UX**: Integrated search for better model discovery with real-time filtering
2009 |   - **Better organization**: Moved custom provider options to bottom of model selection with clear section separators
2010 | 
2011 |   This change ensures all custom providers (Azure, Vertex, Bedrock, OpenRouter, Ollama) work correctly in `task-master models --setup`
2012 | 
2013 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix weird `task-master init` bug when using in certain environments
2014 | 
2015 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Rename Roo Code Boomerang role to Orchestrator
2016 | 
2017 | - [#840](https://github.com/eyaltoledano/claude-task-master/pull/840) [`b40139c`](https://github.com/eyaltoledano/claude-task-master/commit/b40139ca0517fd76aea4f41d0ed4c10e658a5d2b) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve mcp keys check in cursor
2018 | 
2019 | ## 0.18.0-rc.0
2020 | 
2021 | ### Minor Changes
2022 | 
2023 | - [#830](https://github.com/eyaltoledano/claude-task-master/pull/830) [`e9d1bc2`](https://github.com/eyaltoledano/claude-task-master/commit/e9d1bc2385521c08374a85eba7899e878a51066c) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Can now configure baseURL of provider with `<PROVIDER>_BASE_URL`
2024 |   - For example:
2025 |     - `OPENAI_BASE_URL`
2026 | 
2027 | - [#460](https://github.com/eyaltoledano/claude-task-master/pull/460) [`a09a2d0`](https://github.com/eyaltoledano/claude-task-master/commit/a09a2d0967a10276623e3f3ead3ed577c15ce62f) Thanks [@joedanz](https://github.com/joedanz)! - Added comprehensive rule profile management:
2028 | 
2029 |   **New Profile Support**: Added comprehensive IDE profile support with eight specialized profiles: Claude Code, Cline, Codex, Cursor, Roo, Trae, VS Code, and Windsurf. Each profile is optimized for its respective IDE with appropriate mappings and configuration.
2030 |   **Initialization**: You can now specify which rule profiles to include at project initialization using `--rules <profiles>` or `-r <profiles>` (e.g., `task-master init -r cursor,roo`). Only the selected profiles and configuration are included.
2031 |   **Add/Remove Commands**: `task-master rules add <profiles>` and `task-master rules remove <profiles>` let you manage specific rule profiles and MCP config after initialization, supporting multiple profiles at once.
2032 |   **Interactive Setup**: `task-master rules setup` launches an interactive prompt to select which rule profiles to add to your project. This does **not** re-initialize your project or affect shell aliases; it only manages rules.
2033 |   **Selective Removal**: Rules removal intelligently preserves existing non-Task Master rules and files and only removes Task Master-specific rules. Profile directories are only removed when completely empty and all conditions are met (no existing rules, no other files/folders, MCP config completely removed).
2034 |   **Safety Features**: Confirmation messages clearly explain that only Task Master-specific rules and MCP configurations will be removed, while preserving existing custom rules and other files.
2035 |   **Robust Validation**: Includes comprehensive checks for array types in MCP config processing and error handling throughout the rules management system.
2036 | 
2037 |   This enables more flexible, rule-specific project setups with intelligent cleanup that preserves user customizations while safely managing Task Master components.
2038 |   - Resolves #338
2039 | 
2040 | - [#804](https://github.com/eyaltoledano/claude-task-master/pull/804) [`1b8c320`](https://github.com/eyaltoledano/claude-task-master/commit/1b8c320c570473082f1eb4bf9628bff66e799092) Thanks [@ejones40](https://github.com/ejones40)! - Add better support for python projects by adding `pyproject.toml` as a projectRoot marker
2041 | 
2042 | - [#743](https://github.com/eyaltoledano/claude-task-master/pull/743) [`a2a3229`](https://github.com/eyaltoledano/claude-task-master/commit/a2a3229fd01e24a5838f11a3938a77250101e184) Thanks [@joedanz](https://github.com/joedanz)! - - **Git Worktree Detection:**
2043 |   - Now properly skips Git initialization when inside existing Git worktree
2044 |   - Prevents accidental nested repository creation
2045 |   - **Flag System Overhaul:**
2046 |     - `--git`/`--no-git` controls repository initialization
2047 |     - `--aliases`/`--no-aliases` consistently manages shell alias creation
2048 |     - `--git-tasks`/`--no-git-tasks` controls whether task files are stored in Git
2049 |     - `--dry-run` accurately previews all initialization behaviors
2050 |   - **GitTasks Functionality:**
2051 |     - New `--git-tasks` flag includes task files in Git (comments them out in .gitignore)
2052 |     - New `--no-git-tasks` flag excludes task files from Git (default behavior)
2053 |     - Supports both CLI and MCP interfaces with proper parameter passing
2054 | 
2055 |   **Implementation Details:**
2056 |   - Added explicit Git worktree detection before initialization
2057 |   - Refactored flag processing to ensure consistent behavior
2058 |   - Fixes #734
2059 | 
2060 | - [#829](https://github.com/eyaltoledano/claude-task-master/pull/829) [`4b0c9d9`](https://github.com/eyaltoledano/claude-task-master/commit/4b0c9d9af62d00359fca3f43283cf33223d410bc) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add Claude Code provider support
2061 | 
2062 |   Introduces a new provider that enables using Claude models (Opus and Sonnet) through the Claude Code CLI without requiring an API key.
2063 | 
2064 |   Key features:
2065 |   - New claude-code provider with support for opus and sonnet models
2066 |   - No API key required - uses local Claude Code CLI installation
2067 |   - Optional dependency - won't affect users who don't need Claude Code
2068 |   - Lazy loading ensures the provider only loads when requested
2069 |   - Full integration with existing Task Master commands and workflows
2070 |   - Comprehensive test coverage for reliability
2071 |   - New --claude-code flag for the models command
2072 | 
2073 |   Users can now configure Claude Code models with:
2074 |   task-master models --set-main sonnet --claude-code
2075 |   task-master models --set-research opus --claude-code
2076 | 
2077 |   The @anthropic-ai/claude-code package is optional and won't be installed unless explicitly needed.
2078 | 
2079 | ### Patch Changes
2080 | 
2081 | - [#827](https://github.com/eyaltoledano/claude-task-master/pull/827) [`5da5b59`](https://github.com/eyaltoledano/claude-task-master/commit/5da5b59bdeeb634dcb3adc7a9bc0fc37e004fa0c) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix expand command preserving tagged task structure and preventing data corruption
2082 |   - Enhance E2E tests with comprehensive tag-aware expand testing to verify tag corruption fix
2083 |   - Add new test section for feature-expand tag creation and testing during expand operations
2084 |   - Verify tag preservation during expand, force expand, and expand --all operations
2085 |   - Test that master tag remains intact while feature-expand tag receives subtasks correctly
2086 |   - Fix file path references to use correct .taskmaster/config.json and .taskmaster/tasks/tasks.json locations
2087 |   - All tag corruption verification tests pass successfully, confirming the expand command tag corruption bug fix works as expected
2088 | 
2089 | - [#833](https://github.com/eyaltoledano/claude-task-master/pull/833) [`cf2c066`](https://github.com/eyaltoledano/claude-task-master/commit/cf2c06697a0b5b952fb6ca4b3c923e9892604d08) Thanks [@joedanz](https://github.com/joedanz)! - Call rules interactive setup during init
2090 | 
2091 | - [#826](https://github.com/eyaltoledano/claude-task-master/pull/826) [`7811227`](https://github.com/eyaltoledano/claude-task-master/commit/78112277b3caa4539e6e29805341a944799fb0e7) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improves Amazon Bedrock support
2092 | 
2093 | - [#834](https://github.com/eyaltoledano/claude-task-master/pull/834) [`6483537`](https://github.com/eyaltoledano/claude-task-master/commit/648353794eb60d11ffceda87370a321ad310fbd7) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix issues with task creation/update where subtasks are being created like id: <parent_task>.<subtask> instead if just id: <subtask>
2094 | 
2095 | - [#835](https://github.com/eyaltoledano/claude-task-master/pull/835) [`727f1ec`](https://github.com/eyaltoledano/claude-task-master/commit/727f1ec4ebcbdd82547784c4c113b666af7e122e) Thanks [@joedanz](https://github.com/joedanz)! - Store tasks in Git by default
2096 | 
2097 | - [#822](https://github.com/eyaltoledano/claude-task-master/pull/822) [`1bd6d4f`](https://github.com/eyaltoledano/claude-task-master/commit/1bd6d4f2468070690e152e6e63e15a57bc550d90) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve provider validation system with clean constants structure
2098 |   - **Fixed "Invalid provider hint" errors**: Resolved validation failures for Azure, Vertex, and Bedrock providers
2099 |   - **Improved search UX**: Integrated search for better model discovery with real-time filtering
2100 |   - **Better organization**: Moved custom provider options to bottom of model selection with clear section separators
2101 | 
2102 |   This change ensures all custom providers (Azure, Vertex, Bedrock, OpenRouter, Ollama) work correctly in `task-master models --setup`
2103 | 
2104 | - [#633](https://github.com/eyaltoledano/claude-task-master/pull/633) [`3a2325a`](https://github.com/eyaltoledano/claude-task-master/commit/3a2325a963fed82377ab52546eedcbfebf507a7e) Thanks [@nmarley](https://github.com/nmarley)! - Fix weird `task-master init` bug when using in certain environments
2105 | 
2106 | - [#831](https://github.com/eyaltoledano/claude-task-master/pull/831) [`b592dff`](https://github.com/eyaltoledano/claude-task-master/commit/b592dff8bc5c5d7966843fceaa0adf4570934336) Thanks [@joedanz](https://github.com/joedanz)! - Rename Roo Code Boomerang role to Orchestrator
2107 | 
2108 | - [#830](https://github.com/eyaltoledano/claude-task-master/pull/830) [`e9d1bc2`](https://github.com/eyaltoledano/claude-task-master/commit/e9d1bc2385521c08374a85eba7899e878a51066c) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve mcp keys check in cursor
2109 | 
2110 | ## 0.17.1
2111 | 
2112 | ### Patch Changes
2113 | 
2114 | - [#789](https://github.com/eyaltoledano/claude-task-master/pull/789) [`8cde6c2`](https://github.com/eyaltoledano/claude-task-master/commit/8cde6c27087f401d085fe267091ae75334309d96) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix contextGatherer bug when adding a task `Cannot read properties of undefined (reading 'forEach')`
2115 | 
2116 | ## 0.18.0-rc.0
2117 | 
2118 | ### Minor Changes
2119 | 
2120 | - [#830](https://github.com/eyaltoledano/claude-task-master/pull/830) [`e9d1bc2`](https://github.com/eyaltoledano/claude-task-master/commit/e9d1bc2385521c08374a85eba7899e878a51066c) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Can now configure baseURL of provider with `<PROVIDER>_BASE_URL`
2121 |   - For example:
2122 |     - `OPENAI_BASE_URL`
2123 | 
2124 | - [#460](https://github.com/eyaltoledano/claude-task-master/pull/460) [`a09a2d0`](https://github.com/eyaltoledano/claude-task-master/commit/a09a2d0967a10276623e3f3ead3ed577c15ce62f) Thanks [@joedanz](https://github.com/joedanz)! - Added comprehensive rule profile management:
2125 | 
2126 |   **New Profile Support**: Added comprehensive IDE profile support with eight specialized profiles: Claude Code, Cline, Codex, Cursor, Roo, Trae, VS Code, and Windsurf. Each profile is optimized for its respective IDE with appropriate mappings and configuration.
2127 |   **Initialization**: You can now specify which rule profiles to include at project initialization using `--rules <profiles>` or `-r <profiles>` (e.g., `task-master init -r cursor,roo`). Only the selected profiles and configuration are included.
2128 |   **Add/Remove Commands**: `task-master rules add <profiles>` and `task-master rules remove <profiles>` let you manage specific rule profiles and MCP config after initialization, supporting multiple profiles at once.
2129 |   **Interactive Setup**: `task-master rules setup` launches an interactive prompt to select which rule profiles to add to your project. This does **not** re-initialize your project or affect shell aliases; it only manages rules.
2130 |   **Selective Removal**: Rules removal intelligently preserves existing non-Task Master rules and files and only removes Task Master-specific rules. Profile directories are only removed when completely empty and all conditions are met (no existing rules, no other files/folders, MCP config completely removed).
2131 |   **Safety Features**: Confirmation messages clearly explain that only Task Master-specific rules and MCP configurations will be removed, while preserving existing custom rules and other files.
2132 |   **Robust Validation**: Includes comprehensive checks for array types in MCP config processing and error handling throughout the rules management system.
2133 | 
2134 |   This enables more flexible, rule-specific project setups with intelligent cleanup that preserves user customizations while safely managing Task Master components.
2135 |   - Resolves #338
2136 | 
2137 | - [#804](https://github.com/eyaltoledano/claude-task-master/pull/804) [`1b8c320`](https://github.com/eyaltoledano/claude-task-master/commit/1b8c320c570473082f1eb4bf9628bff66e799092) Thanks [@ejones40](https://github.com/ejones40)! - Add better support for python projects by adding `pyproject.toml` as a projectRoot marker
2138 | 
2139 | - [#743](https://github.com/eyaltoledano/claude-task-master/pull/743) [`a2a3229`](https://github.com/eyaltoledano/claude-task-master/commit/a2a3229fd01e24a5838f11a3938a77250101e184) Thanks [@joedanz](https://github.com/joedanz)! - - **Git Worktree Detection:**
2140 |   - Now properly skips Git initialization when inside existing Git worktree
2141 |   - Prevents accidental nested repository creation
2142 |   - **Flag System Overhaul:**
2143 |     - `--git`/`--no-git` controls repository initialization
2144 |     - `--aliases`/`--no-aliases` consistently manages shell alias creation
2145 |     - `--git-tasks`/`--no-git-tasks` controls whether task files are stored in Git
2146 |     - `--dry-run` accurately previews all initialization behaviors
2147 |   - **GitTasks Functionality:**
2148 |     - New `--git-tasks` flag includes task files in Git (comments them out in .gitignore)
2149 |     - New `--no-git-tasks` flag excludes task files from Git (default behavior)
2150 |     - Supports both CLI and MCP interfaces with proper parameter passing
2151 | 
2152 |   **Implementation Details:**
2153 |   - Added explicit Git worktree detection before initialization
2154 |   - Refactored flag processing to ensure consistent behavior
2155 |   - Fixes #734
2156 | 
2157 | - [#829](https://github.com/eyaltoledano/claude-task-master/pull/829) [`4b0c9d9`](https://github.com/eyaltoledano/claude-task-master/commit/4b0c9d9af62d00359fca3f43283cf33223d410bc) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add Claude Code provider support
2158 | 
2159 |   Introduces a new provider that enables using Claude models (Opus and Sonnet) through the Claude Code CLI without requiring an API key.
2160 | 
2161 |   Key features:
2162 |   - New claude-code provider with support for opus and sonnet models
2163 |   - No API key required - uses local Claude Code CLI installation
2164 |   - Optional dependency - won't affect users who don't need Claude Code
2165 |   - Lazy loading ensures the provider only loads when requested
2166 |   - Full integration with existing Task Master commands and workflows
2167 |   - Comprehensive test coverage for reliability
2168 |   - New --claude-code flag for the models command
2169 | 
2170 |   Users can now configure Claude Code models with:
2171 |   task-master models --set-main sonnet --claude-code
2172 |   task-master models --set-research opus --claude-code
2173 | 
2174 |   The @anthropic-ai/claude-code package is optional and won't be installed unless explicitly needed.
2175 | 
2176 | ### Patch Changes
2177 | 
2178 | - [#827](https://github.com/eyaltoledano/claude-task-master/pull/827) [`5da5b59`](https://github.com/eyaltoledano/claude-task-master/commit/5da5b59bdeeb634dcb3adc7a9bc0fc37e004fa0c) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix expand command preserving tagged task structure and preventing data corruption
2179 |   - Enhance E2E tests with comprehensive tag-aware expand testing to verify tag corruption fix
2180 |   - Add new test section for feature-expand tag creation and testing during expand operations
2181 |   - Verify tag preservation during expand, force expand, and expand --all operations
2182 |   - Test that master tag remains intact while feature-expand tag receives subtasks correctly
2183 |   - Fix file path references to use correct .taskmaster/config.json and .taskmaster/tasks/tasks.json locations
2184 |   - All tag corruption verification tests pass successfully, confirming the expand command tag corruption bug fix works as expected
2185 | 
2186 | - [#833](https://github.com/eyaltoledano/claude-task-master/pull/833) [`cf2c066`](https://github.com/eyaltoledano/claude-task-master/commit/cf2c06697a0b5b952fb6ca4b3c923e9892604d08) Thanks [@joedanz](https://github.com/joedanz)! - Call rules interactive setup during init
2187 | 
2188 | - [#826](https://github.com/eyaltoledano/claude-task-master/pull/826) [`7811227`](https://github.com/eyaltoledano/claude-task-master/commit/78112277b3caa4539e6e29805341a944799fb0e7) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improves Amazon Bedrock support
2189 | 
2190 | - [#834](https://github.com/eyaltoledano/claude-task-master/pull/834) [`6483537`](https://github.com/eyaltoledano/claude-task-master/commit/648353794eb60d11ffceda87370a321ad310fbd7) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix issues with task creation/update where subtasks are being created like id: <parent_task>.<subtask> instead if just id: <subtask>
2191 | 
2192 | - [#835](https://github.com/eyaltoledano/claude-task-master/pull/835) [`727f1ec`](https://github.com/eyaltoledano/claude-task-master/commit/727f1ec4ebcbdd82547784c4c113b666af7e122e) Thanks [@joedanz](https://github.com/joedanz)! - Store tasks in Git by default
2193 | 
2194 | - [#822](https://github.com/eyaltoledano/claude-task-master/pull/822) [`1bd6d4f`](https://github.com/eyaltoledano/claude-task-master/commit/1bd6d4f2468070690e152e6e63e15a57bc550d90) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve provider validation system with clean constants structure
2195 |   - **Fixed "Invalid provider hint" errors**: Resolved validation failures for Azure, Vertex, and Bedrock providers
2196 |   - **Improved search UX**: Integrated search for better model discovery with real-time filtering
2197 |   - **Better organization**: Moved custom provider options to bottom of model selection with clear section separators
2198 | 
2199 |   This change ensures all custom providers (Azure, Vertex, Bedrock, OpenRouter, Ollama) work correctly in `task-master models --setup`
2200 | 
2201 | - [#633](https://github.com/eyaltoledano/claude-task-master/pull/633) [`3a2325a`](https://github.com/eyaltoledano/claude-task-master/commit/3a2325a963fed82377ab52546eedcbfebf507a7e) Thanks [@nmarley](https://github.com/nmarley)! - Fix weird `task-master init` bug when using in certain environments
2202 | 
2203 | - [#831](https://github.com/eyaltoledano/claude-task-master/pull/831) [`b592dff`](https://github.com/eyaltoledano/claude-task-master/commit/b592dff8bc5c5d7966843fceaa0adf4570934336) Thanks [@joedanz](https://github.com/joedanz)! - Rename Roo Code Boomerang role to Orchestrator
2204 | 
2205 | - [#830](https://github.com/eyaltoledano/claude-task-master/pull/830) [`e9d1bc2`](https://github.com/eyaltoledano/claude-task-master/commit/e9d1bc2385521c08374a85eba7899e878a51066c) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve mcp keys check in cursor
2206 | 
2207 | ## 0.17.1
2208 | 
2209 | ### Patch Changes
2210 | 
2211 | - [#789](https://github.com/eyaltoledano/claude-task-master/pull/789) [`8cde6c2`](https://github.com/eyaltoledano/claude-task-master/commit/8cde6c27087f401d085fe267091ae75334309d96) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix contextGatherer bug when adding a task `Cannot read properties of undefined (reading 'forEach')`
2212 | 
2213 | ## 0.17.0
2214 | 
2215 | ### Minor Changes
2216 | 
2217 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add comprehensive AI-powered research command with intelligent context gathering and interactive follow-ups.
2218 | 
2219 |   The new `research` command provides AI-powered research capabilities that automatically gather relevant project context to answer your questions. The command intelligently selects context from multiple sources and supports interactive follow-up questions in CLI mode.
2220 | 
2221 |   **Key Features:**
2222 |   - **Intelligent Task Discovery**: Automatically finds relevant tasks and subtasks using fuzzy search based on your query keywords, supplementing any explicitly provided task IDs
2223 |   - **Multi-Source Context**: Gathers context from tasks, files, project structure, and custom text to provide comprehensive answers
2224 |   - **Interactive Follow-ups**: CLI users can ask follow-up questions that build on the conversation history while allowing fresh context discovery for each question
2225 |   - **Flexible Detail Levels**: Choose from low (concise), medium (balanced), or high (comprehensive) response detail levels
2226 |   - **Token Transparency**: Displays detailed token breakdown showing context size, sources, and estimated costs
2227 |   - **Enhanced Display**: Syntax-highlighted code blocks and structured output with clear visual separation
2228 | 
2229 |   **Usage Examples:**
2230 | 
2231 |   ```bash
2232 |   # Basic research with auto-discovered context
2233 |   task-master research "How should I implement user authentication?"
2234 | 
2235 |   # Research with specific task context
2236 |   task-master research "What's the best approach for this?" --id=15,23.2
2237 | 
2238 |   # Research with file context and project tree
2239 |   task-master research "How does the current auth system work?" --files=src/auth.js,config/auth.json --tree
2240 | 
2241 |   # Research with custom context and low detail
2242 |   task-master research "Quick implementation steps?" --context="Using JWT tokens" --detail=low
2243 |   ```
2244 | 
2245 |   **Context Sources:**
2246 |   - **Tasks**: Automatically discovers relevant tasks/subtasks via fuzzy search, plus any explicitly specified via `--id`
2247 |   - **Files**: Include specific files via `--files` for code-aware responses
2248 |   - **Project Tree**: Add `--tree` to include project structure overview
2249 |   - **Custom Context**: Provide additional context via `--context` for domain-specific information
2250 | 
2251 |   **Interactive Features (CLI only):**
2252 |   - Follow-up questions that maintain conversation history
2253 |   - Fresh fuzzy search for each follow-up to discover newly relevant tasks
2254 |   - Cumulative context building across the conversation
2255 |   - Clean visual separation between exchanges
2256 |   - **Save to Tasks**: Save entire research conversations (including follow-ups) directly to task or subtask details with timestamps
2257 |   - **Clean Menu Interface**: Streamlined inquirer-based menu for follow-up actions without redundant UI elements
2258 | 
2259 |   **Save Functionality:**
2260 | 
2261 |   The research command now supports saving complete conversation threads to tasks or subtasks:
2262 |   - Save research results and follow-up conversations to any task (e.g., "15") or subtask (e.g., "15.2")
2263 |   - Automatic timestamping and formatting of conversation history
2264 |   - Validation of task/subtask existence before saving
2265 |   - Appends to existing task details without overwriting content
2266 |   - Supports both CLI interactive mode and MCP programmatic access via `--save-to` flag
2267 | 
2268 |   **Enhanced CLI Options:**
2269 | 
2270 |   ```bash
2271 |   # Auto-save research results to a task
2272 |   task-master research "Implementation approach?" --save-to=15
2273 | 
2274 |   # Combine auto-save with context gathering
2275 |   task-master research "How to optimize this?" --id=23 --save-to=23.1
2276 |   ```
2277 | 
2278 |   **MCP Integration:**
2279 |   - `saveTo` parameter for automatic saving to specified task/subtask ID
2280 |   - Structured response format with telemetry data
2281 |   - Silent operation mode for programmatic usage
2282 |   - Full feature parity with CLI except interactive follow-ups
2283 | 
2284 |   The research command integrates with the existing AI service layer and supports all configured AI providers. Both CLI and MCP interfaces provide comprehensive research capabilities with intelligent context gathering and flexible output options.
2285 | 
2286 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Enhance update-task with --append flag for timestamped task updates
2287 | 
2288 |   Adds the `--append` flag to `update-task` command, enabling it to behave like `update-subtask` with timestamped information appending. This provides more flexible task updating options:
2289 | 
2290 |   **CLI Enhancement:**
2291 |   - `task-master update-task --id=5 --prompt="New info"` - Full task update (existing behavior)
2292 |   - `task-master update-task --id=5 --append --prompt="Progress update"` - Append timestamped info to task details
2293 | 
2294 |   **Full MCP Integration:**
2295 |   - MCP tool `update_task` now supports `append` parameter
2296 |   - Seamless integration with Cursor and other MCP clients
2297 |   - Consistent behavior between CLI and MCP interfaces
2298 | 
2299 |   Instead of requiring separate subtask creation for progress tracking, you can now append timestamped information directly to parent tasks while preserving the option for comprehensive task updates.
2300 | 
2301 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add --tag flag support to core commands for multi-context task management. Commands like parse-prd, analyze-complexity, and others now support targeting specific task lists, enabling rapid prototyping and parallel development workflows.
2302 | 
2303 |   Key features:
2304 |   - parse-prd --tag=feature-name: Parse PRDs into separate task contexts on the fly
2305 |   - analyze-complexity --tag=branch: Generate tag-specific complexity reports
2306 |   - All task operations can target specific contexts while preserving other lists
2307 |   - Non-existent tags are created automatically for seamless workflow
2308 | 
2309 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Introduces Tagged Lists: AI Multi-Context Task Management System
2310 | 
2311 |   This major feature release introduces Tagged Lists, a comprehensive system that transforms Taskmaster into a multi-context task management powerhouse. You can now organize tasks into completely isolated contexts, enabling parallel (agentic) development workflows, team collaboration, and project experimentation without conflicts.
2312 | 
2313 |   **🏷️ Tagged Task Lists Architecture:**
2314 | 
2315 |   The new tagged system fundamentally improves how tasks are organized:
2316 |   - **Legacy Format**: `{ "tasks": [...] }`
2317 |   - **New Tagged Format**: `{ "master": { "tasks": [...], "metadata": {...} }, "feature-xyz": { "tasks": [...], "metadata": {...} } }`
2318 |   - **Automatic Migration**: Existing projects will seamlessly migrate to tagged format with zero user intervention
2319 |   - **State Management**: New `.taskmaster/state.json` tracks current tag, last switched time, migration status and more.
2320 |   - **Configuration Integration**: Enhanced `.taskmaster/config.json` with tag-specific settings and defaults.
2321 | 
2322 |   By default, your existing task list will be migrated to the `master` tag.
2323 | 
2324 |   **🚀 Complete Tag Management Suite:**
2325 | 
2326 |   **Core Tag Commands:**
2327 |   - `task-master tags [--show-metadata]` - List all tags with task counts, completion stats, and metadata
2328 |   - `task-master add-tag <name> [options]` - Create new tag contexts with optional task copying
2329 |   - `task-master delete-tag <name> [--yes]` - Delete tags (and attached tasks) with double confirmation protection
2330 |   - `task-master use-tag <name>` - Switch contexts and immediately see next available task
2331 |   - `task-master rename-tag <old> <new>` - Rename tags with automatic current tag reference updates
2332 |   - `task-master copy-tag <source> <target> [options]` - Duplicate tag contexts for experimentation
2333 | 
2334 |   **🤖 Full MCP Integration for Tag Management:**
2335 | 
2336 |   Task Master's multi-context capabilities are now fully exposed through the MCP server, enabling powerful agentic workflows:
2337 |   - **`list_tags`**: List all available tag contexts.
2338 |   - **`add_tag`**: Programmatically create new tags.
2339 |   - **`delete_tag`**: Remove tag contexts.
2340 |   - **`use_tag`**: Switch the agent's active task context.
2341 |   - **`rename_tag`**: Rename existing tags.
2342 |   - **`copy_tag`**: Duplicate entire task contexts for experimentation.
2343 | 
2344 |   **Tag Creation Options:**
2345 |   - `--copy-from-current` - Copy tasks from currently active tag
2346 |   - `--copy-from=<tag>` - Copy tasks from specific tag
2347 |   - `--from-branch` - Creates a new tag using the active git branch name (for `add-tag` only)
2348 |   - `--description="<text>"` - Add custom tag descriptions
2349 |   - Empty tag creation for fresh contexts
2350 | 
2351 |   **🎯 Universal --tag Flag Support:**
2352 | 
2353 |   Every task operation now supports tag-specific execution:
2354 |   - `task-master list --tag=feature-branch` - View tasks in specific context
2355 |   - `task-master add-task --tag=experiment --prompt="..."` - Create tasks in specific tag
2356 |   - `task-master parse-prd document.txt --tag=v2-redesign` - Parse PRDs into dedicated contexts
2357 |   - `task-master analyze-complexity --tag=performance-work` - Generate tag-specific reports
2358 |   - `task-master set-status --tag=hotfix --id=5 --status=done` - Update tasks in specific contexts
2359 |   - `task-master expand --tag=research --id=3` - Break down tasks within tag contexts
2360 | 
2361 |   This way you or your agent can store out of context tasks into the appropriate tags for later, allowing you to maintain a groomed and scoped master list. Focus on value, not chores.
2362 | 
2363 |   **📊 Enhanced Workflow Features:**
2364 | 
2365 |   **Smart Context Switching:**
2366 |   - `use-tag` command shows immediate next task after switching
2367 |   - Automatic tag creation when targeting non-existent tags
2368 |   - Current tag persistence across terminal sessions
2369 |   - Branch-tag mapping for future Git integration
2370 | 
2371 |   **Intelligent File Management:**
2372 |   - Tag-specific complexity reports: `task-complexity-report_tagname.json`
2373 |   - Master tag uses default filenames: `task-complexity-report.json`
2374 |   - Automatic file isolation prevents cross-tag contamination
2375 | 
2376 |   **Advanced Confirmation Logic:**
2377 |   - Commands only prompt when target tag has existing tasks
2378 |   - Empty tags allow immediate operations without confirmation
2379 |   - Smart append vs overwrite detection
2380 | 
2381 |   **🔄 Seamless Migration & Compatibility:**
2382 | 
2383 |   **Zero-Disruption Migration:**
2384 |   - Existing `tasks.json` files automatically migrate on first command
2385 |   - Master tag receives proper metadata (creation date, description)
2386 |   - Migration notice shown once with helpful explanation
2387 |   - All existing commands work identically to before
2388 | 
2389 |   **State Management:**
2390 |   - `.taskmaster/state.json` tracks current tag and migration status
2391 |   - Automatic state creation and maintenance
2392 |   - Branch-tag mapping foundation for Git integration
2393 |   - Migration notice tracking to avoid repeated notifications
2394 |   - Grounds for future context additions
2395 | 
2396 |   **Backward Compatibility:**
2397 |   - All existing workflows continue unchanged
2398 |   - Legacy commands work exactly as before
2399 |   - Gradual adoption - users can ignore tags entirely if desired
2400 |   - No breaking changes to existing tasks or file formats
2401 | 
2402 |   **💡 Real-World Use Cases:**
2403 | 
2404 |   **Team Collaboration:**
2405 |   - `task-master add-tag alice --copy-from-current` - Create teammate-specific contexts
2406 |   - `task-master add-tag bob --copy-from=master` - Onboard new team members
2407 |   - `task-master use-tag alice` - Switch to teammate's work context
2408 | 
2409 |   **Feature Development:**
2410 |   - `task-master parse-prd feature-spec.txt --tag=user-auth` - Dedicated feature planning
2411 |   - `task-master add-tag experiment --copy-from=user-auth` - Safe experimentation
2412 |   - `task-master analyze-complexity --tag=user-auth` - Feature-specific analysis
2413 | 
2414 |   **Release Management:**
2415 |   - `task-master add-tag v2.0 --description="Next major release"` - Version-specific planning
2416 |   - `task-master copy-tag master v2.1` - Release branch preparation
2417 |   - `task-master use-tag hotfix` - Emergency fix context
2418 | 
2419 |   **Project Phases:**
2420 |   - `task-master add-tag research --description="Discovery phase"` - Research tasks
2421 |   - `task-master add-tag implementation --copy-from=research` - Development phase
2422 |   - `task-master add-tag testing --copy-from=implementation` - QA phase
2423 | 
2424 |   **🛠️ Technical Implementation:**
2425 | 
2426 |   **Data Structure:**
2427 |   - Tagged format with complete isolation between contexts
2428 |   - Rich metadata per tag (creation date, description, update tracking)
2429 |   - Automatic metadata enhancement for existing tags
2430 |   - Clean separation of tag data and internal state
2431 | 
2432 |   **Performance Optimizations:**
2433 |   - Dynamic task counting without stored counters
2434 |   - Efficient tag resolution and caching
2435 |   - Minimal file I/O with smart data loading
2436 |   - Responsive table layouts adapting to terminal width
2437 | 
2438 |   **Error Handling:**
2439 |   - Comprehensive validation for tag names (alphanumeric, hyphens, underscores)
2440 |   - Reserved name protection (master, main, default)
2441 |   - Graceful handling of missing tags and corrupted data
2442 |   - Detailed error messages with suggested corrections
2443 | 
2444 |   This release establishes the foundation for advanced multi-context workflows while maintaining the simplicity and power that makes Task Master effective for individual developers.
2445 | 
2446 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Research Save-to-File Feature & Critical MCP Tag Corruption Fix
2447 | 
2448 |   **🔬 New Research Save-to-File Functionality:**
2449 | 
2450 |   Added comprehensive save-to-file capability to the research command, enabling users to preserve research sessions for future reference and documentation.
2451 | 
2452 |   **CLI Integration:**
2453 |   - New `--save-file` flag for `task-master research` command
2454 |   - Consistent with existing `--save` and `--save-to` flags for intuitive usage
2455 |   - Interactive "Save to file" option in follow-up questions menu
2456 | 
2457 |   **MCP Integration:**
2458 |   - New `saveToFile` boolean parameter for the `research` MCP tool
2459 |   - Enables programmatic research saving for AI agents and integrated tools
2460 | 
2461 |   **File Management:**
2462 |   - Automatically creates `.taskmaster/docs/research/` directory structure
2463 |   - Generates timestamped, slugified filenames (e.g., `2025-01-13_what-is-typescript.md`)
2464 |   - Comprehensive Markdown format with metadata headers including query, timestamp, and context sources
2465 |   - Clean conversation history formatting without duplicate information
2466 | 
2467 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - No longer automatically creates individual task files as they are not used by the applicatoin. You can still generate them anytime using the `generate` command.
2468 | 
2469 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Enhanced get-task/show command to support comma-separated task IDs for efficient batch operations
2470 | 
2471 |   **New Features:**
2472 |   - **Multiple Task Retrieval**: Pass comma-separated IDs to get/show multiple tasks at once (e.g., `task-master show 1,3,5` or MCP `get_task` with `id: "1,3,5"`)
2473 |   - **Smart Display Logic**: Single ID shows detailed view, multiple IDs show compact summary table with interactive options
2474 |   - **Batch Action Menu**: Interactive menu for multiple tasks with copy-paste ready commands for common operations (mark as done/in-progress, expand all, view dependencies, etc.)
2475 |   - **MCP Array Response**: MCP tool returns structured array of task objects for efficient AI agent context gathering
2476 | 
2477 |   **Benefits:**
2478 |   - **Faster Context Gathering**: AI agents can collect multiple tasks/subtasks in one call instead of iterating
2479 |   - **Improved Workflow**: Interactive batch operations reduce repetitive command execution
2480 |   - **Better UX**: Responsive layout adapts to terminal width, maintains consistency with existing UI patterns
2481 |   - **API Efficiency**: RESTful array responses in MCP format enable more sophisticated integrations
2482 | 
2483 |   This enhancement maintains full backward compatibility while significantly improving efficiency for both human users and AI agents working with multiple tasks.
2484 | 
2485 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adds support for filtering tasks by multiple statuses at once using comma-separated statuses.
2486 | 
2487 |   Example: `cancelled,deferred`
2488 | 
2489 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adds tag to CLI and MCP outputs/responses so you know which tag you are performing operations on.
2490 | 
2491 | ### Patch Changes
2492 | 
2493 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`5ec1f61`](https://github.com/eyaltoledano/claude-task-master/commit/5ec1f61c13f468648b7fdc8fa112e95aec25f76d) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Fix Cursor deeplink installation by providing copy-paste instructions for GitHub compatibility
2494 | 
2495 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Fix critical bugs in task move functionality:
2496 |   - **Fixed moving tasks to become subtasks of empty parents**: When moving a task to become a subtask of a parent that had no existing subtasks (e.g., task 89 → task 98.1), the operation would fail with validation errors.
2497 |   - **Fixed moving subtasks between parents**: Subtasks can now be properly moved between different parent tasks, including to parents that previously had no subtasks.
2498 |   - **Improved comma-separated batch moves**: Multiple tasks can now be moved simultaneously using comma-separated IDs (e.g., "88,90" → "92,93") with proper error handling and atomic operations.
2499 | 
2500 |   These fixes enables proper task hierarchy reorganization for corner cases that were previously broken.
2501 | 
2502 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`d76bea4`](https://github.com/eyaltoledano/claude-task-master/commit/d76bea49b381c523183f39e33c2a4269371576ed) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Update o3 model price
2503 | 
2504 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`0849c0c`](https://github.com/eyaltoledano/claude-task-master/commit/0849c0c2cedb16ac44ba5cc2d109625a9b4efd67) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Fixes issue with expand CLI command "Complexity report not found"
2505 |   - Closes #735
2506 |   - Closes #728
2507 | 
2508 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Fix issue with generate command which was creating tasks in the legacy tasks location.
2509 | 
2510 |       - No longer creates individual task files automatically. You can still use `generate` if you need to create our update your task files.
2511 | 
2512 | - [#779](https://github.com/eyaltoledano/claude-task-master/pull/779) [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Improves dependency management when moving tasks by updating subtask dependencies that reference sibling subtasks by their old parent-based ID
2513 | 
2514 | - Updated dependencies [[`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f), [`5ec1f61`](https://github.com/eyaltoledano/claude-task-master/commit/5ec1f61c13f468648b7fdc8fa112e95aec25f76d), [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f), [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f), [`d76bea4`](https://github.com/eyaltoledano/claude-task-master/commit/d76bea49b381c523183f39e33c2a4269371576ed), [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f), [`0849c0c`](https://github.com/eyaltoledano/claude-task-master/commit/0849c0c2cedb16ac44ba5cc2d109625a9b4efd67), [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f), [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f), [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f), [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f), [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f), [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f), [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f), [`c0b3f43`](https://github.com/eyaltoledano/claude-task-master/commit/c0b3f432a60891550b00acb113dc877bd432995f)]:
2515 |   - [email protected]
2516 | 
2517 | ## 0.16.2
2518 | 
2519 | ### Patch Changes
2520 | 
2521 | - [#695](https://github.com/eyaltoledano/claude-task-master/pull/695) [`1ece6f1`](https://github.com/eyaltoledano/claude-task-master/commit/1ece6f19048df6ae2a0b25cbfb84d2c0f430642c) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - improve findTasks algorithm for resolving tasks path
2522 | 
2523 | - [#695](https://github.com/eyaltoledano/claude-task-master/pull/695) [`ee0be04`](https://github.com/eyaltoledano/claude-task-master/commit/ee0be04302cc602246de5cd296291db69bc8b300) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix update tool on MCP giving `No valid tasks found`
2524 | 
2525 | - [#699](https://github.com/eyaltoledano/claude-task-master/pull/699) [`27edbd8`](https://github.com/eyaltoledano/claude-task-master/commit/27edbd8f3fe5e2ac200b80e7f27f4c0e74a074d6) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Enhanced add-task fuzzy search intelligence and improved user experience
2526 | 
2527 |   **Smarter Task Discovery:**
2528 |   - Remove hardcoded category system that always matched "Task management"
2529 |   - Eliminate arbitrary limits on fuzzy search results (5→25 high relevance, 3→10 medium relevance, 8→20 detailed tasks)
2530 |   - Improve semantic weighting in Fuse.js search (details=3, description=2, title=1.5) for better relevance
2531 |   - Generate context-driven task recommendations based on true semantic similarity
2532 | 
2533 |   **Enhanced Terminal Experience:**
2534 |   - Fix duplicate banner display issue that was "eating" terminal history (closes #553)
2535 |   - Remove console.clear() and redundant displayBanner() calls from UI functions
2536 |   - Preserve command history for better development workflow
2537 |   - Streamline banner display across all commands (list, next, show, set-status, clear-subtasks, dependency commands)
2538 | 
2539 |   **Visual Improvements:**
2540 |   - Replace emoji complexity indicators with clean filled circle characters (●) for professional appearance
2541 |   - Improve consistency and readability of task complexity display
2542 | 
2543 |   **AI Provider Compatibility:**
2544 |   - Change generateObject mode from 'tool' to 'auto' for better cross-provider compatibility
2545 |   - Add qwen3-235n-a22b:free model support (closes #687)
2546 |   - Add smart warnings for free OpenRouter models with limitations (rate limits, restricted context, no tool_use)
2547 | 
2548 |   **Technical Improvements:**
2549 |   - Enhanced context generation in add-task to rely on semantic similarity rather than rigid pattern matching
2550 |   - Improved dependency analysis and common pattern detection
2551 |   - Better handling of task relationships and relevance scoring
2552 |   - More intelligent task suggestion algorithms
2553 | 
2554 |   The add-task system now provides truly relevant task context based on semantic understanding rather than arbitrary categories and limits, while maintaining a cleaner and more professional terminal experience.
2555 | 
2556 | - [#655](https://github.com/eyaltoledano/claude-task-master/pull/655) [`edaa5fe`](https://github.com/eyaltoledano/claude-task-master/commit/edaa5fe0d56e0e4e7c4370670a7a388eebd922ac) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix double .taskmaster directory paths in file resolution utilities
2557 |   - Closes #636
2558 | 
2559 | - [#671](https://github.com/eyaltoledano/claude-task-master/pull/671) [`86ea6d1`](https://github.com/eyaltoledano/claude-task-master/commit/86ea6d1dbc03eeb39f524f565b50b7017b1d2c9c) Thanks [@joedanz](https://github.com/joedanz)! - Add one-click MCP server installation for Cursor
2560 | 
2561 | - [#699](https://github.com/eyaltoledano/claude-task-master/pull/699) [`2e55757`](https://github.com/eyaltoledano/claude-task-master/commit/2e55757b2698ba20b78f09ec0286951297510b8e) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add sync-readme command for a task export to GitHub README
2562 | 
2563 |   Introduces a new `sync-readme` command that exports your task list to your project's README.md file.
2564 | 
2565 |   **Features:**
2566 |   - **Flexible filtering**: Supports `--status` filtering (e.g., pending, done) and `--with-subtasks` flag
2567 |   - **Smart content management**: Automatically replaces existing exports or appends to new READMEs
2568 |   - **Metadata display**: Shows export timestamp, subtask inclusion status, and filter settings
2569 | 
2570 |   **Usage:**
2571 |   - `task-master sync-readme` - Export tasks without subtasks
2572 |   - `task-master sync-readme --with-subtasks` - Include subtasks in export
2573 |   - `task-master sync-readme --status=pending` - Only export pending tasks
2574 |   - `task-master sync-readme --status=done --with-subtasks` - Export completed tasks with subtasks
2575 | 
2576 |   Perfect for showcasing project progress on GitHub. Experimental. Open to feedback.
2577 | 
2578 | ## 0.16.2
2579 | 
2580 | ### Patch Changes
2581 | 
2582 | - [#695](https://github.com/eyaltoledano/claude-task-master/pull/695) [`1ece6f1`](https://github.com/eyaltoledano/claude-task-master/commit/1ece6f19048df6ae2a0b25cbfb84d2c0f430642c) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - improve findTasks algorithm for resolving tasks path
2583 | 
2584 | - [#695](https://github.com/eyaltoledano/claude-task-master/pull/695) [`ee0be04`](https://github.com/eyaltoledano/claude-task-master/commit/ee0be04302cc602246de5cd296291db69bc8b300) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix update tool on MCP giving `No valid tasks found`
2585 | 
2586 | - [#699](https://github.com/eyaltoledano/claude-task-master/pull/699) [`27edbd8`](https://github.com/eyaltoledano/claude-task-master/commit/27edbd8f3fe5e2ac200b80e7f27f4c0e74a074d6) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Enhanced add-task fuzzy search intelligence and improved user experience
2587 | 
2588 |   **Smarter Task Discovery:**
2589 |   - Remove hardcoded category system that always matched "Task management"
2590 |   - Eliminate arbitrary limits on fuzzy search results (5→25 high relevance, 3→10 medium relevance, 8→20 detailed tasks)
2591 |   - Improve semantic weighting in Fuse.js search (details=3, description=2, title=1.5) for better relevance
2592 |   - Generate context-driven task recommendations based on true semantic similarity
2593 | 
2594 |   **Enhanced Terminal Experience:**
2595 |   - Fix duplicate banner display issue that was "eating" terminal history (closes #553)
2596 |   - Remove console.clear() and redundant displayBanner() calls from UI functions
2597 |   - Preserve command history for better development workflow
2598 |   - Streamline banner display across all commands (list, next, show, set-status, clear-subtasks, dependency commands)
2599 | 
2600 |   **Visual Improvements:**
2601 |   - Replace emoji complexity indicators with clean filled circle characters (●) for professional appearance
2602 |   - Improve consistency and readability of task complexity display
2603 | 
2604 |   **AI Provider Compatibility:**
2605 |   - Change generateObject mode from 'tool' to 'auto' for better cross-provider compatibility
2606 |   - Add qwen3-235n-a22b:free model support (closes #687)
2607 |   - Add smart warnings for free OpenRouter models with limitations (rate limits, restricted context, no tool_use)
2608 | 
2609 |   **Technical Improvements:**
2610 |   - Enhanced context generation in add-task to rely on semantic similarity rather than rigid pattern matching
2611 |   - Improved dependency analysis and common pattern detection
2612 |   - Better handling of task relationships and relevance scoring
2613 |   - More intelligent task suggestion algorithms
2614 | 
2615 |   The add-task system now provides truly relevant task context based on semantic understanding rather than arbitrary categories and limits, while maintaining a cleaner and more professional terminal experience.
2616 | 
2617 | - [#655](https://github.com/eyaltoledano/claude-task-master/pull/655) [`edaa5fe`](https://github.com/eyaltoledano/claude-task-master/commit/edaa5fe0d56e0e4e7c4370670a7a388eebd922ac) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix double .taskmaster directory paths in file resolution utilities
2618 |   - Closes #636
2619 | 
2620 | - [#671](https://github.com/eyaltoledano/claude-task-master/pull/671) [`86ea6d1`](https://github.com/eyaltoledano/claude-task-master/commit/86ea6d1dbc03eeb39f524f565b50b7017b1d2c9c) Thanks [@joedanz](https://github.com/joedanz)! - Add one-click MCP server installation for Cursor
2621 | 
2622 | - [#699](https://github.com/eyaltoledano/claude-task-master/pull/699) [`2e55757`](https://github.com/eyaltoledano/claude-task-master/commit/2e55757b2698ba20b78f09ec0286951297510b8e) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add sync-readme command for a task export to GitHub README
2623 | 
2624 |   Introduces a new `sync-readme` command that exports your task list to your project's README.md file.
2625 | 
2626 |   **Features:**
2627 |   - **Flexible filtering**: Supports `--status` filtering (e.g., pending, done) and `--with-subtasks` flag
2628 |   - **Smart content management**: Automatically replaces existing exports or appends to new READMEs
2629 |   - **Metadata display**: Shows export timestamp, subtask inclusion status, and filter settings
2630 | 
2631 |   **Usage:**
2632 |   - `task-master sync-readme` - Export tasks without subtasks
2633 |   - `task-master sync-readme --with-subtasks` - Include subtasks in export
2634 |   - `task-master sync-readme --status=pending` - Only export pending tasks
2635 |   - `task-master sync-readme --status=done --with-subtasks` - Export completed tasks with subtasks
2636 | 
2637 |   Perfect for showcasing project progress on GitHub. Experimental. Open to feedback.
2638 | 
2639 | ## 0.16.2-rc.0
2640 | 
2641 | ### Patch Changes
2642 | 
2643 | - [#655](https://github.com/eyaltoledano/claude-task-master/pull/655) [`edaa5fe`](https://github.com/eyaltoledano/claude-task-master/commit/edaa5fe0d56e0e4e7c4370670a7a388eebd922ac) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix double .taskmaster directory paths in file resolution utilities
2644 |   - Closes #636
2645 | 
2646 | - [#671](https://github.com/eyaltoledano/claude-task-master/pull/671) [`86ea6d1`](https://github.com/eyaltoledano/claude-task-master/commit/86ea6d1dbc03eeb39f524f565b50b7017b1d2c9c) Thanks [@joedanz](https://github.com/joedanz)! - Add one-click MCP server installation for Cursor
2647 | 
2648 | ## 0.16.1
2649 | 
2650 | ### Patch Changes
2651 | 
2652 | - [#641](https://github.com/eyaltoledano/claude-task-master/pull/641) [`ad61276`](https://github.com/eyaltoledano/claude-task-master/commit/ad612763ffbdd35aa1b593c9613edc1dc27a8856) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix bedrock issues
2653 | 
2654 | - [#648](https://github.com/eyaltoledano/claude-task-master/pull/648) [`9b4168b`](https://github.com/eyaltoledano/claude-task-master/commit/9b4168bb4e4dfc2f4fb0cf6bd5f81a8565879176) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP tool calls logging errors
2655 | 
2656 | - [#641](https://github.com/eyaltoledano/claude-task-master/pull/641) [`ad61276`](https://github.com/eyaltoledano/claude-task-master/commit/ad612763ffbdd35aa1b593c9613edc1dc27a8856) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Update rules for new directory structure
2657 | 
2658 | - [#648](https://github.com/eyaltoledano/claude-task-master/pull/648) [`9b4168b`](https://github.com/eyaltoledano/claude-task-master/commit/9b4168bb4e4dfc2f4fb0cf6bd5f81a8565879176) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix bug in expand_all mcp tool
2659 | 
2660 | - [#641](https://github.com/eyaltoledano/claude-task-master/pull/641) [`ad61276`](https://github.com/eyaltoledano/claude-task-master/commit/ad612763ffbdd35aa1b593c9613edc1dc27a8856) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP crashing after certain commands due to console logs
2661 | 
2662 | ## 0.16.0
2663 | 
2664 | ### Minor Changes
2665 | 
2666 | - [#607](https://github.com/eyaltoledano/claude-task-master/pull/607) [`6a8a68e`](https://github.com/eyaltoledano/claude-task-master/commit/6a8a68e1a3f34dcdf40b355b4602a08d291f8e38) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add AWS bedrock support
2667 | 
2668 | - [#607](https://github.com/eyaltoledano/claude-task-master/pull/607) [`6a8a68e`](https://github.com/eyaltoledano/claude-task-master/commit/6a8a68e1a3f34dcdf40b355b4602a08d291f8e38) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - # Add Google Vertex AI Provider Integration
2669 |   - Implemented `VertexAIProvider` class extending BaseAIProvider
2670 |   - Added authentication and configuration handling for Vertex AI
2671 |   - Updated configuration manager with Vertex-specific getters
2672 |   - Modified AI services unified system to integrate the provider
2673 |   - Added documentation for Vertex AI setup and configuration
2674 |   - Updated environment variable examples for Vertex AI support
2675 |   - Implemented specialized error handling for Vertex-specific issues
2676 | 
2677 | - [#607](https://github.com/eyaltoledano/claude-task-master/pull/607) [`6a8a68e`](https://github.com/eyaltoledano/claude-task-master/commit/6a8a68e1a3f34dcdf40b355b4602a08d291f8e38) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add support for Azure
2678 | 
2679 | - [#612](https://github.com/eyaltoledano/claude-task-master/pull/612) [`669b744`](https://github.com/eyaltoledano/claude-task-master/commit/669b744ced454116a7b29de6c58b4b8da977186a) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Increased minimum required node version to > 18 (was > 14)
2680 | 
2681 | - [#607](https://github.com/eyaltoledano/claude-task-master/pull/607) [`6a8a68e`](https://github.com/eyaltoledano/claude-task-master/commit/6a8a68e1a3f34dcdf40b355b4602a08d291f8e38) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Renamed baseUrl to baseURL
2682 | 
2683 | - [#604](https://github.com/eyaltoledano/claude-task-master/pull/604) [`80735f9`](https://github.com/eyaltoledano/claude-task-master/commit/80735f9e60c7dda7207e169697f8ac07b6733634) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add TASK_MASTER_PROJECT_ROOT env variable supported in mcp.json and .env for project root resolution
2684 |   - Some users were having issues where the MCP wasn't able to detect the location of their project root, you can now set the `TASK_MASTER_PROJECT_ROOT` environment variable to the root of your project.
2685 | 
2686 | - [#619](https://github.com/eyaltoledano/claude-task-master/pull/619) [`3f64202`](https://github.com/eyaltoledano/claude-task-master/commit/3f64202c9feef83f2bf383c79e4367d337c37e20) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Consolidate Task Master files into unified .taskmaster directory structure
2687 | 
2688 |   This release introduces a new consolidated directory structure that organizes all Task Master files under a single `.taskmaster/` directory for better project organization and cleaner workspace management.
2689 | 
2690 |   **New Directory Structure:**
2691 |   - `.taskmaster/tasks/` - Task files (previously `tasks/`)
2692 |   - `.taskmaster/docs/` - Documentation including PRD files (previously `scripts/`)
2693 |   - `.taskmaster/reports/` - Complexity analysis reports (previously `scripts/`)
2694 |   - `.taskmaster/templates/` - Template files like example PRD
2695 |   - `.taskmaster/config.json` - Configuration (previously `.taskmasterconfig`)
2696 | 
2697 |   **Migration & Backward Compatibility:**
2698 |   - Existing projects continue to work with legacy file locations
2699 |   - New projects use the consolidated structure automatically
2700 |   - Run `task-master migrate` to move existing projects to the new structure
2701 |   - All CLI commands and MCP tools automatically detect and use appropriate file locations
2702 | 
2703 |   **Benefits:**
2704 |   - Cleaner project root with Task Master files organized in one location
2705 |   - Reduced file scatter across multiple directories
2706 |   - Improved project navigation and maintenance
2707 |   - Consistent file organization across all Task Master projects
2708 | 
2709 |   This change maintains full backward compatibility while providing a migration path to the improved structure.
2710 | 
2711 | ### Patch Changes
2712 | 
2713 | - [#607](https://github.com/eyaltoledano/claude-task-master/pull/607) [`6a8a68e`](https://github.com/eyaltoledano/claude-task-master/commit/6a8a68e1a3f34dcdf40b355b4602a08d291f8e38) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix max_tokens error when trying to use claude-sonnet-4 and claude-opus-4
2714 | 
2715 | - [#625](https://github.com/eyaltoledano/claude-task-master/pull/625) [`2d520de`](https://github.com/eyaltoledano/claude-task-master/commit/2d520de2694da3efe537b475ca52baf3c869edda) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix add-task MCP command causing an error
2716 | 
2717 | ## 0.16.0-rc.0
2718 | 
2719 | ### Minor Changes
2720 | 
2721 | - [#607](https://github.com/eyaltoledano/claude-task-master/pull/607) [`6a8a68e`](https://github.com/eyaltoledano/claude-task-master/commit/6a8a68e1a3f34dcdf40b355b4602a08d291f8e38) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add AWS bedrock support
2722 | 
2723 | - [#607](https://github.com/eyaltoledano/claude-task-master/pull/607) [`6a8a68e`](https://github.com/eyaltoledano/claude-task-master/commit/6a8a68e1a3f34dcdf40b355b4602a08d291f8e38) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - # Add Google Vertex AI Provider Integration
2724 |   - Implemented `VertexAIProvider` class extending BaseAIProvider
2725 |   - Added authentication and configuration handling for Vertex AI
2726 |   - Updated configuration manager with Vertex-specific getters
2727 |   - Modified AI services unified system to integrate the provider
2728 |   - Added documentation for Vertex AI setup and configuration
2729 |   - Updated environment variable examples for Vertex AI support
2730 |   - Implemented specialized error handling for Vertex-specific issues
2731 | 
2732 | - [#607](https://github.com/eyaltoledano/claude-task-master/pull/607) [`6a8a68e`](https://github.com/eyaltoledano/claude-task-master/commit/6a8a68e1a3f34dcdf40b355b4602a08d291f8e38) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add support for Azure
2733 | 
2734 | - [#612](https://github.com/eyaltoledano/claude-task-master/pull/612) [`669b744`](https://github.com/eyaltoledano/claude-task-master/commit/669b744ced454116a7b29de6c58b4b8da977186a) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Increased minimum required node version to > 18 (was > 14)
2735 | 
2736 | - [#607](https://github.com/eyaltoledano/claude-task-master/pull/607) [`6a8a68e`](https://github.com/eyaltoledano/claude-task-master/commit/6a8a68e1a3f34dcdf40b355b4602a08d291f8e38) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Renamed baseUrl to baseURL
2737 | 
2738 | - [#604](https://github.com/eyaltoledano/claude-task-master/pull/604) [`80735f9`](https://github.com/eyaltoledano/claude-task-master/commit/80735f9e60c7dda7207e169697f8ac07b6733634) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add TASK_MASTER_PROJECT_ROOT env variable supported in mcp.json and .env for project root resolution
2739 |   - Some users were having issues where the MCP wasn't able to detect the location of their project root, you can now set the `TASK_MASTER_PROJECT_ROOT` environment variable to the root of your project.
2740 | 
2741 | - [#619](https://github.com/eyaltoledano/claude-task-master/pull/619) [`3f64202`](https://github.com/eyaltoledano/claude-task-master/commit/3f64202c9feef83f2bf383c79e4367d337c37e20) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Consolidate Task Master files into unified .taskmaster directory structure
2742 | 
2743 |   This release introduces a new consolidated directory structure that organizes all Task Master files under a single `.taskmaster/` directory for better project organization and cleaner workspace management.
2744 | 
2745 |   **New Directory Structure:**
2746 |   - `.taskmaster/tasks/` - Task files (previously `tasks/`)
2747 |   - `.taskmaster/docs/` - Documentation including PRD files (previously `scripts/`)
2748 |   - `.taskmaster/reports/` - Complexity analysis reports (previously `scripts/`)
2749 |   - `.taskmaster/templates/` - Template files like example PRD
2750 |   - `.taskmaster/config.json` - Configuration (previously `.taskmasterconfig`)
2751 | 
2752 |   **Migration & Backward Compatibility:**
2753 |   - Existing projects continue to work with legacy file locations
2754 |   - New projects use the consolidated structure automatically
2755 |   - Run `task-master migrate` to move existing projects to the new structure
2756 |   - All CLI commands and MCP tools automatically detect and use appropriate file locations
2757 | 
2758 |   **Benefits:**
2759 |   - Cleaner project root with Task Master files organized in one location
2760 |   - Reduced file scatter across multiple directories
2761 |   - Improved project navigation and maintenance
2762 |   - Consistent file organization across all Task Master projects
2763 | 
2764 |   This change maintains full backward compatibility while providing a migration path to the improved structure.
2765 | 
2766 | ### Patch Changes
2767 | 
2768 | - [#607](https://github.com/eyaltoledano/claude-task-master/pull/607) [`6a8a68e`](https://github.com/eyaltoledano/claude-task-master/commit/6a8a68e1a3f34dcdf40b355b4602a08d291f8e38) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix max_tokens error when trying to use claude-sonnet-4 and claude-opus-4
2769 | 
2770 | - [#597](https://github.com/eyaltoledano/claude-task-master/pull/597) [`2d520de`](https://github.com/eyaltoledano/claude-task-master/commit/2d520de2694da3efe537b475ca52baf3c869edda) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Fix add-task MCP command causing an error
2771 | 
2772 | ## 0.15.0
2773 | 
2774 | ### Minor Changes
2775 | 
2776 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`09add37`](https://github.com/eyaltoledano/claude-task-master/commit/09add37423d70b809d5c28f3cde9fccd5a7e64e7) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Added comprehensive Ollama model validation and interactive setup support
2777 |   - **Interactive Setup Enhancement**: Added "Custom Ollama model" option to `task-master models --setup`, matching the existing OpenRouter functionality
2778 |   - **Live Model Validation**: When setting Ollama models, Taskmaster now validates against the local Ollama instance by querying `/api/tags` endpoint
2779 |   - **Configurable Endpoints**: Uses the `ollamaBaseUrl` from `.taskmasterconfig` (with role-specific `baseUrl` overrides supported)
2780 |   - **Robust Error Handling**:
2781 |     - Detects when Ollama server is not running and provides clear error messages
2782 |     - Validates model existence and lists available alternatives when model not found
2783 |     - Graceful fallback behavior for connection issues
2784 |   - **Full Platform Support**: Both MCP server tools and CLI commands support the new validation
2785 |   - **Improved User Experience**: Clear feedback during model validation with informative success/error messages
2786 | 
2787 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`4c83526`](https://github.com/eyaltoledano/claude-task-master/commit/4c835264ac6c1f74896cddabc3b3c69a5c435417) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adds and updates supported AI models with costs:
2788 |   - Added new OpenRouter models: GPT-4.1 series, O3, Codex Mini, Llama 4 Maverick, Llama 4 Scout, Qwen3-235b
2789 |   - Added Mistral models: Devstral Small, Mistral Nemo
2790 |   - Updated Ollama models with latest variants: Devstral, Qwen3, Mistral-small3.1, Llama3.3
2791 |   - Updated Gemini model to latest 2.5 Flash preview version
2792 | 
2793 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`70f4054`](https://github.com/eyaltoledano/claude-task-master/commit/70f4054f268f9f8257870e64c24070263d4e2966) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add `--research` flag to parse-prd command, enabling enhanced task generation from PRD files. When used, Taskmaster leverages the research model to:
2794 |   - Research current technologies and best practices relevant to the project
2795 |   - Identify technical challenges and security concerns not explicitly mentioned in the PRD
2796 |   - Include specific library recommendations with version numbers
2797 |   - Provide more detailed implementation guidance based on industry standards
2798 |   - Create more accurate dependency relationships between tasks
2799 | 
2800 |   This results in higher quality, more actionable tasks with minimal additional effort.
2801 | 
2802 |   _NOTE_ That this is an experimental feature. Research models don't typically do great at structured output. You may find some failures when using research mode, so please share your feedback so we can improve this.
2803 | 
2804 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`5e9bc28`](https://github.com/eyaltoledano/claude-task-master/commit/5e9bc28abea36ec7cd25489af7fcc6cbea51038b) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - This change significantly enhances the `add-task` command's intelligence. When you add a new task, Taskmaster now automatically: - Analyzes your existing tasks to find those most relevant to your new task's description. - Provides the AI with detailed context from these relevant tasks.
2805 | 
2806 |   This results in newly created tasks being more accurately placed within your project's dependency structure, saving you time and any need to update tasks just for dependencies, all without significantly increasing AI costs. You'll get smarter, more connected tasks right from the start.
2807 | 
2808 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`34c769b`](https://github.com/eyaltoledano/claude-task-master/commit/34c769bcd0faf65ddec3b95de2ba152a8be3ec5c) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Enhance analyze-complexity to support analyzing specific task IDs. - You can now analyze individual tasks or selected task groups by using the new `--id` option with comma-separated IDs, or `--from` and `--to` options to specify a range of tasks. - The feature intelligently merges analysis results with existing reports, allowing incremental analysis while preserving previous results.
2809 | 
2810 | - [#558](https://github.com/eyaltoledano/claude-task-master/pull/558) [`86d8f00`](https://github.com/eyaltoledano/claude-task-master/commit/86d8f00af809887ee0ba0ba7157cc555e0d07c38) Thanks [@ShreyPaharia](https://github.com/ShreyPaharia)! - Add next task to set task status response
2811 |   Status: DONE
2812 | 
2813 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`04af16d`](https://github.com/eyaltoledano/claude-task-master/commit/04af16de27295452e134b17b3c7d0f44bbb84c29) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add move command to enable moving tasks and subtasks within the task hierarchy. This new command supports moving standalone tasks to become subtasks, subtasks to become standalone tasks, and moving subtasks between different parents. The implementation handles circular dependencies, validation, and proper updating of parent-child relationships.
2814 | 
2815 |   **Usage:**
2816 |   - CLI command: `task-master move --from=<id> --to=<id>`
2817 |   - MCP tool: `move_task` with parameters:
2818 |     - `from`: ID of task/subtask to move (e.g., "5" or "5.2")
2819 |     - `to`: ID of destination (e.g., "7" or "7.3")
2820 |     - `file` (optional): Custom path to tasks.json
2821 | 
2822 |   **Example scenarios:**
2823 |   - Move task to become subtask: `--from="5" --to="7"`
2824 |   - Move subtask to standalone task: `--from="5.2" --to="7"`
2825 |   - Move subtask to different parent: `--from="5.2" --to="7.3"`
2826 |   - Reorder subtask within same parent: `--from="5.2" --to="5.4"`
2827 |   - Move multiple tasks at once: `--from="10,11,12" --to="16,17,18"`
2828 |   - Move task to new ID: `--from="5" --to="25"` (creates a new task with ID 25)
2829 | 
2830 |   **Multiple Task Support:**
2831 |   The command supports moving multiple tasks simultaneously by providing comma-separated lists for both `--from` and `--to` parameters. The number of source and destination IDs must match. This is particularly useful for resolving merge conflicts in task files when multiple team members have created tasks on different branches.
2832 | 
2833 |   **Validation Features:**
2834 |   - Allows moving tasks to new, non-existent IDs (automatically creates placeholders)
2835 |   - Prevents moving to existing task IDs that already contain content (to avoid overwriting)
2836 |   - Validates source tasks exist before attempting to move them
2837 |   - Ensures proper parent-child relationships are maintained
2838 | 
2839 | ### Patch Changes
2840 | 
2841 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`231e569`](https://github.com/eyaltoledano/claude-task-master/commit/231e569e84804a2e5ba1f9da1a985d0851b7e949) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adjusts default main model model to Claude Sonnet 4. Adjusts default fallback to Claude Sonney 3.7"
2842 | 
2843 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`b371808`](https://github.com/eyaltoledano/claude-task-master/commit/b371808524f2c2986f4940d78fcef32c125d01f2) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adds llms-install.md to the root to enable AI agents to programmatically install the Taskmaster MCP server. This is specifically being introduced for the Cline MCP marketplace and will be adjusted over time for other MCP clients as needed.
2844 | 
2845 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`a59dd03`](https://github.com/eyaltoledano/claude-task-master/commit/a59dd037cfebb46d38bc44dd216c7c23933be641) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adds AGENTS.md to power Claude Code integration more natively based on Anthropic's best practice and Claude-specific MCP client behaviours. Also adds in advanced workflows that tie Taskmaster commands together into one Claude workflow."
2846 | 
2847 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`e0e1155`](https://github.com/eyaltoledano/claude-task-master/commit/e0e115526089bf41d5d60929956edf5601ff3e23) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Fixes issue with force/append flag combinations for parse-prd.
2848 | 
2849 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`34df2c8`](https://github.com/eyaltoledano/claude-task-master/commit/34df2c8bbddc0e157c981d32502bbe6b9468202e) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - You can now add tasks to a newly initialized project without having to parse a prd. This will automatically create the missing tasks.json file and create the first task. Lets you vibe if you want to vibe."
2850 | 
2851 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`d2e6431`](https://github.com/eyaltoledano/claude-task-master/commit/d2e64318e2f4bfc3457792e310cc4ff9210bba30) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Fixes an issue where the research fallback would attempt to make API calls without checking for a valid API key first. This ensures proper error handling when the main task generation and first fallback both fail. Closes #421 #519.
2852 | 
2853 | ## 0.15.0-rc.0
2854 | 
2855 | ### Minor Changes
2856 | 
2857 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`09add37`](https://github.com/eyaltoledano/claude-task-master/commit/09add37423d70b809d5c28f3cde9fccd5a7e64e7) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Added comprehensive Ollama model validation and interactive setup support
2858 |   - **Interactive Setup Enhancement**: Added "Custom Ollama model" option to `task-master models --setup`, matching the existing OpenRouter functionality
2859 |   - **Live Model Validation**: When setting Ollama models, Taskmaster now validates against the local Ollama instance by querying `/api/tags` endpoint
2860 |   - **Configurable Endpoints**: Uses the `ollamaBaseUrl` from `.taskmasterconfig` (with role-specific `baseUrl` overrides supported)
2861 |   - **Robust Error Handling**:
2862 |     - Detects when Ollama server is not running and provides clear error messages
2863 |     - Validates model existence and lists available alternatives when model not found
2864 |     - Graceful fallback behavior for connection issues
2865 |   - **Full Platform Support**: Both MCP server tools and CLI commands support the new validation
2866 |   - **Improved User Experience**: Clear feedback during model validation with informative success/error messages
2867 | 
2868 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`4c83526`](https://github.com/eyaltoledano/claude-task-master/commit/4c835264ac6c1f74896cddabc3b3c69a5c435417) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adds and updates supported AI models with costs:
2869 |   - Added new OpenRouter models: GPT-4.1 series, O3, Codex Mini, Llama 4 Maverick, Llama 4 Scout, Qwen3-235b
2870 |   - Added Mistral models: Devstral Small, Mistral Nemo
2871 |   - Updated Ollama models with latest variants: Devstral, Qwen3, Mistral-small3.1, Llama3.3
2872 |   - Updated Gemini model to latest 2.5 Flash preview version
2873 | 
2874 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`70f4054`](https://github.com/eyaltoledano/claude-task-master/commit/70f4054f268f9f8257870e64c24070263d4e2966) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add `--research` flag to parse-prd command, enabling enhanced task generation from PRD files. When used, Taskmaster leverages the research model to:
2875 |   - Research current technologies and best practices relevant to the project
2876 |   - Identify technical challenges and security concerns not explicitly mentioned in the PRD
2877 |   - Include specific library recommendations with version numbers
2878 |   - Provide more detailed implementation guidance based on industry standards
2879 |   - Create more accurate dependency relationships between tasks
2880 | 
2881 |   This results in higher quality, more actionable tasks with minimal additional effort.
2882 | 
2883 |   _NOTE_ That this is an experimental feature. Research models don't typically do great at structured output. You may find some failures when using research mode, so please share your feedback so we can improve this.
2884 | 
2885 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`5e9bc28`](https://github.com/eyaltoledano/claude-task-master/commit/5e9bc28abea36ec7cd25489af7fcc6cbea51038b) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - This change significantly enhances the `add-task` command's intelligence. When you add a new task, Taskmaster now automatically: - Analyzes your existing tasks to find those most relevant to your new task's description. - Provides the AI with detailed context from these relevant tasks.
2886 | 
2887 |   This results in newly created tasks being more accurately placed within your project's dependency structure, saving you time and any need to update tasks just for dependencies, all without significantly increasing AI costs. You'll get smarter, more connected tasks right from the start.
2888 | 
2889 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`34c769b`](https://github.com/eyaltoledano/claude-task-master/commit/34c769bcd0faf65ddec3b95de2ba152a8be3ec5c) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Enhance analyze-complexity to support analyzing specific task IDs. - You can now analyze individual tasks or selected task groups by using the new `--id` option with comma-separated IDs, or `--from` and `--to` options to specify a range of tasks. - The feature intelligently merges analysis results with existing reports, allowing incremental analysis while preserving previous results.
2890 | 
2891 | - [#558](https://github.com/eyaltoledano/claude-task-master/pull/558) [`86d8f00`](https://github.com/eyaltoledano/claude-task-master/commit/86d8f00af809887ee0ba0ba7157cc555e0d07c38) Thanks [@ShreyPaharia](https://github.com/ShreyPaharia)! - Add next task to set task status response
2892 |   Status: DONE
2893 | 
2894 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`04af16d`](https://github.com/eyaltoledano/claude-task-master/commit/04af16de27295452e134b17b3c7d0f44bbb84c29) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add move command to enable moving tasks and subtasks within the task hierarchy. This new command supports moving standalone tasks to become subtasks, subtasks to become standalone tasks, and moving subtasks between different parents. The implementation handles circular dependencies, validation, and proper updating of parent-child relationships.
2895 | 
2896 |   **Usage:**
2897 |   - CLI command: `task-master move --from=<id> --to=<id>`
2898 |   - MCP tool: `move_task` with parameters:
2899 |     - `from`: ID of task/subtask to move (e.g., "5" or "5.2")
2900 |     - `to`: ID of destination (e.g., "7" or "7.3")
2901 |     - `file` (optional): Custom path to tasks.json
2902 | 
2903 |   **Example scenarios:**
2904 |   - Move task to become subtask: `--from="5" --to="7"`
2905 |   - Move subtask to standalone task: `--from="5.2" --to="7"`
2906 |   - Move subtask to different parent: `--from="5.2" --to="7.3"`
2907 |   - Reorder subtask within same parent: `--from="5.2" --to="5.4"`
2908 |   - Move multiple tasks at once: `--from="10,11,12" --to="16,17,18"`
2909 |   - Move task to new ID: `--from="5" --to="25"` (creates a new task with ID 25)
2910 | 
2911 |   **Multiple Task Support:**
2912 |   The command supports moving multiple tasks simultaneously by providing comma-separated lists for both `--from` and `--to` parameters. The number of source and destination IDs must match. This is particularly useful for resolving merge conflicts in task files when multiple team members have created tasks on different branches.
2913 | 
2914 |   **Validation Features:**
2915 |   - Allows moving tasks to new, non-existent IDs (automatically creates placeholders)
2916 |   - Prevents moving to existing task IDs that already contain content (to avoid overwriting)
2917 |   - Validates source tasks exist before attempting to move them
2918 |   - Ensures proper parent-child relationships are maintained
2919 | 
2920 | ### Patch Changes
2921 | 
2922 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`231e569`](https://github.com/eyaltoledano/claude-task-master/commit/231e569e84804a2e5ba1f9da1a985d0851b7e949) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adjusts default main model model to Claude Sonnet 4. Adjusts default fallback to Claude Sonney 3.7"
2923 | 
2924 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`b371808`](https://github.com/eyaltoledano/claude-task-master/commit/b371808524f2c2986f4940d78fcef32c125d01f2) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adds llms-install.md to the root to enable AI agents to programmatically install the Taskmaster MCP server. This is specifically being introduced for the Cline MCP marketplace and will be adjusted over time for other MCP clients as needed.
2925 | 
2926 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`a59dd03`](https://github.com/eyaltoledano/claude-task-master/commit/a59dd037cfebb46d38bc44dd216c7c23933be641) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adds AGENTS.md to power Claude Code integration more natively based on Anthropic's best practice and Claude-specific MCP client behaviours. Also adds in advanced workflows that tie Taskmaster commands together into one Claude workflow."
2927 | 
2928 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`e0e1155`](https://github.com/eyaltoledano/claude-task-master/commit/e0e115526089bf41d5d60929956edf5601ff3e23) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Fixes issue with force/append flag combinations for parse-prd.
2929 | 
2930 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`34df2c8`](https://github.com/eyaltoledano/claude-task-master/commit/34df2c8bbddc0e157c981d32502bbe6b9468202e) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - You can now add tasks to a newly initialized project without having to parse a prd. This will automatically create the missing tasks.json file and create the first task. Lets you vibe if you want to vibe."
2931 | 
2932 | - [#567](https://github.com/eyaltoledano/claude-task-master/pull/567) [`d2e6431`](https://github.com/eyaltoledano/claude-task-master/commit/d2e64318e2f4bfc3457792e310cc4ff9210bba30) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Fixes an issue where the research fallback would attempt to make API calls without checking for a valid API key first. This ensures proper error handling when the main task generation and first fallback both fail. Closes #421 #519.
2933 | 
2934 | ## 0.14.0
2935 | 
2936 | ### Minor Changes
2937 | 
2938 | - [#521](https://github.com/eyaltoledano/claude-task-master/pull/521) [`ed17cb0`](https://github.com/eyaltoledano/claude-task-master/commit/ed17cb0e0a04dedde6c616f68f24f3660f68dd04) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - .taskmasterconfig now supports a baseUrl field per model role (main, research, fallback), allowing endpoint overrides for any provider.
2939 | 
2940 | - [#536](https://github.com/eyaltoledano/claude-task-master/pull/536) [`f4a83ec`](https://github.com/eyaltoledano/claude-task-master/commit/f4a83ec047b057196833e3a9b861d4bceaec805d) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add Ollama as a supported AI provider.
2941 |   - You can now add it by running `task-master models --setup` and selecting it.
2942 |   - Ollama is a local model provider, so no API key is required.
2943 |   - Ollama models are available at `http://localhost:11434/api` by default.
2944 |   - You can change the default URL by setting the `OLLAMA_BASE_URL` environment variable or by adding a `baseUrl` property to the `ollama` model role in `.taskmasterconfig`.
2945 |     - If you want to use a custom API key, you can set it in the `OLLAMA_API_KEY` environment variable.
2946 | 
2947 | - [#528](https://github.com/eyaltoledano/claude-task-master/pull/528) [`58b417a`](https://github.com/eyaltoledano/claude-task-master/commit/58b417a8ce697e655f749ca4d759b1c20014c523) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Display task complexity scores in task lists, next task, and task details views.
2948 | 
2949 | ### Patch Changes
2950 | 
2951 | - [#402](https://github.com/eyaltoledano/claude-task-master/pull/402) [`01963af`](https://github.com/eyaltoledano/claude-task-master/commit/01963af2cb6f77f43b2ad8a6e4a838ec205412bc) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Resolve all issues related to MCP
2952 | 
2953 | - [#478](https://github.com/eyaltoledano/claude-task-master/pull/478) [`4117f71`](https://github.com/eyaltoledano/claude-task-master/commit/4117f71c18ee4d321a9c91308d00d5d69bfac61e) Thanks [@joedanz](https://github.com/joedanz)! - Fix CLI --force flag for parse-prd command
2954 | 
2955 |   Previously, 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.
2956 |   - Fixes #477
2957 | 
2958 | - [#511](https://github.com/eyaltoledano/claude-task-master/pull/511) [`17294ff`](https://github.com/eyaltoledano/claude-task-master/commit/17294ff25918d64278674e558698a1a9ad785098) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Task Master no longer tells you to update when you're already up to date
2959 | 
2960 | - [#442](https://github.com/eyaltoledano/claude-task-master/pull/442) [`2b3ae8b`](https://github.com/eyaltoledano/claude-task-master/commit/2b3ae8bf89dc471c4ce92f3a12ded57f61faa449) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adds costs information to AI commands using input/output tokens and model costs.
2961 | 
2962 | - [#402](https://github.com/eyaltoledano/claude-task-master/pull/402) [`01963af`](https://github.com/eyaltoledano/claude-task-master/commit/01963af2cb6f77f43b2ad8a6e4a838ec205412bc) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix ERR_MODULE_NOT_FOUND when trying to run MCP Server
2963 | 
2964 | - [#402](https://github.com/eyaltoledano/claude-task-master/pull/402) [`01963af`](https://github.com/eyaltoledano/claude-task-master/commit/01963af2cb6f77f43b2ad8a6e4a838ec205412bc) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add src directory to exports
2965 | 
2966 | - [#523](https://github.com/eyaltoledano/claude-task-master/pull/523) [`da317f2`](https://github.com/eyaltoledano/claude-task-master/commit/da317f2607ca34db1be78c19954996f634c40923) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix the error handling of task status settings
2967 | 
2968 | - [#527](https://github.com/eyaltoledano/claude-task-master/pull/527) [`a8dabf4`](https://github.com/eyaltoledano/claude-task-master/commit/a8dabf44856713f488960224ee838761716bba26) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Remove caching layer from MCP direct functions for task listing, next task, and complexity report
2969 |   - Fixes issues users where having where they were getting stale data
2970 | 
2971 | - [#417](https://github.com/eyaltoledano/claude-task-master/pull/417) [`a1f8d52`](https://github.com/eyaltoledano/claude-task-master/commit/a1f8d52474fdbdf48e17a63e3f567a6d63010d9f) Thanks [@ksylvan](https://github.com/ksylvan)! - Fix for issue #409 LOG_LEVEL Pydantic validation error
2972 | 
2973 | - [#442](https://github.com/eyaltoledano/claude-task-master/pull/442) [`0288311`](https://github.com/eyaltoledano/claude-task-master/commit/0288311965ae2a343ebee4a0c710dde94d2ae7e7) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Small fixes - `next` command no longer incorrectly suggests that subtasks be broken down into subtasks in the CLI - fixes the `append` flag so it properly works in the CLI
2974 | 
2975 | - [#501](https://github.com/eyaltoledano/claude-task-master/pull/501) [`0a61184`](https://github.com/eyaltoledano/claude-task-master/commit/0a611843b56a856ef0a479dc34078326e05ac3a8) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix initial .env.example to work out of the box
2976 |   - Closes #419
2977 | 
2978 | - [#435](https://github.com/eyaltoledano/claude-task-master/pull/435) [`a96215a`](https://github.com/eyaltoledano/claude-task-master/commit/a96215a359b25061fd3b3f3c7b10e8ac0390c062) Thanks [@lebsral](https://github.com/lebsral)! - Fix default fallback model and maxTokens in Taskmaster initialization
2979 | 
2980 | - [#517](https://github.com/eyaltoledano/claude-task-master/pull/517) [`e96734a`](https://github.com/eyaltoledano/claude-task-master/commit/e96734a6cc6fec7731de72eb46b182a6e3743d02) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix bug when updating tasks on the MCP server (#412)
2981 | 
2982 | - [#496](https://github.com/eyaltoledano/claude-task-master/pull/496) [`efce374`](https://github.com/eyaltoledano/claude-task-master/commit/efce37469bc58eceef46763ba32df1ed45242211) Thanks [@joedanz](https://github.com/joedanz)! - Fix duplicate output on CLI help screen
2983 |   - Prevent the Task Master CLI from printing the help screen more than once when using `-h` or `--help`.
2984 |   - Removed redundant manual event handlers and guards for help output; now only the Commander `.helpInformation` override is used for custom help.
2985 |   - Simplified logic so that help is only shown once for both "no arguments" and help flag flows.
2986 |   - Ensures a clean, branded help experience with no repeated content.
2987 |   - Fixes #339
2988 | 
2989 | ## 0.14.0-rc.1
2990 | 
2991 | ### Minor Changes
2992 | 
2993 | - [#536](https://github.com/eyaltoledano/claude-task-master/pull/536) [`f4a83ec`](https://github.com/eyaltoledano/claude-task-master/commit/f4a83ec047b057196833e3a9b861d4bceaec805d) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add Ollama as a supported AI provider.
2994 |   - You can now add it by running `task-master models --setup` and selecting it.
2995 |   - Ollama is a local model provider, so no API key is required.
2996 |   - Ollama models are available at `http://localhost:11434/api` by default.
2997 |   - You can change the default URL by setting the `OLLAMA_BASE_URL` environment variable or by adding a `baseUrl` property to the `ollama` model role in `.taskmasterconfig`.
2998 |     - If you want to use a custom API key, you can set it in the `OLLAMA_API_KEY` environment variable.
2999 | 
3000 | ### Patch Changes
3001 | 
3002 | - [#442](https://github.com/eyaltoledano/claude-task-master/pull/442) [`2b3ae8b`](https://github.com/eyaltoledano/claude-task-master/commit/2b3ae8bf89dc471c4ce92f3a12ded57f61faa449) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adds costs information to AI commands using input/output tokens and model costs.
3003 | 
3004 | - [#442](https://github.com/eyaltoledano/claude-task-master/pull/442) [`0288311`](https://github.com/eyaltoledano/claude-task-master/commit/0288311965ae2a343ebee4a0c710dde94d2ae7e7) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Small fixes - `next` command no longer incorrectly suggests that subtasks be broken down into subtasks in the CLI - fixes the `append` flag so it properly works in the CLI
3005 | 
3006 | ## 0.14.0-rc.0
3007 | 
3008 | ### Minor Changes
3009 | 
3010 | - [#521](https://github.com/eyaltoledano/claude-task-master/pull/521) [`ed17cb0`](https://github.com/eyaltoledano/claude-task-master/commit/ed17cb0e0a04dedde6c616f68f24f3660f68dd04) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - .taskmasterconfig now supports a baseUrl field per model role (main, research, fallback), allowing endpoint overrides for any provider.
3011 | 
3012 | - [#528](https://github.com/eyaltoledano/claude-task-master/pull/528) [`58b417a`](https://github.com/eyaltoledano/claude-task-master/commit/58b417a8ce697e655f749ca4d759b1c20014c523) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Display task complexity scores in task lists, next task, and task details views.
3013 | 
3014 | ### Patch Changes
3015 | 
3016 | - [#478](https://github.com/eyaltoledano/claude-task-master/pull/478) [`4117f71`](https://github.com/eyaltoledano/claude-task-master/commit/4117f71c18ee4d321a9c91308d00d5d69bfac61e) Thanks [@joedanz](https://github.com/joedanz)! - Fix CLI --force flag for parse-prd command
3017 | 
3018 |   Previously, 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.
3019 |   - Fixes #477
3020 | 
3021 | - [#511](https://github.com/eyaltoledano/claude-task-master/pull/511) [`17294ff`](https://github.com/eyaltoledano/claude-task-master/commit/17294ff25918d64278674e558698a1a9ad785098) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Task Master no longer tells you to update when you're already up to date
3022 | 
3023 | - [#523](https://github.com/eyaltoledano/claude-task-master/pull/523) [`da317f2`](https://github.com/eyaltoledano/claude-task-master/commit/da317f2607ca34db1be78c19954996f634c40923) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix the error handling of task status settings
3024 | 
3025 | - [#527](https://github.com/eyaltoledano/claude-task-master/pull/527) [`a8dabf4`](https://github.com/eyaltoledano/claude-task-master/commit/a8dabf44856713f488960224ee838761716bba26) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Remove caching layer from MCP direct functions for task listing, next task, and complexity report
3026 |   - Fixes issues users where having where they were getting stale data
3027 | 
3028 | - [#417](https://github.com/eyaltoledano/claude-task-master/pull/417) [`a1f8d52`](https://github.com/eyaltoledano/claude-task-master/commit/a1f8d52474fdbdf48e17a63e3f567a6d63010d9f) Thanks [@ksylvan](https://github.com/ksylvan)! - Fix for issue #409 LOG_LEVEL Pydantic validation error
3029 | 
3030 | - [#501](https://github.com/eyaltoledano/claude-task-master/pull/501) [`0a61184`](https://github.com/eyaltoledano/claude-task-master/commit/0a611843b56a856ef0a479dc34078326e05ac3a8) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix initial .env.example to work out of the box
3031 |   - Closes #419
3032 | 
3033 | - [#435](https://github.com/eyaltoledano/claude-task-master/pull/435) [`a96215a`](https://github.com/eyaltoledano/claude-task-master/commit/a96215a359b25061fd3b3f3c7b10e8ac0390c062) Thanks [@lebsral](https://github.com/lebsral)! - Fix default fallback model and maxTokens in Taskmaster initialization
3034 | 
3035 | - [#517](https://github.com/eyaltoledano/claude-task-master/pull/517) [`e96734a`](https://github.com/eyaltoledano/claude-task-master/commit/e96734a6cc6fec7731de72eb46b182a6e3743d02) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix bug when updating tasks on the MCP server (#412)
3036 | 
3037 | - [#496](https://github.com/eyaltoledano/claude-task-master/pull/496) [`efce374`](https://github.com/eyaltoledano/claude-task-master/commit/efce37469bc58eceef46763ba32df1ed45242211) Thanks [@joedanz](https://github.com/joedanz)! - Fix duplicate output on CLI help screen
3038 |   - Prevent the Task Master CLI from printing the help screen more than once when using `-h` or `--help`.
3039 |   - Removed redundant manual event handlers and guards for help output; now only the Commander `.helpInformation` override is used for custom help.
3040 |   - Simplified logic so that help is only shown once for both "no arguments" and help flag flows.
3041 |   - Ensures a clean, branded help experience with no repeated content.
3042 |   - Fixes #339
3043 | 
3044 | ## 0.13.1
3045 | 
3046 | ### Patch Changes
3047 | 
3048 | - [#399](https://github.com/eyaltoledano/claude-task-master/pull/399) [`734a4fd`](https://github.com/eyaltoledano/claude-task-master/commit/734a4fdcfc89c2e089255618cf940561ad13a3c8) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix ERR_MODULE_NOT_FOUND when trying to run MCP Server
3049 | 
3050 | ## 0.13.0
3051 | 
3052 | ### Minor Changes
3053 | 
3054 | - [#240](https://github.com/eyaltoledano/claude-task-master/pull/240) [`ef782ff`](https://github.com/eyaltoledano/claude-task-master/commit/ef782ff5bd4ceb3ed0dc9ea82087aae5f79ac933) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - feat(expand): Enhance `expand` and `expand-all` commands
3055 |   - Integrate `task-complexity-report.json` to automatically determine the number of subtasks and use tailored prompts for expansion based on prior analysis. You no longer need to try copy-pasting the recommended prompt. If it exists, it will use it for you. You can just run `task-master update --id=[id of task] --research` and it will use that prompt automatically. No extra prompt needed.
3056 |   - Change default behavior to _append_ new subtasks to existing ones. Use the `--force` flag to clear existing subtasks before expanding. This is helpful if you need to add more subtasks to a task but you want to do it by the batch from a given prompt. Use force if you want to start fresh with a task's subtasks.
3057 | 
3058 | - [#240](https://github.com/eyaltoledano/claude-task-master/pull/240) [`87d97bb`](https://github.com/eyaltoledano/claude-task-master/commit/87d97bba00d84e905756d46ef96b2d5b984e0f38) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adds support for the OpenRouter AI provider. Users can now configure models available through OpenRouter (requiring an `OPENROUTER_API_KEY`) via the `task-master models` command, granting access to a wide range of additional LLMs. - IMPORTANT FYI ABOUT OPENROUTER: Taskmaster relies on AI SDK, which itself relies on tool use. It looks like **free** models sometimes do not include tool use. For example, Gemini 2.5 pro (free) failed via OpenRouter (no tool use) but worked fine on the paid version of the model. Custom model support for Open Router is considered experimental and likely will not be further improved for some time.
3059 | 
3060 | - [#240](https://github.com/eyaltoledano/claude-task-master/pull/240) [`1ab836f`](https://github.com/eyaltoledano/claude-task-master/commit/1ab836f191cb8969153593a9a0bd47fc9aa4a831) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adds model management and new configuration file .taskmasterconfig which houses the models used for main, research and fallback. Adds models command and setter flags. Adds a --setup flag with an interactive setup. We should be calling this during init. Shows a table of active and available models when models is called without flags. Includes SWE scores and token costs, which are manually entered into the supported_models.json, the new place where models are defined for support. Config-manager.js is the core module responsible for managing the new config."
3061 | 
3062 | - [#240](https://github.com/eyaltoledano/claude-task-master/pull/240) [`c8722b0`](https://github.com/eyaltoledano/claude-task-master/commit/c8722b0a7a443a73b95d1bcd4a0b68e0fce2a1cd) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adds custom model ID support for Ollama and OpenRouter providers.
3063 |   - Adds the `--ollama` and `--openrouter` flags to `task-master models --set-<role>` command to set models for those providers outside of the support models list.
3064 |   - Updated `task-master models --setup` interactive mode with options to explicitly enter custom Ollama or OpenRouter model IDs.
3065 |   - Implemented live validation against OpenRouter API (`/api/v1/models`) when setting a custom OpenRouter model ID (via flag or setup).
3066 |   - Refined logic to prioritize explicit provider flags/choices over internal model list lookups in case of ID conflicts.
3067 |   - Added warnings when setting custom/unvalidated models.
3068 |   - We obviously don't recommend going with a custom, unproven model. If you do and find performance is good, please let us know so we can add it to the list of supported models.
3069 | 
3070 | - [#240](https://github.com/eyaltoledano/claude-task-master/pull/240) [`2517bc1`](https://github.com/eyaltoledano/claude-task-master/commit/2517bc112c9a497110f3286ca4bfb4130c9addcb) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Integrate OpenAI as a new AI provider. - Enhance `models` command/tool to display API key status. - Implement model-specific `maxTokens` override based on `supported-models.json` to save you if you use an incorrect max token value.
3071 | 
3072 | - [#240](https://github.com/eyaltoledano/claude-task-master/pull/240) [`9a48278`](https://github.com/eyaltoledano/claude-task-master/commit/9a482789f7894f57f655fb8d30ba68542bd0df63) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Tweaks Perplexity AI calls for research mode to max out input tokens and get day-fresh information - Forces temp at 0.1 for highly deterministic output, no variations - Adds a system prompt to further improve the output - Correctly uses the maximum input tokens (8,719, used 8,700) for perplexity - Specificies to use a high degree of research across the web - Specifies to use information that is as fresh as today; this support stuff like capturing brand new announcements like new GPT models and being able to query for those in research. 🔥
3073 | 
3074 | ### Patch Changes
3075 | 
3076 | - [#240](https://github.com/eyaltoledano/claude-task-master/pull/240) [`842eaf7`](https://github.com/eyaltoledano/claude-task-master/commit/842eaf722498ddf7307800b4cdcef4ac4fd7e5b0) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - - Add support for Google Gemini models via Vercel AI SDK integration.
3077 | 
3078 | - [#240](https://github.com/eyaltoledano/claude-task-master/pull/240) [`ed79d4f`](https://github.com/eyaltoledano/claude-task-master/commit/ed79d4f4735dfab4124fa189214c0bd5e23a6860) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add xAI provider and Grok models support
3079 | 
3080 | - [#378](https://github.com/eyaltoledano/claude-task-master/pull/378) [`ad89253`](https://github.com/eyaltoledano/claude-task-master/commit/ad89253e313a395637aa48b9f92cc39b1ef94ad8) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Better support for file paths on Windows, Linux & WSL.
3081 |   - Standardizes handling of different path formats (URI encoded, Windows, Linux, WSL).
3082 |   - Ensures tools receive a clean, absolute path suitable for the server OS.
3083 |   - Simplifies tool implementation by centralizing normalization logic.
3084 | 
3085 | - [#285](https://github.com/eyaltoledano/claude-task-master/pull/285) [`2acba94`](https://github.com/eyaltoledano/claude-task-master/commit/2acba945c0afee9460d8af18814c87e80f747e9f) Thanks [@neno-is-ooo](https://github.com/neno-is-ooo)! - Add integration for Roo Code
3086 | 
3087 | - [#378](https://github.com/eyaltoledano/claude-task-master/pull/378) [`d63964a`](https://github.com/eyaltoledano/claude-task-master/commit/d63964a10eed9be17856757661ff817ad6bacfdc) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Improved update-subtask - Now it has context about the parent task details - It also has context about the subtask before it and the subtask after it (if they exist) - Not passing all subtasks to stay token efficient
3088 | 
3089 | - [#240](https://github.com/eyaltoledano/claude-task-master/pull/240) [`5f504fa`](https://github.com/eyaltoledano/claude-task-master/commit/5f504fafb8bdaa0043c2d20dee8bbb8ec2040d85) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Improve and adjust `init` command for robustness and updated dependencies.
3090 |   - **Update Initialization Dependencies:** Ensure newly initialized projects (`task-master init`) include all required AI SDK dependencies (`@ai-sdk/*`, `ai`, provider wrappers) in their `package.json` for out-of-the-box AI feature compatibility. Remove unnecessary dependencies (e.g., `uuid`) from the init template.
3091 |   - **Silence `npm install` during `init`:** Prevent `npm install` output from interfering with non-interactive/MCP initialization by suppressing its stdio in silent mode.
3092 |   - **Improve Conditional Model Setup:** Reliably skip interactive `models --setup` during non-interactive `init` runs (e.g., `init -y` or MCP) by checking `isSilentMode()` instead of passing flags.
3093 |   - **Refactor `init.js`:** Remove internal `isInteractive` flag logic.
3094 |   - **Update `init` Instructions:** Tweak the "Getting Started" text displayed after `init`.
3095 |   - **Fix MCP Server Launch:** Update `.cursor/mcp.json` template to use `node ./mcp-server/server.js` instead of `npx task-master-mcp`.
3096 |   - **Update Default Model:** Change the default main model in the `.taskmasterconfig` template.
3097 | 
3098 | - [#240](https://github.com/eyaltoledano/claude-task-master/pull/240) [`96aeeff`](https://github.com/eyaltoledano/claude-task-master/commit/96aeeffc195372722c6a07370540e235bfe0e4d8) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Fixes an issue with add-task which did not use the manually defined properties and still needlessly hit the AI endpoint.
3099 | 
3100 | - [#240](https://github.com/eyaltoledano/claude-task-master/pull/240) [`5aea93d`](https://github.com/eyaltoledano/claude-task-master/commit/5aea93d4c0490c242d7d7042a210611977848e0a) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Fixes an issue that prevented remove-subtask with comma separated tasks/subtasks from being deleted (only the first ID was being deleted). Closes #140
3101 | 
3102 | - [#240](https://github.com/eyaltoledano/claude-task-master/pull/240) [`66ac9ab`](https://github.com/eyaltoledano/claude-task-master/commit/66ac9ab9f66d006da518d6e8a3244e708af2764d) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Improves next command to be subtask-aware - The logic for determining the "next task" (findNextTask function, used by task-master next and the next_task MCP tool) has been significantly improved. Previously, it only considered top-level tasks, making its recommendation less useful when a parent task containing subtasks was already marked 'in-progress'. - The updated logic now prioritizes finding the next available subtask within any 'in-progress' parent task, considering subtask dependencies and priority. - If no suitable subtask is found within active parent tasks, it falls back to recommending the next eligible top-level task based on the original criteria (status, dependencies, priority).
3103 | 
3104 |   This change makes the next command much more relevant and helpful during the implementation phase of complex tasks.
3105 | 
3106 | - [#240](https://github.com/eyaltoledano/claude-task-master/pull/240) [`ca7b045`](https://github.com/eyaltoledano/claude-task-master/commit/ca7b0457f1dc65fd9484e92527d9fd6d69db758d) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add `--status` flag to `show` command to filter displayed subtasks.
3107 | 
3108 | - [#328](https://github.com/eyaltoledano/claude-task-master/pull/328) [`5a2371b`](https://github.com/eyaltoledano/claude-task-master/commit/5a2371b7cc0c76f5e95d43921c1e8cc8081bf14e) Thanks [@knoxgraeme](https://github.com/knoxgraeme)! - Fix --task to --num-tasks in ui + related tests - issue #324
3109 | 
3110 | - [#240](https://github.com/eyaltoledano/claude-task-master/pull/240) [`6cb213e`](https://github.com/eyaltoledano/claude-task-master/commit/6cb213ebbd51116ae0688e35b575d09443d17c3b) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Adds a 'models' CLI and MCP command to get the current model configuration, available models, and gives the ability to set main/research/fallback models." - In the CLI, `task-master models` shows the current models config. Using the `--setup` flag launches an interactive set up that allows you to easily select the models you want to use for each of the three roles. Use `q` during the interactive setup to cancel the setup. - In the MCP, responses are simplified in RESTful format (instead of the full CLI output). The agent can use the `models` tool with different arguments, including `listAvailableModels` to get available models. Run without arguments, it will return the current configuration. Arguments are available to set the model for each of the three roles. This allows you to manage Taskmaster AI providers and models directly from either the CLI or MCP or both. - Updated the CLI help menu when you run `task-master` to include missing commands and .taskmasterconfig information. - Adds `--research` flag to `add-task` so you can hit up Perplexity right from the add-task flow, rather than having to add a task and then update it.
3111 | 
3112 | ## 0.12.1
3113 | 
3114 | ### Patch Changes
3115 | 
3116 | - [#307](https://github.com/eyaltoledano/claude-task-master/pull/307) [`2829194`](https://github.com/eyaltoledano/claude-task-master/commit/2829194d3c1dd5373d3bf40275cf4f63b12d49a7) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix add_dependency tool crashing the MCP Server
3117 | 
3118 | ## 0.12.0
3119 | 
3120 | ### Minor Changes
3121 | 
3122 | - [#253](https://github.com/eyaltoledano/claude-task-master/pull/253) [`b2ccd60`](https://github.com/eyaltoledano/claude-task-master/commit/b2ccd605264e47a61451b4c012030ee29011bb40) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add `npx task-master-ai` that runs mcp instead of using `task-master-mcp``
3123 | 
3124 | - [#267](https://github.com/eyaltoledano/claude-task-master/pull/267) [`c17d912`](https://github.com/eyaltoledano/claude-task-master/commit/c17d912237e6caaa2445e934fc48cd4841abf056) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve PRD parsing prompt with structured analysis and clearer task generation guidelines. We are testing a new prompt - please provide feedback on your experience.
3125 | 
3126 | ### Patch Changes
3127 | 
3128 | - [#243](https://github.com/eyaltoledano/claude-task-master/pull/243) [`454a1d9`](https://github.com/eyaltoledano/claude-task-master/commit/454a1d9d37439c702656eedc0702c2f7a4451517) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - - Fixes shebang issue not allowing task-master to run on certain windows operating systems
3129 |   - Resolves #241 #211 #184 #193
3130 | 
3131 | - [#268](https://github.com/eyaltoledano/claude-task-master/pull/268) [`3e872f8`](https://github.com/eyaltoledano/claude-task-master/commit/3e872f8afbb46cd3978f3852b858c233450b9f33) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix remove-task command to handle multiple comma-separated task IDs
3132 | 
3133 | - [#239](https://github.com/eyaltoledano/claude-task-master/pull/239) [`6599cb0`](https://github.com/eyaltoledano/claude-task-master/commit/6599cb0bf9eccecab528207836e9d45b8536e5c2) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Updates the parameter descriptions for update, update-task and update-subtask to ensure the MCP server correctly reaches for the right update command based on what is being updated -- all tasks, one task, or a subtask.
3134 | 
3135 | - [#272](https://github.com/eyaltoledano/claude-task-master/pull/272) [`3aee9bc`](https://github.com/eyaltoledano/claude-task-master/commit/3aee9bc840eb8f31230bd1b761ed156b261cabc4) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Enhance the `parsePRD` to include `--append` flag. This flag allows users to append the parsed PRD to an existing file, making it easier to manage multiple PRD files without overwriting existing content.
3136 | 
3137 | - [#264](https://github.com/eyaltoledano/claude-task-master/pull/264) [`ff8e75c`](https://github.com/eyaltoledano/claude-task-master/commit/ff8e75cded91fb677903040002626f7a82fd5f88) Thanks [@joedanz](https://github.com/joedanz)! - Add quotes around numeric env vars in mcp.json (Windsurf, etc.)
3138 | 
3139 | - [#248](https://github.com/eyaltoledano/claude-task-master/pull/248) [`d99fa00`](https://github.com/eyaltoledano/claude-task-master/commit/d99fa00980fc61695195949b33dcda7781006f90) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - - Fix `task-master init` polluting codebase with new packages inside `package.json` and modifying project `README`
3140 |   - Now only initializes with cursor rules, windsurf rules, mcp.json, scripts/example_prd.txt, .gitignore modifications, and `README-task-master.md`
3141 | 
3142 | - [#266](https://github.com/eyaltoledano/claude-task-master/pull/266) [`41b979c`](https://github.com/eyaltoledano/claude-task-master/commit/41b979c23963483e54331015a86e7c5079f657e4) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fixed a bug that prevented the task-master from running in a Linux container
3143 | 
3144 | - [#265](https://github.com/eyaltoledano/claude-task-master/pull/265) [`0eb16d5`](https://github.com/eyaltoledano/claude-task-master/commit/0eb16d5ecbb8402d1318ca9509e9d4087b27fb25) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Remove the need for project name, description, and version. Since we no longer create a package.json for you
3145 | 
3146 | ## 0.11.0
3147 | 
3148 | ### Minor Changes
3149 | 
3150 | - [#71](https://github.com/eyaltoledano/claude-task-master/pull/71) [`7141062`](https://github.com/eyaltoledano/claude-task-master/commit/71410629ba187776d92a31ea0729b2ff341b5e38) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - - **Easier Ways to Use Taskmaster (CLI & MCP):**
3151 |   - You can now use Taskmaster either by installing it as a standard command-line tool (`task-master`) or as an MCP server directly within integrated development tools like Cursor (using its built-in features). **This makes Taskmaster accessible regardless of your preferred workflow.**
3152 |   - Setting up a new project is simpler in integrated tools, thanks to the new `initialize_project` capability.
3153 |   - **Complete MCP Implementation:**
3154 |     - NOTE: Many MCP clients charge on a per tool basis. In that regard, the most cost-efficient way to use Taskmaster is through the CLI directly. Otherwise, the MCP offers the smoothest and most recommended user experience.
3155 |     - All MCP tools now follow a standardized output format that mimicks RESTful API responses. They are lean JSON responses that are context-efficient. This is a net improvement over the last version which sent the whole CLI output directly, which needlessly wasted tokens.
3156 |     - Added a `remove-task` command to permanently delete tasks you no longer need.
3157 |     - Many new MCP tools are available for managing tasks (updating details, adding/removing subtasks, generating task files, setting status, finding the next task, breaking down complex tasks, handling dependencies, analyzing complexity, etc.), usable both from the command line and integrated tools. **(See the `taskmaster.mdc` reference guide and improved readme for a full list).**
3158 |   - **Better Task Tracking:**
3159 |     - Added a "cancelled" status option for tasks, providing more ways to categorize work.
3160 |   - **Smoother Experience in Integrated Tools:**
3161 |     - Long-running operations (like breaking down tasks or analysis) now run in the background **via an Async Operation Manager** with progress updates, so you know what's happening without waiting and can check status later.
3162 |   - **Improved Documentation:**
3163 |     - Added a comprehensive reference guide (`taskmaster.mdc`) detailing all commands and tools with examples, usage tips, and troubleshooting info. This is mostly for use by the AI but can be useful for human users as well.
3164 |     - Updated the main README with clearer instructions and added a new tutorial/examples guide.
3165 |     - Added documentation listing supported integrated tools (like Cursor).
3166 |   - **Increased Stability & Reliability:**
3167 |     - Using Taskmaster within integrated tools (like Cursor) is now **more stable and the recommended approach.**
3168 |     - Added automated testing (CI) to catch issues earlier, leading to a more reliable tool.
3169 |     - Fixed release process issues to ensure users get the correct package versions when installing or updating via npm.
3170 |   - **Better Command-Line Experience:**
3171 |     - Fixed bugs in the `expand-all` command that could cause **NaN errors or JSON formatting issues (especially when using `--research`).**
3172 |     - Fixed issues with parameter validation in the `analyze-complexity` command (specifically related to the `threshold` parameter).
3173 |     - Made the `add-task` command more consistent by adding standard flags like `--title`, `--description` for manual task creation so you don't have to use `--prompt` and can quickly drop new ideas and stay in your flow.
3174 |     - Improved error messages for incorrect commands or flags, making them easier to understand.
3175 |     - Added confirmation warnings before permanently deleting tasks (`remove-task`) to prevent mistakes. There's a known bug for deleting multiple tasks with comma-separated values. It'll be fixed next release.
3176 |     - Renamed some background tool names used by integrated tools (e.g., `list-tasks` is now `get_tasks`) to be more intuitive if seen in logs or AI interactions.
3177 |     - Smoother project start: **Improved the guidance provided to AI assistants immediately after setup** (related to `init` and `parse-prd` steps). This ensures the AI doesn't go on a tangent deciding its own workflow, and follows the exact process outlined in the Taskmaster workflow.
3178 |   - **Clearer Error Messages:**
3179 |     - When generating subtasks fails, error messages are now clearer, **including specific task IDs and potential suggestions.**
3180 |     - AI fallback from Claude to Perplexity now also works the other way around. If Perplexity is down, will switch to Claude.
3181 |   - **Simplified Setup & Configuration:**
3182 |     - Made it clearer how to configure API keys depending on whether you're using the command-line tool (`.env` file) or an integrated tool (`.cursor/mcp.json` file).
3183 |     - Taskmaster is now better at automatically finding your project files, especially in integrated tools, reducing the need for manual path settings.
3184 |     - Fixed an issue that could prevent Taskmaster from working correctly immediately after initialization in integrated tools (related to how the MCP server was invoked). This should solve the issue most users were experiencing with the last release (0.10.x)
3185 |     - Updated setup templates with clearer examples for API keys.
3186 |     - \*\*For advanced users setting up the MCP server manually, the command is now `npx -y task-master-ai task-master-mcp`.
3187 |   - **Enhanced Performance & AI:**
3188 |     - Updated underlying AI model settings:
3189 |       - **Increased Context Window:** Can now handle larger projects/tasks due to an increased Claude context window (64k -> 128k tokens).
3190 |       - **Reduced AI randomness:** More consistent and predictable AI outputs (temperature 0.4 -> 0.2).
3191 |       - **Updated default AI models:** Uses newer models like `claude-3-7-sonnet-20250219` and Perplexity `sonar-pro` by default.
3192 |       - **More granular breakdown:** Increased the default number of subtasks generated by `expand` to 5 (from 4).
3193 |       - **Consistent defaults:** Set the default priority for new tasks consistently to "medium".
3194 |     - Improved performance when viewing task details in integrated tools by sending less redundant data.
3195 |   - **Documentation Clarity:**
3196 |     - Clarified in documentation that Markdown files (`.md`) can be used for Product Requirements Documents (`parse_prd`).
3197 |     - Improved the description for the `numTasks` option in `parse_prd` for better guidance.
3198 |   - **Improved Visuals (CLI):**
3199 |     - Enhanced the look and feel of progress bars and status updates in the command line.
3200 |     - Added a helpful color-coded progress bar to the task details view (`show` command) to visualize subtask completion.
3201 |     - Made progress bars show a breakdown of task statuses (e.g., how many are pending vs. done).
3202 |     - Made status counts clearer with text labels next to icons.
3203 |     - Prevented progress bars from messing up the display on smaller terminal windows.
3204 |     - Adjusted how progress is calculated for 'deferred' and 'cancelled' tasks in the progress bar, while still showing their distinct status visually.
3205 |   - **Fixes for Integrated Tools:**
3206 |     - Fixed how progress updates are sent to integrated tools, ensuring they display correctly.
3207 |     - Fixed internal issues that could cause errors or invalid JSON responses when using Taskmaster with integrated tools.
3208 | 
3209 | ## 0.10.1
3210 | 
3211 | ### Patch Changes
3212 | 
3213 | - [#80](https://github.com/eyaltoledano/claude-task-master/pull/80) [`aa185b2`](https://github.com/eyaltoledano/claude-task-master/commit/aa185b28b248b4ca93f9195b502e2f5187868eaa) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Remove non-existent package `@model-context-protocol/sdk`
3214 | 
3215 | - [#45](https://github.com/eyaltoledano/claude-task-master/pull/45) [`757fd47`](https://github.com/eyaltoledano/claude-task-master/commit/757fd478d2e2eff8506ae746c3470c6088f4d944) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add license to repo
3216 | 
3217 | ## 0.10.0
3218 | 
3219 | ### Minor Changes
3220 | 
3221 | - [#44](https://github.com/eyaltoledano/claude-task-master/pull/44) [`eafdb47`](https://github.com/eyaltoledano/claude-task-master/commit/eafdb47418b444c03c092f653b438cc762d4bca8) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - add github actions to automate github and npm releases
3222 | 
3223 | - [#20](https://github.com/eyaltoledano/claude-task-master/pull/20) [`4eed269`](https://github.com/eyaltoledano/claude-task-master/commit/4eed2693789a444f704051d5fbb3ef8d460e4e69) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Implement MCP server for all commands using tools.
3224 | 
3225 | ### Patch Changes
3226 | 
3227 | - [#44](https://github.com/eyaltoledano/claude-task-master/pull/44) [`44db895`](https://github.com/eyaltoledano/claude-task-master/commit/44db895303a9209416236e3d519c8a609ad85f61) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Added changeset config #39
3228 | 
3229 | - [#50](https://github.com/eyaltoledano/claude-task-master/pull/50) [`257160a`](https://github.com/eyaltoledano/claude-task-master/commit/257160a9670b5d1942e7c623bd2c1a3fde7c06a0) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix addTask tool `projectRoot not defined`
3230 | 
3231 | - [#57](https://github.com/eyaltoledano/claude-task-master/pull/57) [`9fd42ee`](https://github.com/eyaltoledano/claude-task-master/commit/9fd42eeafdc25a96cdfb70aa3af01f525d26b4bc) Thanks [@github-actions](https://github.com/apps/github-actions)! - fix mcp server not connecting to cursor
3232 | 
3233 | - [#48](https://github.com/eyaltoledano/claude-task-master/pull/48) [`5ec3651`](https://github.com/eyaltoledano/claude-task-master/commit/5ec3651e6459add7354910a86b3c4db4d12bc5d1) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix workflows
3234 | 
```
Page 69/69FirstPrevNextLast