coderabbit-common-errors

0
0
Source

Diagnose and fix CodeRabbit common errors and exceptions. Use when encountering CodeRabbit errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "coderabbit error", "fix coderabbit", "coderabbit not working", "debug coderabbit".

Install

mkdir -p .claude/skills/coderabbit-common-errors && curl -L -o skill.zip "https://mcp.directory/api/skills/download/8640" && unzip -o skill.zip -d .claude/skills/coderabbit-common-errors && rm skill.zip

Installs to .claude/skills/coderabbit-common-errors

About this skill

CodeRabbit Common Errors

Overview

Quick-reference troubleshooting guide for the most common CodeRabbit issues. CodeRabbit is a GitHub/GitLab App that reviews PRs automatically -- most problems are configuration issues, permission gaps, or YAML syntax errors rather than API failures.

Prerequisites

  • CodeRabbit GitHub App installed on repository
  • Access to GitHub repository settings
  • .coderabbit.yaml in repository root

Instructions

Step 1: Identify Your Issue Category

SymptomCategoryJump To
No review posted on PRInstallation/PermissionsError 1
Review on some PRs but not othersConfigurationError 2-4
Too many comments / noiseTuningError 5
Config changes not taking effectYAML IssuesError 6
Bot not responding to commandsInteractionError 7
Review takes too longPerformanceError 8

Error 1: No Review Posted on PR

Symptoms: PR is open, targeting main, but no CodeRabbit review appears after 15+ minutes.

Diagnosis:

set -euo pipefail
# Check if CodeRabbit App is installed on this repo
gh api repos/OWNER/REPO/installation --jq '.app_slug' 2>/dev/null || echo "NOT INSTALLED"

# Check if the PR author has a CodeRabbit seat
# Go to app.coderabbit.ai > Organization > Seats

Causes & Solutions:

  1. App not installed: Visit https://github.com/apps/coderabbitai and install on the repo
  2. Repo not selected: In GitHub > Installed Apps > CodeRabbit, add the specific repository
  3. No seat assigned: The PR author needs a CodeRabbit seat (app.coderabbit.ai > Subscription)
  4. Private repo without org plan: Free tier only works on public repos

Error 2: Reviews Only on Some Branches

Symptoms: Reviews appear on PRs to main but not develop or feature branches.

Cause: base_branches filter in configuration only includes specific branches.

Fix:

# .coderabbit.yaml
reviews:
  auto_review:
    enabled: true
    base_branches:
      - main
      - develop
      - "release/*"     # Glob patterns work
      - "hotfix/*"
      # Remove base_branches entirely to review PRs to ALL branches

Error 3: Reviews Skip Certain PRs

Symptoms: Some PRs get reviewed, others are silently skipped.

Diagnosis checklist:

# Check these .coderabbit.yaml settings:
reviews:
  auto_review:
    drafts: false           # Draft PRs are skipped (expected behavior)
    ignore_title_keywords:  # PRs with these keywords in title are skipped
      - "WIP"
      - "DO NOT MERGE"
      - "chore: bump"      # This skips dependency update PRs

# Also check: Is the PR author a bot?
# Bot PRs (dependabot, renovate) may not trigger reviews
# unless bot accounts have CodeRabbit seats

Error 4: Reviews Include Generated/Unwanted Files

Symptoms: CodeRabbit comments on lock files, generated code, or build output.

Fix:

# .coderabbit.yaml - Add path filters
reviews:
  path_filters:
    - "!**/*.lock"
    - "!**/package-lock.json"
    - "!**/pnpm-lock.yaml"
    - "!**/*.snap"
    - "!**/generated/**"
    - "!dist/**"
    - "!**/*.min.js"
    - "!vendor/**"
    - "!**/*.generated.*"

Error 5: Too Many Comments / Review Noise

Symptoms: CodeRabbit posts 10-20+ comments per PR, most are nitpicks.

Fix:

# .coderabbit.yaml - Reduce comment volume
reviews:
  profile: "chill"           # Fewer comments, only significant issues
  # Options: chill (fewest) → assertive (balanced) → nitpicky (most)

  # Give context to prevent misguided comments
  path_instructions:
    - path: "src/legacy/**"
      instructions: |
        This is legacy code. Only flag security issues and bugs.
        Do NOT suggest refactoring or style changes.
    - path: "scripts/**"
      instructions: |
        One-off scripts. Do not enforce production standards.
        Only flag: security issues, destructive ops without confirmation.

Error 6: Configuration Changes Not Taking Effect

Symptoms: You updated .coderabbit.yaml but reviews behave the same way.

Diagnosis:

# In a PR comment, run:
@coderabbitai configuration

# CodeRabbit will reply with the active configuration as YAML.
# Compare with your .coderabbit.yaml to find discrepancies.

