Skip to content

Commit 83a3491

Browse files
call it developer preview as a middle ground for the pricing not figured out
1 parent 8c23c06 commit 83a3491

11 files changed

Lines changed: 24 additions & 17 deletions

File tree

docs/agents/amp.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ python build.py
299299

300300
<CardGroup cols={3}>
301301
<Card title="Sandbox persistence" icon="clock" href="/docs/sandbox/persistence">
302-
Auto-pause, resume, and manage sandbox lifecycle
302+
Developer Preview: auto-pause, resume, and manage sandbox lifecycle
303303
</Card>
304304
<Card title="Git integration" icon="code-branch" href="/docs/sandbox/git-integration">
305305
Clone repos, manage branches, and push changes

docs/agents/claude-code.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ python build.py
451451
Connect Claude Code to 200+ MCP tools
452452
</Card>
453453
<Card title="Sandbox persistence" icon="clock" href="/docs/sandbox/persistence">
454-
Auto-pause, resume, and manage sandbox lifecycle
454+
Developer Preview: auto-pause, resume, and manage sandbox lifecycle
455455
</Card>
456456
<Card title="Git integration" icon="code-branch" href="/docs/sandbox/git-integration">
457457
Clone repos, manage branches, and push changes

docs/agents/codex.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ python build.py
355355

356356
<CardGroup cols={3}>
357357
<Card title="Sandbox persistence" icon="clock" href="/docs/sandbox/persistence">
358-
Auto-pause, resume, and manage sandbox lifecycle
358+
Developer Preview: auto-pause, resume, and manage sandbox lifecycle
359359
</Card>
360360
<Card title="Git integration" icon="code-branch" href="/docs/sandbox/git-integration">
361361
Clone repos, manage branches, and push changes

docs/agents/openclaw.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -386,9 +386,9 @@ sandbox.kill()
386386

