Converted from Claude plugin command "review" (coderabbit). Use when
Install
npx skillscat add monkey1sai/openai-cli/claude-command-coderabbit-review Install via the SkillsCat registry.
SKILL.md
Claude Command (Imported): review
- Source:
C:\Users\monke\.claude\plugins\cache\claude-plugins-official\coderabbit\1.0.0\commands\review.md - Plugin:
coderabbit - Version:
1.0.0
Notes
- Claude command files may use
!prefixes for shell execution. In Codex, run those commands in the terminal manually.
Original Command Frontmatter (Reference)
description: Run CodeRabbit AI code review on your changes
argument-hint: [type] [--base <branch>]
allowed-tools: Bash(coderabbit:*), Bash(cr:*), Bash(git:*)Original Command Body
CodeRabbit Code Review
Run an AI-powered code review using CodeRabbit.
Context
- Current directory: !
pwd - Git repo: !
git rev-parse --is-inside-work-tree 2>/dev/null && echo "Yes" || echo "No" - Branch: !
git branch --show-current 2>/dev/null || echo "detached HEAD" - Has changes: !
git status --porcelain 2>/dev/null | head -1 | grep -q . && echo "Yes" || echo "No"
Instructions
Review code based on: $ARGUMENTS
Prerequisites Check
Skip these checks if you already verified them earlier in this session.
Otherwise, run:
coderabbit --version 2>/dev/null && coderabbit auth status 2>&1 | head -3If CLI not found, tell user:
CodeRabbit CLI is not installed. Run in your terminal:
curl -fsSL https://cli.coderabbit.ai/install.sh | shThen restart your shell and try again.
If "Not logged in", tell user:
You need to authenticate. Run in your terminal:
coderabbit auth loginThen try again.
Run Review
Once prerequisites are met:
coderabbit review --plain -t <type>Where <type> from $ARGUMENTS:
all(default) - All changescommitted- Committed changes onlyuncommitted- Uncommitted only
Add --base <branch> if specified.
Present Results
Group findings by severity:
- Critical - Security, bugs
- Suggestions - Improvements
- Positive - What's good
Offer to apply fixes if codegenInstructions are present.