# Common causes:
# 1. YAML syntax error - entire config is ignored silently
# 2. Config not on the base branch - CodeRabbit reads config from the PR's base branch
# 3. Organization-level config overriding repo config
# 4. Wrong field name (e.g., "review_instructions" instead of "path_instructions")

YAML validation:

set -euo pipefail
# Validate YAML syntax
python3 -c "import yaml; yaml.safe_load(open('.coderabbit.yaml'))" && echo "YAML OK" || echo "YAML INVALID"

# Or use an online validator: https://www.yamllint.com/

Error 7: Bot Not Responding to PR Comments

Symptoms: You post @coderabbitai full review but nothing happens.

Causes & Solutions:

  1. Typo in mention: Must be exactly @coderabbitai (one word, lowercase)
  2. Comment in wrong location: Commands work in PR comments, not commit comments
  3. Chat disabled: Ensure .coderabbit.yaml has chat: auto_reply: true
  4. Rate limited: Too many commands in quick succession; wait a few minutes
# .coderabbit.yaml - Ensure chat is enabled
chat:
  auto_reply: true    # Required for @coderabbitai commands to work

Error 8: Review Takes Too Long (15+ Minutes)

Symptoms: PR opened but CodeRabbit review not posted after 15 minutes.

Causes:

PR SizeExpected TimeAction
< 200 lines2-3 minNormal, wait
200-500 lines3-7 minNormal, wait
500-1000 lines7-12 minConsider splitting
1000+ lines12-15+ minSplit PR or be patient

If it is been 20+ minutes on a small PR:

1. Check CodeRabbit status: https://status.coderabbit.ai
2. Try: @coderabbitai full review (force re-review)
3. Check GitHub App installation hasn't been suspended
4. Contact support via CodeRabbit Discord or email

Step 2: Verify Fix

After applying a fix, create or update a PR and confirm CodeRabbit behaves as expected:

set -euo pipefail
# Force a re-review on an existing PR
gh pr comment PR_NUMBER --body "@coderabbitai full review"

# Or check the active config
gh pr comment PR_NUMBER --body "@coderabbitai configuration"

Output

  • Issue identified from symptom-based diagnosis
  • Configuration fix applied to .coderabbit.yaml
  • Fix verified via re-review or configuration check

Error Handling

IssueCauseSolution
All reviews stopped suddenlyGitHub App permissions revokedReinstall CodeRabbit GitHub App
"This repository is not configured"Repo removed from App accessRe-add repo in GitHub App settings
YAML parse error in logsInvalid .coderabbit.yamlValidate YAML syntax before committing
Stale reviews on old PRsPR was created before config changeRun @coderabbitai full review

Resources

Next Steps

For comprehensive debugging, see coderabbit-debug-bundle.

svg-icon-generator

jeremylongshore

Svg Icon Generator - Auto-activating skill for Visual Content. Triggers on: svg icon generator, svg icon generator Part of the Visual Content skill category.

8227

d2-diagram-creator

jeremylongshore

D2 Diagram Creator - Auto-activating skill for Visual Content. Triggers on: d2 diagram creator, d2 diagram creator Part of the Visual Content skill category.

4926

automating-mobile-app-testing

jeremylongshore

This skill enables automated testing of mobile applications on iOS and Android platforms using frameworks like Appium, Detox, XCUITest, and Espresso. It generates end-to-end tests, sets up page object models, and handles platform-specific elements. Use this skill when the user requests mobile app testing, test automation for iOS or Android, or needs assistance with setting up device farms and simulators. The skill is triggered by terms like "mobile testing", "appium", "detox", "xcuitest", "espresso", "android test", "ios test".

14217

performing-penetration-testing

jeremylongshore

This skill enables automated penetration testing of web applications. It uses the penetration-tester plugin to identify vulnerabilities, including OWASP Top 10 threats, and suggests exploitation techniques. Use this skill when the user requests a "penetration test", "pentest", "vulnerability assessment", or asks to "exploit" a web application. It provides comprehensive reporting on identified security flaws.

4615

designing-database-schemas

jeremylongshore

Design and visualize efficient database schemas, normalize data, map relationships, and generate ERD diagrams and SQL statements.

11514

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

11410

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

1,1421,171

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

969933

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

683829

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

691549

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

797540

pdf-to-markdown

aliceisjustplaying

Convert entire PDF documents to clean, structured Markdown for full context loading. Use this skill when the user wants to extract ALL text from a PDF into context (not grep/search), when discussing or analyzing PDF content in full, when the user mentions "load the whole PDF", "bring the PDF into context", "read the entire PDF", or when partial extraction/grepping would miss important context. This is the preferred method for PDF text extraction over page-by-page or grep approaches.

697374

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.