coderabbit-debug-bundle

Featured

Collect CodeRabbit debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for CodeRabbit problems. Trigger with phrases like "coderabbit debug", "coderabbit support bundle", "coderabbit diagnostic", "coderabbit not working evidence".

AI & Automation 2,359 stars 334 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 Debug Bundle ## Overview Collect all diagnostic information needed to troubleshoot CodeRabbit issues or file a support request. Since CodeRabbit is a GitHub/GitLab App (not an SDK), debugging focuses on: App installation status, `.coderabbit.yaml` configuration validity, PR review history, and GitHub webhook delivery logs. ## Prerequisites - GitHub CLI (`gh`) authenticated - Repository admin access (for webhook logs) - Access to the GitHub repository where CodeRabbit is installed ## Instructions ### Step 1: Check CodeRabbit Installation Status ```bash set -euo pipefail OWNER="${1:-your-org}" REPO="${2:-your-repo}" echo "=== CodeRabbit Debug Bundle ===" echo "Repository: $OWNER/$REPO" echo "Generated: $(date -u +%Y-%m-%dT%H:%M:%SZ)" echo "" # Check if CodeRabbit App is installed echo "--- Installation Status ---" INSTALL=$(gh api "repos/$OWNER/$REPO/installation" --jq '.app_slug' 2>/dev/null) if [ "$INSTALL" = "coderabbitai" ]; then echo "CodeRabbit App: INSTALLED" else echo "CodeRabbit App: NOT INSTALLED" echo "Fix: Visit https://github.com/apps/coderabbitai to install" fi ``` ### Step 2: Validate Configuration ```bash set -euo pipefail echo "" echo "--- Configuration Validation ---" # Check if .coderabbit.yaml exists if [ -f .coderabbit.yaml ]; then echo ".coderabbit.yaml: FOUND ($(wc -l < .coderabbit.yaml) lines)" # Validate YAML syntax python3 -c " import yaml, sys try: config = yaml.safe_load(open('.coderabbit.yaml')) print('YAML ...

Details

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

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category