What problem does it solve?
External integrations are brittle: provider contracts change, webhooks arrive duplicated, tokens expire, and rate limits are opaque.
This Skill provides a provider-agnostic integration layer that enforces contracts, idempotence, and reliable delivery across multiple providers.
Core Features & Use Cases
- Provider abstraction delivers a single interface for multiple services (WhatsApp/Uazapi, Meta, Google Calendar, TinyERP, Asaas, n8n, ElevenLabs, SZ.Chat), reducing business logic coupling to specific providers.
- Webhook receivers validate signatures, deduplicate by external_id, and enqueue processing for asynchronous handling.
- Reliability patterns include exponential backoff retries, dead-letter queues, and circuit breakers to maintain resilience during provider degradation.
- Token renewal & kill-switch proactively refresh tokens before expiry and provide manual kill-switch controls for safe shutdowns.
Quick Start
Configure a provider for your org, deploy the integration layer, and start handling signed webhooks with idempotent processing.