Run Coding Agents in Sandboxes. Control Them Over HTTP. Supports Claude Code, Codex, OpenCode, and Amp. https://sandboxagent.dev
Find a file
2026-01-25 01:57:16 -08:00
.agents/skills skills 2026-01-25 00:23:08 -08:00
.claude/skills skills 2026-01-25 00:23:08 -08:00
.codex/skills skills 2026-01-25 00:23:08 -08:00
.github/workflows chore: sync workspace changes 2026-01-25 01:57:16 -08:00
.opencode/skills skills 2026-01-25 00:23:08 -08:00
docker/release chore: sync workspace changes 2026-01-25 01:57:16 -08:00
engine/packages chore: sync workspace changes 2026-01-25 01:57:16 -08:00
frontend chore: sync workspace changes 2026-01-25 01:57:16 -08:00
research docs: update agent docs with mode/permission info, add amp.md 2026-01-24 23:12:41 -08:00
resources/agent-schemas skills 2026-01-25 00:23:08 -08:00
scripts/release/static chore: sync workspace changes 2026-01-25 01:57:16 -08:00
sdks/typescript chore: sync workspace changes 2026-01-25 01:57:16 -08:00
spec feat: stream sessions and discover agent modes 2026-01-25 01:55:44 -08:00
.gitignore add agent schemas 2026-01-24 22:37:22 -08:00
AGENTS.md chore: symlink AGENTS.md to CLAUDE.md 2026-01-24 23:20:40 -08:00
Cargo.toml chore: sync workspace changes 2026-01-25 01:57:16 -08:00
CLAUDE.md chore: sync workspace changes 2026-01-25 01:57:16 -08:00
package.json chore: sync workspace changes 2026-01-25 01:57:16 -08:00
pnpm-workspace.yaml chore: sync workspace changes 2026-01-25 01:57:16 -08:00
README.md chore: sync workspace changes 2026-01-25 01:57:16 -08:00
ROADMAP.md chore: sync workspace changes 2026-01-25 01:57:16 -08:00
spec.md feat: stream sessions and discover agent modes 2026-01-25 01:55:44 -08:00
todo.md feat: stream sessions and discover agent modes 2026-01-25 01:55:44 -08:00
turbo.json chore: sync workspace changes 2026-01-25 01:57:16 -08:00

Sandbox Daemon

Run inside sandboxes to provide support

  • Any coding agent: Universal API to interact with all agents with full feature coverage
  • Server Mode: Run as HTTP server from any sandbox provider or as TypeScript & Python SDK
  • Universal session schema: Universal schema to store agent transcripts
  • Supports your sandbox provider: Daytona, E2B, Vercel Sandboxes, add your own
  • Lightweight, portable Rust binary: Install anywhere with 1 curl command
  • Compatible with Vercel AI SDK: TODO

Quickstart

Start with the SDK:

TODO

To run this in server mode, install with:

TODO

And run with:

TODO

See the example for your provider of choice:

Security

TODO: Tokens TODO: Using a gateawy TODO: BYO tokens with extractor

Demo Frontend

TODO: Screenshot

This project provides a demo frontend for testing the connection. Run it with:

TODO

Agent Compatibility Matrix

TODO

Reference

TypeScript SDK

TODO

HTTP API

TODO

CLI

TODO

FAQ

TODO

  • Why not use PTY? This is the recommended option for XXXX
  • Why not use ?
  • Does it support ?
  • Can I use this with my personal OpenAPI & Claude tokens?

Project Scope

This project aims to solve 3 problems with agents:

  • Universal Agent API: Claude Code, Codex, Amp, and OpenCode all have put a lot of work in to the agent scaffold. Each have respective pros and cons and need to be easy to be swapped between.
  • Agent Transcript: Maintaining agent transcripts is difficult since the agent manages its own sessions. This provides a simpler way to read and retrieve agent transcripts in your system.
  • Agents In Sandboxes: There are many complications with running agents inside of sandbox providers. This lets you run a simple curl command to spawn an HTTP server for using any agent from within the sandbox.

Features out of scope:

  • Storage of sessions on disk: Sessions are already stored by the respective coding agents on disk. It's assumed that the consumer is streaming data from this machine to an extral storage, such as Postgres, ClickHouse, or Rivet.
  • Direct LLM wrappers: Use the Vercel AI SDK if you want to impelment your own agent from scratch
  • Git Repo Management: Just use git commands or the features provided by your sandbox provider of choice.
  • Sandbox Provider API: Sandbox providers have many nuanced differences in their API, it does not make sense for us to try to provide a custom layer. Instead, we opt to provide skills that lets you integrate this project with sandbox providers.