coderabbit-webhooks-events
Implement CodeRabbit webhook signature validation and event handling. Use when setting up webhook endpoints, implementing signature verification, or handling CodeRabbit event notifications securely. Trigger with phrases like "coderabbit webhook", "coderabbit events", "coderabbit webhook signature", "handle coderabbit events", "coderabbit notifications". '
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill coderabbit-webhooks-events --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# CodeRabbit Webhooks & Events ## Overview Handle CodeRabbit events triggered through GitHub and GitLab integrations. CodeRabbit posts AI-powered code review comments on pull requests. ## Prerequisites - CodeRabbit installed on your GitHub or GitLab repository - GitHub webhook endpoint configured for PR events - GitHub App or personal access token for API access - `.coderabbit.yaml` configuration in repository root ## Event Types | Event | Source | Payload | |-------|--------|---------| | `pull_request_review` | GitHub webhook | Review body, state (approved/changes_requested) | | `pull_request_review_comment` | GitHub webhook | Line comment, diff position, file path | | `check_run.completed` | GitHub Checks API | CodeRabbit analysis results, conclusion | | `issue_comment.created` | GitHub webhook | Summary comment, walkthrough | | `pull_request.labeled` | GitHub webhook | Labels applied by CodeRabbit | ## Instructions ### Step 1: Configure GitHub Webhook Receiver ```typescript import express from "express"; import crypto from "crypto"; const app = express(); app.post("/webhooks/github", express.raw({ type: "application/json" }), async (req, res) => { const signature = req.headers["
- Overview
- Prerequisites
- Event Types
- Instructions
- Step 1: Configure GitHub Webhook Receiver
- Step 2: Filter and Route CodeRabbit Events
- Step 3: Process Review Results
- Step 4: Configure CodeRabbit Behavior
- Error Handling
- Examples
- Track Review Metrics
- Resources
- Output
- Next Steps
What does the coderabbit-webhooks-events skill do?
Implement CodeRabbit webhook signature validation and event handling. Use when setting up webhook endpoints, implementing signature verification, or handling CodeRabbit event notifications securely. Trigger with phrases like "coderabbit webhook", "coderabbit events", "coderabbit webhook signature", "handle coderabbit events", "coderabbit notifications". '
How do I install it?
Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill coderabbit-webhooks-events --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.