Skip to content

Release 0.22#1038

Merged
Crunchyman-ralph merged 15 commits intomainfrom
next
Jul 25, 2025
Merged

Release 0.22#1038
Crunchyman-ralph merged 15 commits intomainfrom
next

Conversation

@Crunchyman-ralph
Copy link
Collaborator

@Crunchyman-ralph Crunchyman-ralph commented Jul 23, 2025

Summary by CodeRabbit

  • New Features

    • Introduced comprehensive Kiro IDE integration with Taskmaster AI, including seven automated task lifecycle hooks for code changes, test success, dependency progression, daily standups, git commit linking, and PR readiness.
    • Added support for specifying tag contexts in CLI commands for more flexible task management.
    • Added new configuration and extensive documentation files detailing workflows, hook usage, integration best practices, and CLI command references.
  • Bug Fixes

    • Corrected token limits for OpenRouter and Groq AI models to prevent context length errors.
    • Fixed tag context handling in task expansion and display commands.
    • Resolved issues with VSCode profile generation, including correct file extensions and removal of unsupported frontmatter properties.
  • Documentation

    • Added detailed guides for development workflows, rule writing, self-improvement, and Taskmaster CLI usage.
    • Updated model documentation to clarify supported and unsupported AI models.
  • Refactor

    • Updated CLI flags for subtask commands, replacing --skip-generate with --generate for clearer control over markdown file regeneration.
  • Chores

    • Upgraded dependencies, including the Gemini CLI provider, and improved configuration for AI providers and integration environments.
    • Enhanced test coverage for new profile features and hook automation.

mm-parthy and others added 11 commits July 21, 2025 22:13
Fix: Correct tag handling for expand --all and show commands
* Don't generate task files unless requested

* add changeset

* switch to optional generate flag instead of skip-generate based on new default

* switch generate default to false and update flags and docs

* revert DO/DON'T section

* use simpler non ANSI-C quoting
* fix(profiles): fix vscode profile generation

- Add .instructions.md extension for VSCode Copilot instructions file.
- Add customReplacement to remove unsupported property `alwaysApply` from YAML front-matter in VSCode instructions files.
- Add missing property `targetExtension` to the base profile object to
  support the change to file extension.

* chore: run format

---------

Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com>
* fix: bump ai-sdk-provider-gemini-cli to v0.1.1

Updates ai-sdk-provider-gemini-cli from v0.0.4 to v0.1.1 to fix a breaking change
introduced in @google/gemini-cli-core v0.1.12+ where createContentGeneratorConfig
signature changed, causing "config.getModel is not a function" errors.

The new version includes:
- Fixed compatibility with @google/gemini-cli-core ^0.1.13
- Added proxy support via configuration
- Resolved the breaking API change

Fixes compatibility issues when using newer versions of gemini-cli-core.

See: https://github.com/ben-vargas/ai-sdk-provider-gemini-cli/releases/tag/v0.1.1

* chore: fix package-lock.json being too big

---------

Co-authored-by: Ben Vargas <ben@example.com>
Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com>
)

* feat: Add Kiro hooks and configuration for Taskmaster integration

- Introduced multiple Kiro hooks to automate task management workflows, including:
  - Code Change Task Tracker
  - Complexity Analyzer
  - Daily Standup Assistant
  - Git Commit Task Linker
  - Import Cleanup on Delete
  - New File Boilerplate
  - PR Readiness Checker
  - Task Dependency Auto-Progression
  - Test Success Task Completer
- Added .mcp.json configuration for Taskmaster AI integration.
- Updated development workflow documentation to reflect new hook-driven processes and best practices.

This commit enhances the automation capabilities of Taskmaster, streamlining task management and improving developer efficiency.

* chore: run format

* chore: improve unit tests on kiro rules

* chore: run format

* chore: run format

* feat: improve PR and add changeset
@changeset-bot
Copy link

changeset-bot bot commented Jul 23, 2025

🦋 Changeset detected

Latest commit: 1bd1e64

The changes in this PR will be included in the next version bump.

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jul 23, 2025

Caution

Review failed

Failed to post review comments.

Walkthrough

This update introduces extensive integration between Taskmaster AI and the Kiro IDE through automated hooks, improves task file generation defaults, enhances model support handling, and significantly expands documentation. Key changes include new Kiro hook configurations, revised CLI and profile behaviors, improved model filtering, dependency updates, and comprehensive workflow and integration guides.

Changes

