Back to list
basher83

coderabbit

by basher83

Repo for my personal Claude Code configs

10🍴 1📅 Jan 24, 2026

SKILL.md


name: coderabbit description: > AI-powered code review using CodeRabbit CLI and GitHub integration. Use when running local code reviews before commits ("run coderabbit", "review my changes"), configuring .coderabbit.yaml files, integrating CodeRabbit with Claude Code for autonomous review workflows, using @coderabbitai commands in pull requests, or setting up automated code review pipelines.

CodeRabbit

AI code review tool that catches race conditions, memory leaks, and security vulnerabilities. Integrates with Claude Code for autonomous review-and-fix workflows.

Quick Start: Claude Code Integration

Run CodeRabbit as part of your development workflow:

Implement the feature from the spec, then run coderabbit --prompt-only
in the background and fix any issues found.

Key flags for Claude Code:

  • --prompt-only - Minimal output optimized for AI agents
  • --plain - Plain text mode (no interactive UI)
  • --type uncommitted - Review only uncommitted changes

CLI Commands

# Install
curl -fsSL https://cli.coderabbit.ai/install.sh | sh

# Authenticate (run once per Claude Code session)
coderabbit auth login

# Review code
coderabbit                          # Interactive mode
coderabbit --plain                  # Plain text output
coderabbit --prompt-only            # AI-optimized output
coderabbit --type uncommitted       # Only uncommitted changes
coderabbit --base develop           # Compare against develop branch

Claude Code Workflow

Recommended prompt pattern:

Please implement [feature] and then run coderabbit --prompt-only,
let it run as long as it needs (run it in the background) and fix any issues.

CodeRabbit reviews take 7-30+ minutes. Run in background and check periodically.

Fix prioritization: Fix critical issues first, ignore nits. Run CodeRabbit again after fixes to verify no new issues introduced. Limit to 2 iterations.

GitHub Commands

Use @coderabbitai in PR comments:

CommandDescription
@coderabbitai reviewIncremental review of new changes
@coderabbitai full reviewComplete review from scratch
@coderabbitai pauseStop automatic reviews
@coderabbitai resumeRestart reviews
@coderabbitai summaryRegenerate PR summary
@coderabbitai generate docstringsGenerate function docs (Pro)
@coderabbitai generate unit testsGenerate tests (Pro)
@coderabbitai resolveResolve all CR comments
@coderabbitai configurationShow current settings

Add @coderabbitai ignore to PR description to disable reviews for that PR.

Configuration (.coderabbit.yaml)

# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
language: en-US
tone_instructions: "Be concise and focus on critical issues only"

reviews:
  profile: chill  # or "assertive" for comprehensive feedback
  high_level_summary: true
  auto_review:
    enabled: true
    drafts: false
    ignore_title_keywords:
      - "wip"
      - "draft"

knowledge_base:
  code_guidelines:
    enabled: true
    filePatterns:
      - "**/.cursorrules"
      - "**/claude.md"

CodeRabbit auto-reads claude.md and .cursorrules for coding standards.

Supported Tools

CodeRabbit integrates 40+ linters and security analyzers:

  • JavaScript/TypeScript: ESLint, Biome, Oxlint
  • Python: Ruff, Pylint, Flake8
  • Go: golangci-lint
  • Security: Gitleaks, Semgrep, OSV Scanner
  • Infrastructure: Checkov, Hadolint
  • CI/CD: actionlint, CircleCI

Full tools reference: See references/tools-reference.md

Troubleshooting

CodeRabbit not finding issues:

  1. Check auth: coderabbit auth status
  2. Verify git status: git status
  3. Specify review type: --type uncommitted
  4. Specify base branch: --base develop

Claude Code not applying fixes:

  1. Use --prompt-only mode
  2. Include "run in background" in prompt
  3. Explicitly ask to "fix issues found by CodeRabbit"

References

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon