This handles the full webhook lifecycle: event schemas, signature verification, retry logic with exponential backoff, and dead-letter queues for failed deliveries. You'd reach for this when building event-driven integrations, like notifying external systems about orders or payment events, or when you need reliable async communication between services. The references include Node.js and Python implementations with working examples of HMAC signature validation and configurable retry strategies. One thing to note: webhook reliability is harder than it looks, so the retry and idempotency patterns here will save you from debugging production delivery failures at 2am.
npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill webhook-development