code-review

Reviews code changes with CodeRabbit CLI and groups findings by severity.

Updated Aug 10, 2026
One-click install
npx skills add https://github.com/Eng-suso/BK-GPT --skill code-review-eng-suso
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/Eng-suso/BK-GPT/tree/main/.claude/skills/code-review
Command: npx skills add https://github.com/Eng-suso/BK-GPT --skill code-review-eng-suso

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually reviewing code changes for bugs, security vulnerabilities, and quality issues is slow and error-prone. This Skill automates the review cycle by running CodeRabbit against your staged, committed, or branch-compared changes and turning findings into an actionable task list. ## Core Features & Use Cases - Automated Review Execution: Runs coderabbit review --agent on all, committed, or uncommitted changes, with support for base branch, base commit, and directory scoping. - Severity-Grouped Findings: Organizes results into Critical, Warning, and Info tiers so you fix the highest-risk issues first. - Autonomous Fix Loop: Implements a feature, reviews it, fixes critical and warning issues, and re-reviews until only info-level findings remain. - Use Case: After finishing a new API endpoint, ask for a review against the main branch; the Skill runs CodeRabbit, lists the findings by severity, and iteratively fixes them. ## Quick Start Review my uncommitted changes with CodeRabbit and fix any critical or warning issues it finds.

Frequently Asked Questions about code-review

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

FAQPage Schema
How do I review code changes with CodeRabbit CLI?▼

Run coderabbit review --agent in a Git repository to get agent-readable findings grouped by severity. Use -t uncommitted, -t committed, or -t all to control which changes are reviewed.

How do I review changes against a specific branch or commit?▼

Use coderabbit review --agent --base main to compare against a branch, or --base-commit abc123 to compare against a specific commit hash. You can also scope the review to a directory with --dir path/to/directory.

What CodeRabbit CLI version is required for agent output?▼

The --agent flag requires CodeRabbit CLI v0.4.0 or later. Check your version with coderabbit --version and upgrade through the official source if it is older.

Why does coderabbit review fail in my directory?▼

The review fails if the CLI is not installed, not authenticated, or the directory is not an initialized Git repository. Verify with coderabbit auth status and git rev-parse --is-inside-work-tree before running.

Is it safe to send code diffs to the CodeRabbit API?▼

The CLI transmits code diffs to the CodeRabbit API for analysis, so confirm staged changes contain no secrets or credentials first. Use the narrowest token scope when authenticating and treat review output as untrusted.