Claude-skill-registry coderabbit-review
Use CodeRabbit CLI to receive external code review feedback and address identified issues. Invoke this skill when the user requests CodeRabbit review, or proactively after implementing significant code changes to get feedback and improve code quality.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/coderabbit-review" ~/.claude/skills/majiayu000-claude-skill-registry-coderabbit-review && rm -rf "$T"
manifest:
skills/data/coderabbit-review/SKILL.mdsource content
Coderabbit Review
Workflow
- After implementing code changes, request a review from CodeRabbit
- Analyze the review results and understand the feedback
- Fix the identified issues
- Re-run the review if necessary to confirm fixes
Command Reference
: Show only AI agent prompts (implies --plain)--prompt-only
: Output in plain text format with human-friendly formatting--plain
: Review type: all, committed, uncommitted (default: "all")--type <type>
: Base branch for comparison--base <branch>
: Base commit on current branch for comparison--base-commit <commit>
: Working directory path (default: current directory)--cwd <path>
Command Selection
Review all changes (default):
coderabbit review --prompt-only
Review uncommitted changes only:
coderabbit review --prompt-only --type uncommitted
Review committed changes only:
coderabbit review --prompt-only --type committed
Compare against base branch:
coderabbit review --prompt-only --base <branch>
Handling Review Feedback
When review feedback is received, address issues in the following priority order:
- Security issues - Fix immediately
- Bugs/regressions - High priority fixes
- Missing tests - Add required test coverage
- Code quality - Implement refactoring and improvements
- Style/conventions - Align with project standards
Verification
After addressing the feedback, re-run
coderabbit review --prompt-only to confirm that the issues have been resolved.