All connectors
Bridges & misc

Daytona

Daytona sandbox adapter.

Adapter that wires BonkLM into Daytona dev-sandbox flows. Inspects the LLM-generated shell commands and file-write operations before they execute inside the sandbox.

Install

pnpm add @blackunicorn/bonklm-daytona

Minimal example

import { Daytona } from '@daytonaio/sdk'
import { wrapDaytona } from '@blackunicorn/bonklm-daytona'

const sandbox = wrapDaytona(new Daytona(), {
  validators: ['tool-call-args'],
  guards: ['bash-safety'],
})
Related connectors