Isolated container environments for AI agents — fast, secure, and programmable.
Talon Sandbox gives AI agents their own ephemeral Linux containers with a full process model, filesystem, networking, and browser — all controllable through a clean API or SDK.
Pick your language and spin up a sandbox in seconds:
import { Sandbox } from "talon-sandbox";
const sb = await Sandbox.create({ image: "node:20-bookworm" });
const result = await sb.run("node --version");
console.log(result.stdout);
await sb.kill();from talon_sandbox import Sandbox
async with await Sandbox.create(image="node:20-bookworm") as sb:
result = await sb.run("node --version")
print(result.stdout)sb, _ := sandbox.Create(ctx, sandbox.Opts{Image: "node:20-bookworm"})
defer sb.Kill(ctx)
result, _ := sb.Run(ctx, "node --version")
fmt.Println(result.Stdout)| Repository | Description |
|---|---|
| talon-sandbox-sdk-typescript | TypeScript/Node.js SDK — npm install talon-sandbox |
| talon-sandbox-sdk-python | Python SDK (async + sync) — pip install talon-sandbox |
| talon-sandbox-sdk-go | Go SDK — go get x.xgit.pro/dark/talon-sandbox-sdk-go |
| talon-sandbox-sdk-dotnet | .NET SDK (.NET 8+, async-first) |
| talon-sandbox-cli | tsb — official CLI for managing sandboxes |
| agent-sandbox-docs | Documentation site (VitePress) |
| talon-sandbox-ci | Public CI runner workflows |
- Ephemeral containers — each sandbox is a clean, isolated Linux environment
- Full process model — run commands, spawn long-running processes, and attach to interactive PTY terminals
- Filesystem API — read, write, list, and remove files inside any sandbox
- Port exposure — expose a sandbox port as a public preview URL with optional signed access
- Browser automation — launch a headless Chrome instance and connect via CDP (Playwright / Puppeteer)
- Multi-language SDKs — TypeScript, Python, Go, and .NET
- CLI —
tsbfor scripting and local workflows
All SDKs and the CLI read the same two environment variables:
export TALON_SANDBOX_SERVER=https://api.talon-sandbox.dev
export TALON_SANDBOX_API_KEY=ask_...Full docs, API reference, and deployment guides are available at the agent-sandbox-docs repository.
Proprietary — All rights reserved © 2026 Talon Sandbox.