Agent skill

coderabbit-incident-runbook

Execute CodeRabbit incident response procedures when reviews stop working or block PRs. Use when CodeRabbit is down, reviews are not posting, PRs are blocked by stale checks, or CodeRabbit is producing incorrect reviews. Trigger with phrases like "coderabbit incident", "coderabbit outage", "coderabbit down", "coderabbit broken", "coderabbit emergency", "coderabbit not reviewing". '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-coderead-onlyMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill coderabbit-incident-runbook --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 8 KB
Bundled scripts: none
Version: 1.11.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadGrepBash(gh:*)Bash(curl:*)Bash(git:*)
Requires: Designed for Claude Code, also compatible with Codex and OpenClaw
Path: skills/.curated/coderabbit-incident-runbook/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,596
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# CodeRabbit Incident Runbook ## Overview Rapid incident response procedures when CodeRabbit stops reviewing PRs, blocks merges, or behaves incorrectly. Since CodeRabbit is a managed SaaS service, incidents fall into two categories: (1) CodeRabbit service outage (check their status page), or (2) local configuration/permission issues (fix on your side). ## Severity Levels | Level | Symptom | Response Time | Action | |-------|---------|---------------|--------| | P1 | PRs blocked, cannot merge | Immediate | Bypass check, notify team | | P2 | Reviews not posting | < 1 hour | Diagnose installation | | P3 | Reviews delayed (> 15 min) | < 4 hours | Check service status | | P4 | Incorrect reviews | Next business day | Tune configuration | ## Instructions ### Step 1: Quick Triage (2 Minutes) ```bash set -euo pipefail echo "=== CodeRabbit Quick Triage ===" # 1. Check CodeRabbit status page echo "--- Service Status ---" STATUS=$(curl -sf https://status.coderabbit.ai 2>/dev/null && echo "REACHABLE" || echo "UNREACHABLE") echo "Status page: $STATUS" echo "Check manually: https://status.coderabbit.ai" echo "" echo "--- Decision ---" echo "If status.coderabbit.ai shows an incident:" echo " → Cod

What's inside
Steps it walks through
  1. Overview
  2. Severity Levels
  3. Instructions
  4. Step 1: Quick Triage (2 Minutes)
  5. Step 2: P1 Emergency -- PRs Blocked
  6. Step 3: P2 -- Reviews Not Posting
  7. Step 4: P3 -- Reviews Delayed
  8. Step 5: P4 -- Incorrect or Noisy Reviews
  9. Step 6: Communication Template
  10. Step 7: Post-Incident Recovery
  11. Output
  12. Error Handling
  13. Resources
  14. Next Steps
Commands it runs
set -euo pipefail
echo "=== CodeRabbit Quick Triage ==="
echo "--- Service Status ---"
echo "Status page: $STATUS"
echo "Check manually: https://status.coderabbit.ai"
echo ""
echo "--- Decision ---"
echo "If status.coderabbit.ai shows an incident:"
echo "  → CodeRabbit-side issue. Wait for resolution. Use bypass if blocking."
echo "If status page is green:"
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the coderabbit-incident-runbook skill do?

Execute CodeRabbit incident response procedures when reviews stop working or block PRs. Use when CodeRabbit is down, reviews are not posting, PRs are blocked by stale checks, or CodeRabbit is producing incorrect reviews. Trigger with phrases like "coderabbit incident", "coderabbit outage", "coderabbit down", "coderabbit broken", "coderabbit emergency", "coderabbit not reviewing". '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill coderabbit-incident-runbook --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,596 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going