clerk-webhooks

Installation
SKILL.md

Clerk Webhooks

When to Use This Skill

  • Setting up Clerk webhook handlers
  • Debugging signature verification failures
  • Understanding Clerk event types and payloads
  • Handling user, session, or organization events

Essential Code (USE THIS)

Express Webhook Handler

Clerk uses the Standard Webhooks protocol (Clerk sends svix-* headers; same format). Use the standardwebhooks npm package:

const express = require('express');
const { Webhook } = require('standardwebhooks');
Installs
2
First Seen
Mar 1, 2026
clerk-webhooks — robinbg/webhook-skills