Sandbox SDK — @next (1.0 preview)
Isolated Linux environments on Cloudflare Containers, driven from Workers.
Prefer preview docs and installed @next types over memory. APIs change; this skill is a gate, a contract, and a retrieval map—not a full manual.
We recommend new projects on this line. Apps still on the default package use sandbox-stable. Port only when asked, via sandbox-migrate-to-next.
1. Gate — confirm the package line
Before writing code, inspect the app:
| Check |
Must match |
| npm dependency |
@cloudflare/sandbox@next (or another preview tag) |
| Container image |
Same line (e.g. cloudflare/sandbox:next, next-python) |
| If you find… |
Action |
Default @cloudflare/sandbox (no @next) |
Stop. Load sandbox-stable. Do not apply this skill’s APIs. |
User wants to port stable → @next |
Stop. Load sandbox-migrate-to-next. |
| Self-deployed bridge only |
Bridge is not on the 1.0 preview line yet. Keep bridge on stable package + image. Bridge (stable) |
Never mix an @next Worker package with a stable container image (or the reverse).
Skills install: Agent setup · cloudflare/skills
2. Contract — non-negotiables
sandbox.exec(argv) takes an argv list and resolves when the process starts. It returns a handle, not a finished command result.
- Collect results with handle methods:
output(), logs(), waitForExit(), waitForPort(), waitForLog(), kill(signal?).
- No implicit shell. Shell syntax needs an explicit shell, e.g.
["/bin/bash", "-lc", script].
- Each launch is independent. A
cd / export in one exec is not visible to the next. Pass cwd and env per launch, or one shell script.
- Process handles have no stdin. Interactive use → terminals (
createTerminal + connect).
- Local wait
timeout / AbortSignal cancel the wait only. They do not kill the process. Use kill or exec’s remote timeout.
getProcess / listProcesses / getTerminal / listTerminals do not start a container; they return null / [] when none is up.
- Process and terminal IDs belong to the current container, not forever to a sandbox ID. For work that must survive replace, store the full job (argv, cwd, env, app state)—not only an id.
- Non-secret config only in
setEnvVars / launch env. Live credentials stay in the Worker; use outbound handlers when the sandbox calls external APIs.
- Do not invent removed stable APIs (
gitCheckout on core, string-exec completion, session execution, sandbox.terminal(request)).
- Do not use one retry loop for every error (see Errors docs).
Minimal shape:
import { getSandbox, proxyToSandbox, Sandbox } from "@cloudflare/sandbox";
export { Sandbox };
const sandbox = getSandbox(env.Sandbox, "user-123");
const process = await sandbox.exec(["python3", "-c", "print(2 + 2)"]);
const result = await process.output({ encoding: "utf8" });
// result.stdout, result.exitCode
Task-specific API documentation: references/api-quick-ref.md
Examples index (next branch): references/examples.md
3. Retrieve — open the doc for the task
Fetch the page before implementing. Installed @next types win over guesses.
| You need to… |
Open |
| Orient / choose preview |
1.0 preview overview |
| First Worker, wrangler, Dockerfile |
Get started |
exec, handles, readiness, durability |
Process execution |
| Process API signatures |
Processes API |
| Sandbox ID vs container vs sleep/destroy |
Lifecycle |
cwd / env / setEnvVars |
Environment |
| Interactive PTY / browser terminal |
Terminals · Terminals API |
| Python/JS code interpreter |
Interpreter · Interpreter API |
| Extensions model |
Extensions |
| Error classes and recovery |
Errors · Errors API |
| Common failures |
Troubleshooting |
| API hub |
API reference |
Files, mounts, backups, ports, tunnels, proxyToSandbox |
Main docs for shared surfaces (ignore stable-only session/transport/sandbox.terminal): Files · Storage / mounts · Ports · Tunnels · Backups · Outbound traffic · Expose services · Production |
| Example apps |
examples on next |
| Still on stable package |
sandbox-stable · Main Sandbox docs |
| Porting an existing stable app |
sandbox-migrate-to-next · Migrate |
4. Before you ship
- Lockfile and Dockerfile on the same
@next line
- Typecheck against installed
@next types
- No live secrets in sandbox env
- Production preview hostnames need wildcard DNS on a custom domain when using those URL patterns
1---2name: sandbox-next3description: Build or maintain Cloudflare Sandbox apps on @cloudflare/sandbox@next (SDK 1.0 preview). Use sandbox-migrate-to-next when porting a stable app.4license: Apache-2.05---6
7# Sandbox SDK — `@next` (1.0 preview)
8
9Isolated Linux environments on [Cloudflare Containers](https://developers.cloudflare.com/containers/), driven from Workers.
10
11**Prefer preview docs and installed `@next` types over memory.** APIs change; this skill is a gate, a contract, and a retrieval map—not a full manual.
12
13We recommend **new projects** on this line. Apps still on the default package use **`sandbox-stable`**. Port only when asked, via **`sandbox-migrate-to-next`**.
14
15## 1. Gate — confirm the package line
16
17Before writing code, inspect the app:
18
19| Check | Must match |
20| ----- | ---------- |
21| npm dependency | `@cloudflare/sandbox@next` (or another preview tag) |
22| Container image | Same line (e.g. `cloudflare/sandbox:next`, `next-python`) |
23
24| If you find… | Action |
25| ------------ | ------ |
26| Default `@cloudflare/sandbox` (no `@next`) | **Stop.** Load **`sandbox-stable`**. Do not apply this skill’s APIs. |
27| User wants to port stable → `@next` | **Stop.** Load **`sandbox-migrate-to-next`**. |
28| Self-deployed **bridge** only | Bridge is **not** on the 1.0 preview line yet. Keep bridge on stable package + image. [Bridge (stable)](https://developers.cloudflare.com/sandbox/bridge/) |
29
30Never mix an `@next` Worker package with a stable container image (or the reverse).
31
32Skills install: [Agent setup](https://developers.cloudflare.com/agent-setup/) · [cloudflare/skills](https://github.com/cloudflare/skills)
33
34## 2. Contract — non-negotiables
35
36- `sandbox.exec(argv)` takes an **argv** list and resolves when the process **starts**. It returns a **handle**, not a finished command result.
37- Collect results with handle methods: `output()`, `logs()`, `waitForExit()`, `waitForPort()`, `waitForLog()`, `kill(signal?)`.
38- No implicit shell. Shell syntax needs an explicit shell, e.g. `["/bin/bash", "-lc", script]`.
39- Each launch is independent. A `cd` / `export` in one `exec` is not visible to the next. Pass `cwd` and `env` per launch, or one shell script.
40- Process handles have **no stdin**. Interactive use → terminals (`createTerminal` + `connect`).
41- Local wait `timeout` / `AbortSignal` cancel the **wait only**. They do not kill the process. Use `kill` or `exec`’s remote `timeout`.
42- `getProcess` / `listProcesses` / `getTerminal` / `listTerminals` do **not** start a container; they return `null` / `[]` when none is up.
43- Process and terminal IDs belong to the **current container**, not forever to a sandbox ID. For work that must survive replace, store the full job (argv, cwd, env, app state)—not only an id.
44- Non-secret config only in `setEnvVars` / launch `env`. Live credentials stay in the Worker; use outbound handlers when the sandbox calls external APIs.
45- Do **not** invent removed stable APIs (`gitCheckout` on core, string-`exec` completion, session execution, `sandbox.terminal(request)`).
46- Do **not** use one retry loop for every error (see Errors docs).
47
48Minimal shape:
49
50```ts
51import { getSandbox, proxyToSandbox, Sandbox } from "@cloudflare/sandbox";
52
53export { Sandbox };
54
55const sandbox = getSandbox(env.Sandbox, "user-123");
56const process = await sandbox.exec(["python3", "-c", "print(2 + 2)"]);
57const result = await process.output({ encoding: "utf8" });
58// result.stdout, result.exitCode
59```
60
61Task-specific API documentation: [references/api-quick-ref.md](references/api-quick-ref.md)
62
63Examples index (`next` branch): [references/examples.md](references/examples.md)
64
65## 3. Retrieve — open the doc for the task
66
67Fetch the page before implementing. Installed `@next` types win over guesses.
68
69| You need to… | Open |
70| ------------ | ---- |
71| Orient / choose preview | [1.0 preview overview](https://developers.cloudflare.com/sandbox/1-0-preview/) |
72| First Worker, wrangler, Dockerfile | [Get started](https://developers.cloudflare.com/sandbox/1-0-preview/get-started/) |
73| `exec`, handles, readiness, durability | [Process execution](https://developers.cloudflare.com/sandbox/1-0-preview/processes/) |
74| Process API signatures | [Processes API](https://developers.cloudflare.com/sandbox/1-0-preview/api/processes/) |
75| Sandbox ID vs container vs sleep/destroy | [Lifecycle](https://developers.cloudflare.com/sandbox/1-0-preview/lifecycle/) |
76| `cwd` / `env` / `setEnvVars` | [Environment](https://developers.cloudflare.com/sandbox/1-0-preview/environment/) |
77| Interactive PTY / browser terminal | [Terminals](https://developers.cloudflare.com/sandbox/1-0-preview/terminals/) · [Terminals API](https://developers.cloudflare.com/sandbox/1-0-preview/api/terminals/) |
78| Python/JS code interpreter | [Interpreter](https://developers.cloudflare.com/sandbox/1-0-preview/interpreter/) · [Interpreter API](https://developers.cloudflare.com/sandbox/1-0-preview/api/interpreter/) |
79| Extensions model | [Extensions](https://developers.cloudflare.com/sandbox/1-0-preview/extensions/) |
80| Error classes and recovery | [Errors](https://developers.cloudflare.com/sandbox/1-0-preview/errors/) · [Errors API](https://developers.cloudflare.com/sandbox/1-0-preview/api/errors/) |
81| Common failures | [Troubleshooting](https://developers.cloudflare.com/sandbox/1-0-preview/troubleshooting/) |
82| API hub | [API reference](https://developers.cloudflare.com/sandbox/1-0-preview/api/) |
83| Files, mounts, backups, ports, tunnels, `proxyToSandbox` | Main docs for shared surfaces (ignore stable-only session/transport/`sandbox.terminal`): [Files](https://developers.cloudflare.com/sandbox/api/files/) · [Storage / mounts](https://developers.cloudflare.com/sandbox/api/storage/) · [Ports](https://developers.cloudflare.com/sandbox/api/ports/) · [Tunnels](https://developers.cloudflare.com/sandbox/api/tunnels/) · [Backups](https://developers.cloudflare.com/sandbox/api/backups/) · [Outbound traffic](https://developers.cloudflare.com/sandbox/guides/outbound-traffic/) · [Expose services](https://developers.cloudflare.com/sandbox/guides/expose-services/) · [Production](https://developers.cloudflare.com/sandbox/guides/production-deployment/) |
84| Example apps | [examples on `next`](https://github.com/cloudflare/sandbox-sdk/tree/next/examples) |
85| Still on stable package | **`sandbox-stable`** · [Main Sandbox docs](https://developers.cloudflare.com/sandbox/) |
86| Porting an existing stable app | **`sandbox-migrate-to-next`** · [Migrate](https://developers.cloudflare.com/sandbox/1-0-preview/migrate/) |
87
88## 4. Before you ship
89
90- Lockfile and Dockerfile on the **same** `@next` line
91- Typecheck against installed `@next` types
92- No live secrets in sandbox env
93- Production preview hostnames need wildcard DNS on a custom domain when using those URL patterns