task-master-ai@0.26.0

eyaltoledano/claude-task-mastertask-master-ai@0.26.0Sep 9, 2025by github-actions[bot]

AI Summary

This release enhances codebase analysis capabilities for AI providers and improves the user experience for cross-tag task movements.

Key Highlights

  • Enhanced Gemini CLI provider with automatic codebase analysis for task generation
  • Configurable feature flag for codebase analysis via environment variables or config files
  • Improved cross-tag move UX with 'Next Steps' tips and ID collision handling
  • Restored Taskmaster claude-code commands and moved clear commands to /remove

New Features

  • Codebase-aware task generation for Gemini CLI
  • Configurable codebase analysis feature
  • Enhanced cross-tag move CLI feedback and error suggestions

Full Release Notes

### Minor Changes

-   [#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.

-   [#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

    Added automatic codebase analysis for Gemini CLI provider in parse-prd, and analyze-complexity, add-task, udpate-task, update, update-subtask commands
    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
    Tasks and subtasks generated by Claude Code are now informed by actual codebase analysis, resulting in more accurate and contextual outputs

-   [#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

    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.

    Priority order: .env > MCP session env > .taskmaster/config.json.

    Set `TASKMASTER_ENABLE_CODEBASE_ANALYSIS=false` in `.env` to disable codebase analysis prompts and tool integration.

-   [#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

    -   CLI: print "Next Steps" tips after cross-tag moves that used --ignore-dependencies (validate/fix guidance)
    -   CLI: show dedicated help block on ID collisions (destination tag already has the ID)
    -   Core: add structured suggestions to TASK_ALREADY_EXISTS errors
    -   MCP: map ID collision errors to TASK_ALREADY_EXISTS and include suggestions
    -   Tests: cover MCP options, error suggestions, CLI tips printing, and integration error payload suggestions

    * * *

-   [#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

    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.

    Commands contextualised:

    -   add-task
    -   update-subtask
    -   update-task
    -   update

### Patch Changes

-   [#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