Conversation
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 detectedLatest 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 |
|
Caution Review failedFailed to post review comments. WalkthroughThis 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
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
Estimated code review effort🎯 5 (Critical) | ⏱️ ~120+ minutes Possibly related PRs
Suggested reviewers
✨ Finishing Touches
🧪 Generate unit tests
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed 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)
Other keywords and placeholders
Documentation and Community
|
…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>
Release 0.22
Release 0.22
Release 0.22
Summary by CodeRabbit
New Features
Bug Fixes
Documentation
Refactor
--skip-generatewith--generatefor clearer control over markdown file regeneration.Chores