Agent frameworks
Inngest
Background-function step guard.
Wraps Inngest functions so AI steps inside long-running workflows pass through the engine. Step-level verdicts surface in the Inngest dev server.
Install
pnpm add @blackunicorn/bonklm-inngestMinimal example
import { inngest } from './client'
import { withBonkLM } from '@blackunicorn/bonklm-inngest'
export const fn = inngest.createFunction(
{ id: 'safe-agent' },
{ event: 'agent.start' },
withBonkLM(async ({ step }) => {}, { validators: ['prompt-injection'] }),
)Related connectors