Agent skill

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". '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
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.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Version: 1.11.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEditBash(curl:*)
Requires: Designed for Claude Code, also compatible with Codex and OpenClaw
Path: skills/.curated/coderabbit-webhooks-events/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 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["

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Event Types
  4. Instructions
  5. Step 1: Configure GitHub Webhook Receiver
  6. Step 2: Filter and Route CodeRabbit Events
  7. Step 3: Process Review Results
  8. Step 4: Configure CodeRabbit Behavior
  9. Error Handling
  10. Examples
  11. Track Review Metrics
  12. Resources
  13. Output
  14. Next Steps
More from claude-code-plugins-plus-skills
All skills →
About this skill
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.

Keep going