This teaches Claude how to design event-driven workflows with Inngest's event system. You'll use it when building fan-out patterns where one event triggers multiple independent functions, implementing idempotency with event IDs (24-hour dedupe window), or handling webhooks from services like Stripe. It covers the event payload schema, the object-action naming pattern (like "billing/invoice.paid"), using the ts parameter for delayed delivery, and system events for monitoring function failures. The fan-out examples are solid, showing how to send a single event and have multiple functions respond independently with their own retry logic. TypeScript focused, but concepts apply across languages.
npx skills add https://github.com/inngest/inngest-skills --skill inngest-events