coderabbit-review

Runs CodeRabbit CLI code reviews via WSL with severity filtering and auto-fix iterations.

Updated May 13, 2026
One-click install
npx skills add https://github.com/MarcoBolsa/motor-cotacoes --skill coderabbit-review-marcobolsa
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: coderabbit-review
Source: https://github.com/MarcoBolsa/motor-cotacoes/tree/main/.claude/skills/coderabbit-review
Command: npx skills add https://github.com/MarcoBolsa/motor-cotacoes --skill coderabbit-review-marcobolsa

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Running CodeRabbit CLI reviews from a Windows environment requires manual WSL command construction, long timeouts, and manual triage of findings by severity, which slows down pre-commit and pre-PR quality gates. ## Core Features & Use Cases - Unified WSL Execution: Builds and runs the correct CodeRabbit CLI command through WSL with scope flags for uncommitted, committed, or base-branch reviews. - Severity Classification: Parses review output into CRITICAL, HIGH, MEDIUM, and LOW buckets with defined actions for each level. - Self-Healing Loop: Automatically attempts fixes for CRITICAL issues and re-runs the review up to an agent-specific iteration limit before halting. - Use Case: Before committing a completed story, a developer triggers the skill to run a pre-commit review, auto-fix any critical findings, and receive a pass/fail summary table saved to the QA reports folder. ## Quick Start Run a CodeRabbit review on my uncommitted changes and fix any critical issues found.

Frequently Asked Questions about coderabbit-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a CodeRabbit CLI review from Windows?▼

Invoke the CodeRabbit CLI through WSL using a command like wsl bash -c with the coderabbit binary path and scope flags. The skill builds this command automatically based on whether you target uncommitted, committed, or base-branch changes.

How to review only uncommitted changes with CodeRabbit?▼

Use the uncommitted scope, which maps to the --prompt-only -t uncommitted flags. This is the default mode and is intended for pre-commit review of your current working tree changes.

Why does CodeRabbit review time out?▼

CodeRabbit reviews typically take 7 to 30 minutes depending on diff size, so commands need a 15-minute or longer timeout. If a timeout occurs, the review is usually still processing and the timeout should be increased.

What to do when coderabbit command not found in WSL?▼

The error means the CLI is not installed in the WSL distribution. Install it inside WSL with pip install coderabbit-cli, then verify authentication with coderabbit auth status before running reviews.

How does the auto-fix loop handle critical review findings?▼

When CRITICAL issues are found, the skill attempts an auto-fix and re-runs the review, repeating up to an agent-specific limit (2 for dev, 3 for qa). If critical issues remain after the limit, it halts and reports to the user.