coderabbit-rate-limits

Featured

Understand and handle CodeRabbit and GitHub API rate limits for review automation. Use when hitting rate limits on @coderabbitai commands, automating review queries, or building scripts that interact with CodeRabbit via the GitHub API. Trigger with phrases like "coderabbit rate limit", "coderabbit throttling", "coderabbit too many requests", "github api rate limit coderabbit".

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 Rate Limits ## Overview CodeRabbit rate limits apply at two levels: (1) CodeRabbit's own processing limits on how many reviews it can run concurrently, and (2) GitHub API rate limits when you build automation that queries CodeRabbit review data. This skill covers both and provides patterns for handling limits gracefully. ## Prerequisites - CodeRabbit installed on repository - GitHub CLI (`gh`) or API access for automation - Understanding of GitHub rate limit headers ## Rate Limit Tiers ### CodeRabbit Review Processing | Factor | Limit | Notes | |--------|-------|-------| | Concurrent reviews per org | Varies by plan | Free: 1, Pro: 5, Enterprise: custom | | Max PR size | ~3000 files | Larger PRs may timeout | | Re-review cooldown | ~30 seconds | Between `@coderabbitai full review` commands | | Command rate | ~10/minute/repo | PR comment commands | ### GitHub API (Affects Automation Scripts) | Tier | Rate Limit | Reset Window | |------|-----------|--------------| | Unauthenticated | 60 req/hour | Rolling | | Personal Access Token | 5,000 req/hour | Rolling | | GitHub App | 5,000 req/hour/installation | Rolling | | `gh` CLI | 5,000 req/hour | Rolling | ## Instructions ### Step 1: Check Current GitHub API Rate Limit ```bash set -euo pipefail # Check your current rate limit status gh api rate_limit --jq '{ core: { limit: .resources.core.limit, remaining: .resources.core.remaining, reset: (.resources.core.reset | todate) }, search: { limit...

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-observability

Monitor CodeRabbit review effectiveness with metrics, dashboards, and alerts. Use when tracking review coverage, measuring comment acceptance rates, or building dashboards for CodeRabbit adoption across your organization. Trigger with phrases like "coderabbit monitoring", "coderabbit metrics", "coderabbit observability", "monitor coderabbit", "coderabbit alerts", "coderabbit dashboard".

2,266 Updated today
jeremylongshore
AI & Automation Featured

coderabbit-sdk-patterns

Apply production-ready CodeRabbit automation patterns using GitHub API and PR comments. Use when building automation around CodeRabbit reviews, processing review feedback programmatically, or integrating CodeRabbit into custom workflows. Trigger with phrases like "coderabbit automation", "coderabbit API patterns", "automate coderabbit", "coderabbit github api", "process coderabbit reviews".

2,266 Updated today
jeremylongshore
AI & Automation Featured

coderabbit-ci-integration

Configure CodeRabbit as a CI gate with GitHub Actions, branch protection, and review enforcement. Use when setting up CodeRabbit as a required check, gating merges on review approval, or integrating CodeRabbit status into your CI pipeline. Trigger with phrases like "coderabbit CI", "coderabbit GitHub Actions", "coderabbit required check", "coderabbit merge gate", "coderabbit CI pipeline".

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
AI & Automation Featured

coderabbit-common-errors

Diagnose and fix CodeRabbit common errors and configuration issues. Use when CodeRabbit is not reviewing PRs, posting duplicate comments, ignoring configuration, or behaving unexpectedly. Trigger with phrases like "coderabbit error", "fix coderabbit", "coderabbit not working", "debug coderabbit", "coderabbit broken".

2,266 Updated today
jeremylongshore