387387
OpenClaw has a built-in [web UI and chat interface](https://openclaw.ai) served by its gateway. Start it inside a sandbox and connect from your browser.
388388

389-
<Warning>
390-
This sandbox is created with a 10-minute timeout and auto-pause enabled — after 10 minutes of inactivity it pauses and can be resumed later. See [Sandbox Persistence](/docs/sandbox/persistence) and [Sandbox Lifecycle](/docs/sandbox) for more details.
391-
</Warning>
389+
<Warning>
390+
This sandbox is created with a 10-minute timeout and auto-pause enabled. After 10 minutes of inactivity it pauses and can be resumed later. Pause/resume persistence and auto-resume are currently in **Developer Preview**. See [Sandbox Persistence](/docs/sandbox/persistence) and [Sandbox Lifecycle](/docs/sandbox) for more details.
391+
</Warning>
392392

393393
<CodeGroup>
394394
```typescript JavaScript & TypeScript
@@ -499,7 +499,7 @@ python build.py
499499

500500
<CardGroup cols={3}>
501501
<Card title="Sandbox persistence" icon="clock" href="/docs/sandbox/persistence">
502-
Auto-pause, resume, and manage sandbox lifecycle
502+
Developer Preview: auto-pause, resume, and manage sandbox lifecycle
503503
</Card>
504504
<Card title="Git integration" icon="code-branch" href="/docs/sandbox/git-integration">
505505
Clone repos, manage branches, and push changes

docs/agents/opencode.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ python build.py
277277

278278
<CardGroup cols={3}>
279279
<Card title="Sandbox persistence" icon="clock" href="/docs/sandbox/persistence">
280-
Auto-pause, resume, and manage sandbox lifecycle
280+
Developer Preview: auto-pause, resume, and manage sandbox lifecycle
281281
</Card>
282282
<Card title="Git integration" icon="code-branch" href="/docs/sandbox/git-integration">
283283
Clone repos, manage branches, and push changes

docs/billing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Check your usage and costs in the [dashboard usage tab](https://e2b.dev/dashboar
9393

9494
<Accordion title="How do I optimize costs?">
9595
- **Always kill sandboxes when done** - Use `sbx.kill()` to stop billing immediately
96-
- **Enable autopause** - Automatically pause sandboxes after a period of inactivity to stop billing while preserving state
96+
- **Enable auto-pause (Developer Preview)** - Automatically pause sandboxes after inactivity to stop billing while preserving state
9797
- **Allocate only what you need** - Start with default resources (2 vCPU, 1 GB RAM) and increase only if necessary
9898
- **Implement automatic timeouts** - Set max session lengths to prevent forgotten sandboxes from running
9999
- **Monitor actively running sandboxes** - Use the [CLI](/docs/cli/list-sandboxes) or [dashboard](https://e2b.dev/dashboard?tab=usage) to track active sandboxes

docs/sandbox.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ When you start the sandbox, it stays alive for 5 minutes by default but you can
77
After the time passes, the sandbox will be automatically shutdown.
88

99
For timeout lifecycle behavior like pausing and auto-resume policies on create, see [AutoResume](/docs/sandbox/auto-resume).
10+
Pause/resume persistence and auto-resume are currently in **Developer Preview**.
1011

1112
<Warning>
1213
The maximum time sandbox can be kept running without being paused is
1314
- 24 hours on the Pro Tier
1415
- 1 hour on the Base Tier
1516

16-
For more details, please refer to [sandbox persistance page](/docs/sandbox/persistence#limitations-while-in-beta).
17-
</Warning>
17+
For more details, please refer to the [sandbox persistence page](/docs/sandbox/persistence#current-limitations-subject-to-change).
18+
</Warning>
1819

1920
<CodeGroup>
2021
```js JavaScript & TypeScript highlight={6}

docs/sandbox/auto-resume.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ title: "AutoResume"
33
sidebarTitle: AutoResume
44
---
55

6+
<Note>
7+
`AutoResume` and `pause/resume` persistence are available as **Developer Preview**.
8+
9+
Behavior and limits may change as we iterate. Review [Sandbox persistence limitations](/docs/sandbox/persistence#current-limitations-subject-to-change).
10+
</Note>
11+
612
Many workloads don't need a sandbox running all the time, but when they do need it, it should just work, whether it was paused or not.
713

814
`AutoResume` handles this automatically: a paused sandbox wakes up when traffic arrives, so your code never has to check or manage sandbox state.

docs/sandbox/persistence.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ sidebarTitle: Persistence
44
---
55

66
<Note>
7-
Pause and resume are available to all users for a limited time.
7+
`Pause/resume` and `AutoResume` are available as **Developer Preview**.
88

9-
We're still actively testing and improving persistence behavior and performance, so details may change. Review the [current limitations](#current-limitations-subject-to-change).
9+
We're actively testing and improving persistence behavior and performance, so details may change. Review the [current limitations](#current-limitations-subject-to-change).
1010
</Note>
1111

1212
The sandbox persistence allows you to pause your sandbox and resume it later from the same state it was in when you paused it.

docs/use-cases/coding-agents.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ Since each sandbox is a full Linux environment, you can run any coding agent —
4848
<Card title="Git Integration" icon="code-branch" href="/docs/sandbox/git-integration">
4949
Clone repos, manage branches, and push changes from sandboxes
5050
</Card>
51-
<Card title="Sandbox Persistence" icon="floppy-disk" href="/docs/sandbox/persistence">
52-
Pause and resume sandboxes to preserve state across sessions
53-
</Card>
51+
<Card title="Sandbox Persistence" icon="floppy-disk" href="/docs/sandbox/persistence">
52+
Developer Preview: Pause and resume sandboxes to preserve state
53+
</Card>
5454
<Card title="Custom Templates" icon="cube" href="/docs/template/quickstart">
5555
Build your own sandbox templates with custom tools and dependencies
5656
</Card>

0 commit comments

Comments
 (0)