coderabbit-local-dev-loop

Featured

Configure CodeRabbit CLI for local pre-commit code reviews and fast iteration. Use when setting up local development with CodeRabbit CLI reviews, integrating AI review into your commit workflow, or testing config changes. Trigger with phrases like "coderabbit dev setup", "coderabbit local development", "coderabbit CLI workflow", "coderabbit pre-commit review".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# CodeRabbit Local Dev Loop ## Overview Use CodeRabbit CLI to review code locally before opening a PR. The CLI provides the same AI-powered review as the GitHub App but runs in your terminal against staged or unstaged changes. This creates a multi-layered review process: local CLI review before commit, then automated PR review after push. ## Prerequisites - CodeRabbit CLI installed (`curl -fsSL https://cli.coderabbit.ai/install.sh | sh`) - Git repository with `.coderabbit.yaml` configuration - CodeRabbit account (CLI uses credits: $0.25 per file reviewed) ## Instructions ### Step 1: Install and Verify CLI ```bash set -euo pipefail # Install CodeRabbit CLI curl -fsSL https://cli.coderabbit.ai/install.sh | sh # Verify installation cr --version # Authenticate (opens browser for OAuth) cr auth login ``` ### Step 2: Local Review Workflow ```bash set -euo pipefail # Review all staged changes (most common workflow) git add -A cr review # Review specific files only cr review src/api/routes.ts src/middleware/auth.ts # Interactive mode: ask follow-up questions about review feedback cr review --interactive # Plain output mode (pipe to other tools or AI agents) cr review --prompt-only ``` ### Step 3: Git Hook Integration ```bash #!/bin/bash # .git/hooks/pre-push (make executable: chmod +x .git/hooks/pre-push) set -euo pipefail echo "Running CodeRabbit pre-push review..." # Get list of changed files vs remote CHANGED_FILES=$(git diff --name-only @{push}.. 2>/dev/null || git d...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

coderabbit-core-workflow-a

Execute CodeRabbit primary workflow: automated PR code review with configuration. Use when setting up automated code reviews on pull requests, configuring review behavior, or establishing the core CodeRabbit review loop. Trigger with phrases like "coderabbit review workflow", "coderabbit PR review", "coderabbit auto review", "configure coderabbit reviews".

2,266 Updated today
jeremylongshore
AI & Automation Featured

coderabbit-hello-world

Create a minimal working CodeRabbit configuration and trigger your first AI review. Use when starting with CodeRabbit, testing your setup, or learning basic .coderabbit.yaml patterns. Trigger with phrases like "coderabbit hello world", "coderabbit example", "coderabbit quick start", "first coderabbit review".

2,266 Updated today
jeremylongshore
AI & Automation Featured

coderabbit-install-auth

Install and configure CodeRabbit AI code review on GitHub or GitLab repositories. Use when setting up CodeRabbit for the first time, installing the GitHub App, configuring the CLI, or connecting CodeRabbit to your repositories. Trigger with phrases like "install coderabbit", "setup coderabbit", "coderabbit auth", "configure coderabbit", "add coderabbit to repo".

2,266 Updated today
jeremylongshore
Code & Development Solid

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.

359 Updated today
majiayu000
AI & Automation Featured

coderabbit-multi-env-setup

Configure CodeRabbit review behavior per branch and environment using path instructions and base branches. Use when setting different review profiles per branch, configuring stricter reviews for release branches, or customizing CodeRabbit behavior across dev/staging/prod workflows. Trigger with phrases like "coderabbit environments", "coderabbit staging", "coderabbit per-branch config", "coderabbit release review", "coderabbit environment setup".

2,266 Updated today
jeremylongshore