Inngest expert for serverless-first background jobs, event-driven workflows, and durable execution without managing queues or workers. USE WHEN building background jobs, durable multi-step workflows, fan-out, or scheduled functions on Inngest instead of running your own queue/worker infra.
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Inngest expert for serverless-first background jobs, event-driven workflows, and durable execution without managing queues or workers. USE WHEN building background jobs, durable multi-step workflows, fan-out, or scheduled functions on Inngest instead of running your own queue/worker infra.
cluster
devops-infra
version
1.0.0
origin
antigravity-awesome-skills (MIT)
risk
none
source
vibeship-spawner-skills (Apache 2.0)
date_added
"2026-02-27T00:00:00.000Z"
Inngest Integration
Inngest expert for serverless-first background jobs, event-driven workflows,
and durable execution without managing queues or workers.
Principles
Events are the primitive - everything triggers from events, not queues
Steps are your checkpoints - each step result is durably stored
Sleep is not a hack - Inngest sleeps are real, not blocking threads
Retries are automatic - but you control the policy
Functions are just HTTP handlers - deploy anywhere that serves HTTP
Concurrency is a first-class concern - protect downstream services
Idempotency keys prevent duplicates - use them for critical operations
Fan-out is built-in - one event can trigger many functions
Capabilities
inngest-functions
event-driven-workflows
step-functions
serverless-background-jobs
durable-sleep
fan-out-patterns
concurrency-control
scheduled-functions
Scope
redis-queues -> bullmq-specialist
workflow-orchestration -> temporal-craftsman
message-streaming -> event-architect
infrastructure -> infra-architect
Tooling
Core
inngest
inngest-cli
Frameworks
nextjs
express
hono
remix
sveltekit
Deployment
vercel
cloudflare-workers
netlify
railway
fly-io
Patterns
step-functions
event-fan-out
scheduled-cron
webhook-handling
Patterns
Basic Function Setup
Inngest function with typed events in Next.js
When to use: Starting with Inngest in any Next.js project
// lib/inngest/client.ts
import { Inngest } from 'inngest';
export const inngest = new Inngest({
id: 'my-app',
schemas: new EventSchemas().fromRecord(),
});
// Define your events with types
type Events = {
'user/signed.up': { data: { userId: string; email: string } };
'order/placed': { data: { orderId: string; total: number } };
};
// lib/inngest/functions.ts
import { inngest } from './client';
1. Define Inngest functions (inngest)
2. Set up serve handler in Next.js (nextjs-app-router)
3. Configure function timeouts (vercel-deployment)
4. Deploy and test (vercel-deployment)
1. Design AI workflow steps (ai-agents-architect)
2. Implement with Inngest durability (inngest)
3. Store results in database (supabase-backend)
4. Handle retries for API failures (inngest)
Webhook Processing
Skills: inngest, stripe-integration, backend
Workflow:
1. Receive webhook (backend)
2. Send to Inngest with idempotency (inngest)
3. Process payment logic (stripe-integration)
4. Update application state (backend)
Email Automation
Skills: inngest, email-systems, supabase-backend
Workflow:
1. Trigger event from user action (inngest)
2. Schedule drip emails with step.sleep (inngest)
3. Send emails with retry (email-systems)
4. Track email status (supabase-backend)
Scheduled Tasks
Skills: inngest, backend, analytics-architecture
Workflow:
1. Define cron triggers (inngest)
2. Implement processing logic (backend)
3. Aggregate and report data (analytics-architecture)
4. Handle failures with alerting (inngest)
Related Skills
Works well with: nextjs-app-router, vercel-deployment, supabase-backend, email-systems, ai-agents-architect, stripe-integration
When to Use
User mentions or implies: inngest
User mentions or implies: serverless background job
User mentions or implies: event-driven workflow
User mentions or implies: step function
User mentions or implies: durable execution
User mentions or implies: vercel background job
User mentions or implies: scheduled function
User mentions or implies: fan out
Limitations
Use this skill only when the task clearly matches the scope described above.
Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.