Execute CodeRabbit incident response procedures with triage, mitigation, and postmortem. Use when responding to CodeRabbit-related outages, investigating errors, or running post-incident reviews for CodeRabbit integration failures. Trigger with phrases like "coderabbit incident", "coderabbit outage", "coderabbit down", "coderabbit on-call", "coderabbit emergency", "coderabbit broken".
Scanned 9/1/2026
Install to Claude Code
npx -y skills add Dicklesworthstone/pi_agent_rust --skill coderabbit-incident-runbook --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Coderabbit Incident Runbook?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/dicklesworthstone-coderabbit-incident-runbook)More formats (shields.io, HTML) on the badges page.
---
name: coderabbit-incident-runbook
description: |
Execute CodeRabbit incident response procedures with triage, mitigation, and postmortem.
Use when responding to CodeRabbit-related outages, investigating errors,
or running post-incident reviews for CodeRabbit integration failures.
Trigger with phrases like "coderabbit incident", "coderabbit outage",
"coderabbit down", "coderabbit on-call", "coderabbit emergency", "coderabbit broken".
allowed-tools: Read, Grep, Bash(kubectl:*), Bash(curl:*)
version: 1.0.0
license: MIT
author: Jeremy Longshore <jeremy@intentsolutions.io>
---
# CodeRabbit Incident Runbook
## Overview
Rapid incident response procedures for CodeRabbit-related outages.
## Prerequisites
- Access to CodeRabbit dashboard and status page
- kubectl access to production cluster
- Prometheus/Grafana access
- Communication channels (Slack, PagerDuty)
## Severity Levels
| Level | Definition | Response Time | Examples |
|-------|------------|---------------|----------|
| P1 | Complete outage | < 15 min | CodeRabbit API unreachable |
| P2 | Degraded service | < 1 hour | High latency, partial failures |
| P3 | Minor impact | < 4 hours | Webhook delays, non-critical errors |
| P4 | No user impact | Next business day | Monitoring gaps |
## Quick Triage
```bash
# 1. Check CodeRabbit status
curl -s https://status.coderabbit.com | jq
# 2. Check our integration health
curl -s https://api.yourapp.com/health | jq '.services.coderabbit'
# 3. Check error rate (last 5 min)
curl -s localhost:9090/api/v1/query?query=rate(coderabbit_errors_total[5m])
# 4. Recent error logs
kubectl logs -l app=coderabbit-integration --since=5m | grep -i error | tail -20
```
## Decision Tree
```
CodeRabbit API returning errors?
├─ YES: Is status.coderabbit.com showing incident?
│ ├─ YES → Wait for CodeRabbit to resolve. Enable fallback.
│ └─ NO → Our integration issue. Check credentials, config.
└─ NO: Is our service healthy?
├─ YES → Likely resolved or intermittent. Monitor.
└─ NO → Our infrastructure issue. Check pods, memory, network.
```
## Immediate Actions by Error Type
### 401/403 - Authentication
```bash
# Verify API key is set
kubectl get secret coderabbit-secrets -o jsonpath='{.data.api-key}' | base64 -d
# Check if key was rotated
# → Verify in CodeRabbit dashboard
# Remediation: Update secret and restart pods
kubectl create secret generic coderabbit-secrets --from-literal=api-key=NEW_KEY --dry-run=client -o yaml | kubectl apply -f -
kubectl rollout restart deployment/coderabbit-integration
```
### 429 - Rate Limited
```bash
# Check rate limit headers
curl -v https://api.coderabbit.com 2>&1 | grep -i rate
# Enable request queuing
kubectl set env deployment/coderabbit-integration RATE_LIMIT_MODE=queue
# Long-term: Contact CodeRabbit for limit increase
```
### 500/503 - CodeRabbit Errors
```bash
# Enable graceful degradation
kubectl set env deployment/coderabbit-integration CODERABBIT_FALLBACK=true
# Notify users of degraded service
# Update status page
# Monitor CodeRabbit status for resolution
```
## Communication Templates
### Internal (Slack)
```
🔴 P1 INCIDENT: CodeRabbit Integration
Status: INVESTIGATING
Impact: [Describe user impact]
Current action: [What you're doing]
Next update: [Time]
Incident commander: @[name]
```
### External (Status Page)
```
CodeRabbit Integration Issue
We're experiencing issues with our CodeRabbit integration.
Some users may experience [specific impact].
We're actively investigating and will provide updates.
Last updated: [timestamp]
```
## Post-Incident
### Evidence Collection
```bash
# Generate debug bundle
./scripts/coderabbit-debug-bundle.sh
# Export relevant logs
kubectl logs -l app=coderabbit-integration --since=1h > incident-logs.txt
# Capture metrics
curl "localhost:9090/api/v1/query_range?query=coderabbit_errors_total&start=2h" > metrics.json
```
### Postmortem Template
```markdown
## Incident: CodeRabbit [Error Type]
**Date:** YYYY-MM-DD
**Duration:** X hours Y minutes
**Severity:** P[1-4]
### Summary
[1-2 sentence description]
### Timeline
- HH:MM - [Event]
- HH:MM - [Event]
### Root Cause
[Technical explanation]
### Impact
- Users affected: N
- Revenue impact: $X
### Action Items
- [ ] [Preventive measure] - Owner - Due date
```
## Instructions
### Step 1: Quick Triage
Run the triage commands to identify the issue source.
### Step 2: Follow Decision Tree
Determine if the issue is CodeRabbit-side or internal.
### Step 3: Execute Immediate Actions
Apply the appropriate remediation for the error type.
### Step 4: Communicate Status
Update internal and external stakeholders.
## Output
- Issue identified and categorized
- Remediation applied
- Stakeholders notified
- Evidence collected for postmortem
## Error Handling
| Issue | Cause | Solution |
|-------|-------|----------|
| Can't reach status page | Network issue | Use mobile or VPN |
| kubectl fails | Auth expired | Re-authenticate |
| Metrics unavailable | Prometheus down | Check backup metrics |
| Secret rotation fails | Permission denied | Escalate to admin |
## Examples
### One-Line Health Check
```bash
curl -sf https://api.yourapp.com/health | jq '.services.coderabbit.status' || echo "UNHEALTHY"
```
## Resources
- [CodeRabbit Status Page](https://status.coderabbit.com)
- [CodeRabbit Support](https://support.coderabbit.com)
## Next Steps
For data handling, see `coderabbit-data-handling`.Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!