What problem does it solve? Building reliable connections to external services is error-prone: unverified webhooks create security holes, missing idempotency causes duplicate processing, and synchronous API calls slow down requests. This Skill provides production patterns for webhooks, OAuth, background jobs, and rate-limited API clients. ## Core Features & Use Cases - Webhook Handling: Signature verification for Stripe, GitHub, Slack, and HubSpot, plus idempotent handlers and outbound delivery with exponential backoff retries. - Background Jobs: BullMQ queue setup with delayed, scheduled, prioritized, and rate-limited jobs, plus Bull Board monitoring dashboards. - OAuth & CRM Integration: Complete OAuth 2.0 authorization code flow with encrypted token storage and refresh logic, plus HubSpot sync and Zapier/n8n trigger-action endpoints. - Use Case: When a user asks to receive Stripe payment events, the Skill guides building a signature-verified, idempotent webhook endpoint that queues events to BullMQ instead of processing synchronously. ## Quick Start Ask the assistant to build a signature-verified webhook endpoint with idempotent processing and a BullMQ retry queue for your chosen provider.