feat: add pr-review-toolkit plugin with workflow-based review orchestration - #45
Conversation
|
Warning Review limit reached
More reviews will be available in 49 minutes and 18 seconds. Learn how PR review limits work. Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file). ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits. 🚦 How do rate limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, the refill rate gradually slows as usage increases. The highest same-day bursts are limited more strictly. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (7)
📝 WalkthroughWalkthroughA new Changespr-review-toolkit Plugin
Sequence DiagramsequenceDiagram
actor User
participant SKILL.md as review-pr Skill
participant review-pr.js as review-pr.js Workflow
participant GitHubAPI as GitHub MCP API
participant Agents as Parallel Review Agents
User->>SKILL.md: /review-pr <pr-url>
SKILL.md->>GitHubAPI: fetch PR details (head SHA, changed files)
SKILL.md->>review-pr.js: invoke workflow (owner/repo/PR#/sha/changedFiles/isLocal)
review-pr.js->>Agents: run code-reviewer (opus) + conditional agents in parallel
Agents-->>review-pr.js: findings[] + positiveObservations[]
review-pr.js-->>SKILL.md: severity-sorted findings
SKILL.md->>GitHubAPI: check existing comments and prior user reviews
SKILL.md->>User: present deduplicated findings for approval
User-->>SKILL.md: approve findings
SKILL.md->>GitHubAPI: pull_request_review_write (pending) + add_comment_to_pending_review
SKILL.md->>GitHubAPI: submit review (REQUEST_CHANGES or COMMENT)
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@pr-review-toolkit/README.md`:
- Around line 9-11: The usage example in the README shows the command
`/pr-review:review-pr` but the plugin is registered with the namespace
`pr-review-toolkit`, which means users won't be able to run the documented
command. Update the command namespace in the usage example from
`/pr-review:review-pr` to `/pr-review-toolkit:review-pr` to match the actual
registered plugin name and ensure the documentation is accurate and runnable.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: 6009d7ea-1c54-4e34-a70e-beccd1a3d4ce
📒 Files selected for processing (7)
.claude-plugin/marketplace.jsonCLAUDE.mdREADME.mdpr-review-toolkit/.claude-plugin/plugin.jsonpr-review-toolkit/README.mdpr-review-toolkit/skills/review-pr/SKILL.mdpr-review-toolkit/skills/review-pr/review-pr.js
…ration Replace personal skill orchestration with a Workflow-based approach that manages agent lifecycle automatically. Five specialized review agents (code-reviewer, silent-failure-hunter, pr-test-analyzer, comment-analyzer, type-design-analyzer) run in parallel with dynamic selection based on changed file types. Assisted-by: Claude:claude-opus-4-6
293c340 to
4073bb7
Compare
Summary
pr-review-toolkitplugin that replaces personal skill orchestration with a Workflow-based approach, managing agent lifecycle automaticallyargsparameter, and usesscriptPathfor clean script loadingTest plan
claude plugin validate ./pr-review-toolkitpassesclaude plugin validate .passesnpx markdownlint-cli2passes on plugin markdownuvx skillsaw --strictpasses/pr-review-toolkit:review-pr <test-pr-url>on a real PRSummary by CodeRabbit
New Features
Documentation