Minor Changes
-
#1133
df26c65
Thanks @neonwatty! - Restore Taskmaster claude-code commands and move clear commands under /remove to avoid collision with the claude-code /clear command. -
#1163
37af0f1
Thanks @Crunchyman-ralph! - Enhanced Gemini CLI provider with codebase-aware task generationAdded 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
c4f92f6
Thanks @Crunchyman-ralph! - Add configurable codebase analysis feature flag with multiple configuration sourcesUsers 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
8783708
Thanks @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
4dad2fd
Thanks @Crunchyman-ralph! - Enhanced Claude Code and Google CLI integration with automatic codebase analysis for task operationsWhen 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
8783708
Thanks @mm-parthy! - docs(move): clarify cross-tag move docs; deprecate "force"; add explicit --with-dependencies/--ignore-dependencies examples