api-integration
Designs event-driven architectures, webhook systems, API chaining flows, ETL pipelines, and integration patterns between services. Use whenever the user asks about webhooks, event streaming, API composition, connecting two or more APIs, building pipelines, Pub/Sub, Kafka topics, ETL...
npx skills add sickn33/agentic-awesome-skills --skill api-integration --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# API Integration Skill ## When to Use Use this skill when you need designs event-driven architectures, webhook systems, API chaining flows, ETL pipelines, and integration patterns between services. Use whenever the user asks about webhooks, event streaming, API composition, connecting two or more APIs, building pipelines, Pub/Sub, Kafka topics, ETL... Design integration patterns, webhook flows, event pipelines, and API composition strategies. --- ## Webhook Design ### Outbound Webhook Endpoint (from your system to 3rd party) ``` POST {subscriber_url} Headers: Content-Type: application/json X-Webhook-Signature: hmac-sha256=<sig> X-Webhook-Event: order.created X-Webhook-Delivery: <uuid> X-Webhook-Timestamp: <unix-epoch> ``` **Payload envelope** ```json { "event": "order.created", "delivery_id": "uuid", "created_at": "ISO8601", "data": { ... } } ``` **Signature verification** (receiver side): ```python import hmac, hashlib expected = hmac.new(secret.encode(), payload_bytes, hashlib.sha256).hexdigest() assert f"sha256={expected}" == request.headers["X-Webhook-Signature"] ``` ### Inbound Webhook Registration API ``` POST /api/v1/webhooks — register subscriber URL + events GET /api/v1/w
- When to Use
- Webhook Design
- Outbound Webhook Endpoint (from your system to 3rd party)
- Inbound Webhook Registration API
- API Chaining / Composition Pattern
- Event-Driven Architecture
- Event Schema (CloudEvents spec)
- Topics / Queues design
- Saga Pattern (Distributed Transaction)
- Outbox Pattern (reliable event publishing)
- Integration Checklist
- After Completing the API Integration Design
- Limitations
What does the api-integration skill do?
Designs event-driven architectures, webhook systems, API chaining flows, ETL pipelines, and integration patterns between services. Use whenever the user asks about webhooks, event streaming, API composition, connecting two or more APIs, building pipelines, Pub/Sub, Kafka topics, ETL...
How do I install it?
Run `npx skills add sickn33/agentic-awesome-skills --skill api-integration --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.