AI runtimepackages/ai/sandbox-runtime
sandbox-runtime package
Vercel Sandbox + Lambda + local runner adapter under one execute() call. Picks the runner from a policy rule list.
- Stability
- Stable
- Scope
- Global
- Boundary
- packages/ai/sandbox-runtime
sandbox-runtime
packages/ai/sandbox-runtimeAI runtime · tool registry · MCP boundary
Ready
Capability graph
ai/sandbox-runtimesandbox-runtime
Tool policy
Stream UI
Output
Run ledger
- 1Inputpackages/ai/sandbox-runtime/request
- 2Planmessage reducer -> model turn
- 3Tool policytool schema · auth scope · rate limit
- 4Stream UIevents -> UI state machine
- 5Output@nebutra/agents response envelope
p50 latency
190 ms
events/sec
529/s
providers
7
eval score
95
Usagesandbox.ts
typescriptsandbox.ts
1import { createSandbox } from "@nebutra/sandbox-runtime";
2
3const sandbox = await createSandbox({
4 runtime: "node22",
5 timeoutMs: 30_000,
6 network: "egress-only",
7});
8
9const result = await sandbox.run(code, {
10 inputs: { user, plan },
11});