Skip to main content
Back to the directory
sickn33/antigravity-awesome-skillsSoftware EngineeringFrontend and Design

inngest

Serverless background jobs and event-driven workflows with durable step-based execution.

SkillJury keeps community verdicts, source metadata, and external repository signals in separate lanes so ranking data never pretends to be a review.

SkillJury verdict
Pending

No approved reviews yet

Would recommend
Pending

Waiting on enough review volume

Install signal
804

Weekly or total install activity from catalog data

Sign in to review
0 review requests
Install command
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill inngest
SkillJury does not have enough approved reviews to publish a community verdict yet. Source metadata and repository proof are still available above.
SkillJury Signal Summary

As of May 1, 2026, inngest has 804 weekly installs, 0 community reviews on SkillJury. Community votes currently stand at 0 upvotes and 0 downvotes. Source: sickn33/antigravity-awesome-skills. Canonical URL: https://skills.sh/sickn33/antigravity-awesome-skills/inngest.

Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykWARN
About this skill
Serverless background jobs and event-driven workflows with durable step-based execution. Inngest expert for serverless-first background jobs, event-driven workflows, and durable execution without managing queues or workers. 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'; export const sendWelcomeEmail = inngest.createFunction( { id: 'send-welcome-email' }, { event: 'user/signed.up' }, async ({ event, step }) => { // Step 1: Get user details const user = await step.run('get-user', async () => { return await db.users.findUnique({ where: { id: event.data.userId } }); }); } ); // app/api/inngest/route.ts (Next.js App Router) import { serve } from 'inngest/next'; import { inngest } from '@/lib/inngest/client'; import { sendWelcomeEmail } from '@/lib/inngest/functions'; export const { GET, POST, PUT } = serve({ client: inngest, functions: [sendWelcomeEmail], }); Complex workflow with parallel steps and error handling When to use :...

Source description provided by the upstream listing. Community review signal and install context stay separate from this narrative layer.

Community reviews

Latest reviews

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does inngest do?

Serverless background jobs and event-driven workflows with durable step-based execution.

Is inngest good?

inngest does not have approved reviews yet, so SkillJury cannot publish a community verdict.

Which AI agents support inngest?

inngest currently lists compatibility with Skills CLI.

Is inngest safe to install?

inngest has been scanned by security audit providers tracked on SkillJury. Check the security audits section on this page for detailed results from Socket.dev and Snyk.

What are alternatives to inngest?

Skills in the same category include review-management, conversation-memory, coverage, grimoire-aave.

How do I install inngest?

Run the following command to install inngest: npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill inngest

Related skills

More from sickn33/antigravity-awesome-skills

Related skills

Alternatives in Software Engineering