All connectors
Agent frameworks

Eko

Natural-language agent runtime.

Wraps the Eko natural-language workflow runtime. Inspects every Eko-generated tool call so plain-English instructions can't exfiltrate state or run dangerous shells.

Install

pnpm add @blackunicorn/bonklm-eko

Minimal example

import { Eko } from '@eko-ai/eko'
import { withBonkLM } from '@blackunicorn/bonklm-eko'

const eko = withBonkLM(new Eko(llm), {
  validators: ['prompt-injection', 'tool-call-args'],
  guards: ['bash-safety'],
})
Related connectors