TypeScript SDK v4 is now available! See what's new

AI Coding Agent Plugins and Skills

Inngest provides official plugins and agent skills for AI coding agents like Claude Code, Codex, Cursor, and Windsurf. They give your agent current guidance for building reliable applications with Inngest — from initial setup to advanced flow control and realtime updates.

Use the Claude Code or Codex plugin for the best experience. Each plugin packages Inngest skills with local dev server MCP wiring so your agent can write code and inspect running functions in one loop.

What to install

AI toolRecommended installWhat it includes
Claude CodeInngest Claude Code pluginCore Inngest skills, MCP config for the local dev server, and an eval harness
CodexInngest Codex plugin bundleCodex skills, Codex plugin metadata, MCP config, copyable examples, local marketplace metadata, and an eval harness
Cursor, Windsurf, and other agentsStandalone inngest-skills repositoryThe core skill content in a portable format

Why use Inngest plugins?

Instead of relying on an AI model's training data, which may be outdated or incomplete, Inngest plugins provide:

  • Current API knowledge — Accurate function signatures, configuration options, and best practices
  • Step-by-step guidance — Structured instructions for common Inngest patterns
  • Workflow templates — Proven patterns for background jobs, scheduled tasks, webhook handlers, and event-driven workflows
  • Repository audits — Agent-first guidance for finding durability gaps before making code changes
  • Durable agent patterns — Guidance for AgentKit workflows, tool calls, human approval, realtime progress, and provider flow control
  • Local feedback loops — MCP access to your running dev server so agents can list functions, send events, and inspect runs

Install

/plugin marketplace add inngest/inngest-claude-code-plugin
/plugin install inngest@inngest-claude-code-plugin

For other agents, reference the standalone skills repository directly or clone it to your agent's skills directory. Each skill is self-contained with full documentation in its SKILL.md file.

Core skills

SkillDescriptionWhat it covers
inngest-setupSet up Inngest in a TypeScript projectSDK installation, client config, environment variables, dev server
inngest-eventsDesign and send Inngest eventsEvent schema, naming conventions, idempotency, fan-out patterns, system events
inngest-durable-functionsCreate and configure durable functionsTriggers, step execution, memoization, cancellation, error handling, retries
inngest-stepsUse step methods to build durable workflowsstep.run, step.sleep, step.waitForEvent, loops, parallel execution
inngest-flow-controlConfigure flow control for functionsConcurrency limits, throttling, rate limiting, debounce, priority, batching
inngest-middlewareCreate middleware for cross-cutting concernsMiddleware lifecycle, dependency injection, built-in middleware
inngest-realtimeStream workflow updates to usersRealtime channels, subscription tokens, React hooks, SSE consumers

Additional Codex plugin skills

The Codex plugin adds skills that are tuned for repository-scale agent work:

SkillDescriptionWhat it covers
inngest-brownfield-auditAudit an existing codebase before changing itFramework detection, existing Inngest usage, webhooks, cron jobs, queues, long-running routes, polling loops, AI agents, and safe first integration slices
inngest-agentsBuild durable AI agents with Inngest and AgentKitModel calls, tool calls, human approval, realtime progress, retries, and provider flow control
inngest-v3-v4-migrationUpgrade TypeScript SDK v3 projects to v4Trigger syntax, typed events, serve options, step.invoke, native realtime, local dev mode, and mixed v3/v4 cleanup
inngest-apiOperate Inngest through the alpha API CLIAccount, environment, webhook, app sync, function invocation, run, and trace operations

Language support

These plugins and skills are currently focused on TypeScript. Core concepts like events, steps, flow control, and realtime updates apply across all Inngest SDKs, but code examples and setup instructions are TypeScript-specific.

For Python or Go, refer to the Inngest documentation and llms.txt for language-specific guidance.

Combine with Dev Server MCP

For the best AI development experience, use agent skills alongside the Inngest Dev Server MCP integration. Together they provide:

  • Skills give your agent knowledge of how to write correct Inngest code
  • MCP gives your agent the ability to interact with your running dev server — list functions, send events, and monitor runs

This enables a complete write, test, and debug loop powered by your coding agent.

Repositories

The plugin repositories share core skills from inngest/inngest-skills so Claude Code, Codex, and portable skills installs stay aligned. The Codex plugin also includes Codex-specific skills, examples, and eval fixtures for agent-first codebase audits and durable agent workflows.

Resources