Files / Groups Change Summary
.kiro/hooks/*.kiro.hook, assets/kiro-hooks/*.kiro.hook Added multiple Kiro hook configuration files to automate task tracking, complexity analysis, daily standups, PR readiness, git commit linking, dependency progression, and test-based task completion.
.kiro/settings/mcp.json, .mcp.json Added MCP server configuration files for Taskmaster AI integration, specifying command, environment variables, and server setup.
.kiro/steering/*.md, .taskmaster/CLAUDE.md, CLAUDE.md, docs/models.md, assets/rules/taskmaster_hooks_workflow.mdc Added or updated extensive documentation on development workflows, rule formatting, self-improvement, Taskmaster command reference, Kiro hook workflow, and Claude Code integration. Updated model documentation to include unsupported models section.
.taskmaster/reports/task-complexity-report_cc-kiro-hooks.json Added a complexity report JSON summarizing analysis for 10 project tasks with scores, expansion prompts, and reasoning.
.taskmaster/state.json Updated the timestamp for the lastSwitched field.
.changeset/*.md Added changeset files documenting dependency updates, bug fixes, workflow cleanups, and Kiro integration.
package.json Reformatted workspaces, reordered optionalDependencies, and updated ai-sdk-provider-gemini-cli to ^0.1.1.
scripts/modules/commands.js Added --tag option to several commands for tag context support; replaced --skip-generate with --generate flag for subtask commands and updated logic accordingly.
scripts/modules/config-manager.js Improved OpenRouter model handling: applies conservative max token limits for unknown models and filters out unsupported models from available models list.
scripts/modules/supported-models.json Added "supported" boolean and "reason" fields to models; marked some OpenRouter "free" models as unsupported and provided reasons.
scripts/modules/task-manager/add-subtask.js, remove-subtask.js Changed default generateFiles parameter from true to false for subtask add/remove; enabled file generation only if explicitly requested.
scripts/modules/task-manager/remove-task.js Disabled automatic task file regeneration after task removal by commenting out the relevant code.
scripts/modules/task-manager/expand-all-tasks.js Added complexityReportPath context parameter to support complexity-driven task expansion.
src/profiles/base-profile.js, src/profiles/vscode.js, src/profiles/kiro.js Added targetExtension property to profiles; VSCode profile now uses .instructions.md and strips alwaysApply; Kiro profile adds post-convert hook to auto-install Kiro hooks and transforms frontmatter.
tests/unit/profiles/rule-transformer-kiro.test.js, tests/unit/profiles/rule-transformer-vscode.test.js Extended and updated tests to cover new profile behaviors, hook installation logic, and file extension changes.
tests/integration/profiles/vscode-init-functionality.test.js Updated test to expect .instructions.md extension for VSCode profile output.
.cursor/rules/commands.mdc, .cursor/rules/taskmaster.mdc, assets/rules/taskmaster.mdc Updated CLI documentation to use --generate (instead of --skip-generate) for subtask commands and revised related descriptions.
docs/scripts/models-json-to-markdown.js Added logic to generate an "Unsupported Models" markdown table and filter models by support status.

Sequence Diagram(s)

sequenceDiagram
    participant Developer
    participant Kiro IDE
    participant Taskmaster AI (MCP/CLI)
    participant Git
    participant Test Runner

    Developer->>Kiro IDE: Edit source/test files, save changes
    Kiro IDE->>Taskmaster AI: Trigger hooks on file edits
    alt Code change detected
        Taskmaster AI->>Taskmaster AI: List in-progress tasks
        Taskmaster AI->>Taskmaster AI: Summarize code changes
        Taskmaster AI->>Taskmaster AI: Update task notes
        Taskmaster AI->>Developer: Prompt to mark task done if changes complete it
    end
    alt Test file edited
        Taskmaster AI->>Test Runner: Run relevant tests
        Test Runner-->>Taskmaster AI: Test results
        Taskmaster AI->>Taskmaster AI: Find related tasks
        Taskmaster AI->>Developer: Prompt to mark tasks done if tests pass
    end
    alt Task marked done
        Taskmaster AI->>Taskmaster AI: Analyze dependencies
        Taskmaster AI->>Taskmaster AI: Auto-start dependent tasks if ready
    end
    alt Git commit initiated
        Taskmaster AI->>Git: git diff --staged
        Taskmaster AI->>Taskmaster AI: Link commit to tasks, suggest message
        Taskmaster AI->>Developer: Present commit message for approval
    end
    alt PR readiness check triggered
        Taskmaster AI->>Taskmaster AI: Validate tasks, subtasks, tests, TODOs
        Taskmaster AI->>Developer: Generate PR description and title
    end
Loading

Estimated code review effort

🎯 5 (Critical) | ⏱️ ~120+ minutes

Possibly related PRs

Suggested reviewers

  • Crunchyman-ralph
✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch next

🪧 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.
    • @coderabbitai modularize this function.
  • 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.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

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 docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai generate unit tests to generate unit tests for 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.

Crunchyman-ralph and others added 4 commits July 23, 2025 18:28
…ease candidate (#1036)

* chore: improve pre-release CI to be able to release more than one release candidate

* chore: implement requested changes from coderabbit

* chore: apply requested changes
…ity report if it is missing, instead of showing an error. (#1043)

* feat: fix CLI UI error when trying to display non-existent complexity report

* chore: fix git issue

* chore: run format

* Update .changeset/thick-squids-attend.md

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* Update .changeset/thick-squids-attend.md

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* Update .changeset/thick-squids-attend.md

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
…tions (#1044)

* feat: add pull request templates for bug fixes, features, and integrations

- Introduced a comprehensive pull request template structure to streamline contributions.
- Added specific templates for bug fixes, new features, and integrations to enhance clarity and consistency in PR submissions.
- Configured the pull request template settings for better user guidance during the contribution process.

* chore: fix format

* Update .github/PULL_REQUEST_TEMPLATE.md

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* Update .github/PULL_REQUEST_TEMPLATE.md

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* Update .github/PULL_REQUEST_TEMPLATE.md

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* chore: implement PR requested changes

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
@eyaltoledano eyaltoledano changed the title Release 0.22 Release 0.22 RC Jul 25, 2025
@eyaltoledano eyaltoledano changed the title Release 0.22 RC Release 0.22 Jul 25, 2025
@eyaltoledano eyaltoledano self-requested a review July 25, 2025 15:09
Copy link
Owner

@eyaltoledano eyaltoledano 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 43e4d7c into main Jul 25, 2025
7 checks passed
stephanschielke pushed a commit to stephanschielke/cursor-task-master that referenced this pull request Aug 22, 2025
stephanschielke pushed a commit to stephanschielke/cursor-task-master that referenced this pull request Aug 22, 2025
@coderabbitai coderabbitai bot mentioned this pull request Oct 11, 2025
16 tasks
sfc-gh-dflippo pushed a commit to sfc-gh-dflippo/task-master-ai that referenced this pull request Dec 4, 2025
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.

6 participants