Why Use This This skill provides specialized capabilities for jeremylongshore's codebase.
Use Cases Developing new features in the jeremylongshore repository Refactoring existing code to follow jeremylongshore standards Understanding and working with jeremylongshore's codebase structure
Install Guide 2 steps 1 2 Install inside Ananke
Click Install Skill, paste the link below, then press Install.
https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/clerk-pack/skills/clerk-webhooks-events Skill Snapshot Auto scan of skill assets. Informational only.
Valid SKILL.md Checks against SKILL.md specification
Source & Community
Updated At Mar 11, 2026, 05:33 AM
Skill Stats
SKILL.md 61 Lines
Total Files 2
Total Size 2.1 KB
License MIT
---
name: clerk-webhooks-events
description: |
Configure Clerk webhooks and handle authentication events.
Use when setting up user sync, handling auth events,
or integrating Clerk with external systems.
Trigger with phrases like "clerk webhooks", "clerk events",
"clerk user sync", "clerk notifications", "clerk event handling".
allowed-tools: Read, Write, Edit, Bash(npm:*), Grep
version: 1.0.0
license: MIT
author: Jeremy Longshore <jeremy@intentsolutions.io>
compatible-with: claude-code, codex, openclaw
---
# Clerk Webhooks & Events
## Overview
Configure and handle Clerk webhooks for user lifecycle events and data synchronization.
## Prerequisites
- Clerk account with webhook access
- HTTPS endpoint for webhooks
- svix package for verification
## Instructions
1. Step 1: Install Dependencies
2. Step 2: Create Webhook Endpoint
3. Step 3: Implement Event Handlers
4. Step 4: Idempotency and Error Handling
5. Step 5: Configure Webhook in Clerk Dashboard
For full implementation details and code examples, load:
`Read(${CLAUDE_SKILL_DIR}/references/implementation-guide.md)`
## Output
- Webhook endpoint configured
- Event handlers implemented
- Idempotency protection
- User data sync working
## Error Handling
| Error | Cause | Solution |
|-------|-------|----------|
| Invalid signature | Wrong secret | Verify CLERK_WEBHOOK_SECRET |
| Missing headers | Request not from Clerk | Check sender is Clerk |
| Duplicate processing | Event sent twice | Implement idempotency |
| Timeout | Handler too slow | Use background jobs |
## Resources
- [Clerk Webhooks](https://clerk.com/docs/integrations/webhooks/overview)
- [Svix Verification](https://docs.svix.com/receiving/verifying-payloads)
- [Event Types](https://clerk.com/docs/integrations/webhooks/sync-data)
## Next Steps
Proceed to `clerk-performance-tuning` for optimization strategies.
## Examples
**Basic usage**: Apply clerk webhooks events to a standard project setup with default configuration options.
**Advanced scenario**: Customize clerk webhooks events for production environments with multiple constraints and team-specific requirements.