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');
Related skills