Skip to content

Version Packages#1107

Merged
Crunchyman-ralph merged 1 commit intomainfrom
changeset-release/main
Aug 8, 2025
Merged

Version Packages#1107
Crunchyman-ralph merged 1 commit intomainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Aug 8, 2025

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

task-master-ai@0.24.0

Minor Changes

  • #1098 36468f3 Thanks @Crunchyman-ralph! - Enhanced Claude Code provider with codebase-aware task generation

    • Added automatic codebase analysis for Claude Code provider in parse-prd, expand-task, and analyze-complexity commands
    • 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
    • Tasks and subtasks generated by Claude Code are now informed by actual codebase analysis, resulting in more accurate and contextual outputs
  • #1105 75c514c Thanks @Crunchyman-ralph! - Add GPT-5 support with proper parameter handling

    • Added GPT-5 model to supported models configuration with SWE score of 0.749
  • #1091 4bb6370 Thanks @Crunchyman-ralph! - Add Claude Code subagent support with task-orchestrator, task-executor, and task-checker

    New Claude Code Agents

    Added specialized agents for Claude Code users to enable parallel task execution, intelligent task orchestration, and quality assurance:

    task-orchestrator

    Coordinates and manages the execution of Task Master tasks with intelligent dependency analysis:

    • Analyzes task dependencies to identify parallelizable work
    • Deploys multiple task-executor agents for concurrent execution
    • Monitors task completion and updates the dependency graph
    • Automatically identifies and starts newly unblocked tasks

    task-executor

    Handles the actual implementation of individual tasks:

    • Executes specific tasks identified by the orchestrator
    • Works on concrete implementation rather than planning
    • Updates task status and logs progress
    • Can work in parallel with other executors on independent tasks

    task-checker

    Verifies that completed tasks meet their specifications:

    • Reviews tasks marked as 'review' status
    • Validates implementation against requirements
    • Runs tests and checks for best practices
    • Ensures quality before marking tasks as 'done'

    Installation

    When using the Claude profile (task-master rules add claude), the agents are automatically installed to .claude/agents/ directory.

    Usage Example

    # In Claude Code, after initializing a project with tasks:
    
    # Use task-orchestrator to analyze and coordinate work
    # The orchestrator will:
    # 1. Check task dependencies
    # 2. Identify tasks that can run in parallel
    # 3. Deploy executors for available work
    # 4. Monitor progress and deploy new executors as tasks complete
    
    # Use task-executor for specific task implementation
    # When the orchestrator identifies task 2.3 needs work:
    # The executor will implement that specific task

    Benefits

    • Parallel Execution: Multiple independent tasks can be worked on simultaneously
    • Intelligent Scheduling: Orchestrator understands dependencies and optimizes execution order
    • Separation of Concerns: Planning (orchestrator) is separated from execution (executor)
    • Progress Tracking: Real-time updates as tasks are completed
    • Automatic Progression: As tasks complete, newly unblocked tasks are automatically started

Patch Changes

  • #1094 4357af3 Thanks @Crunchyman-ralph! - Fix expand task generating unrelated generic subtasks

    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.

  • #1079 e495b2b Thanks @Crunchyman-ralph! - Fix scope-up/down prompts to include all required fields for better AI model compatibility

    • Added missing priority field to scope adjustment prompts to prevent validation errors with Claude-code and other models
    • Ensures generated JSON includes all fields required by the schema
  • #1079 e495b2b Thanks @Crunchyman-ralph! - Fix MCP scope-up/down tools not finding tasks

    • Fixed task ID parsing in MCP layer - now correctly converts string IDs to numbers
    • scope_up_task and scope_down_task MCP tools now work properly
  • #1079 e495b2b Thanks @Crunchyman-ralph! - Improve AI provider compatibility for JSON generation

    • Fixed schema compatibility issues between Perplexity and OpenAI o3 models
    • Removed nullable/default modifiers from Zod schemas for broader compatibility
    • Added automatic JSON repair for malformed AI responses (handles cases like missing array values)
    • Perplexity now uses JSON mode for more reliable structured output
    • Post-processing handles default values separately from schema validation

extension@0.23.1

Patch Changes

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Aug 8, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Join our Discord community for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Collaborator

@Crunchyman-ralph Crunchyman-ralph left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

@Crunchyman-ralph Crunchyman-ralph merged commit a003041 into main Aug 8, 2025
1 check passed
Crunchyman-ralph pushed a commit to iamladi/claude-task-master that referenced this pull request Aug 11, 2025
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Crunchyman-ralph pushed a commit to iamladi/claude-task-master that referenced this pull request Aug 11, 2025
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
stephanschielke pushed a commit to stephanschielke/cursor-task-master that referenced this pull request Aug 22, 2025
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
stephanschielke pushed a commit to stephanschielke/cursor-task-master that referenced this pull request Aug 22, 2025
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
sfc-gh-dflippo pushed a commit to sfc-gh-dflippo/task-master-ai that referenced this pull request Dec 4, 2025
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant