mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 04:03:31 +00:00
* remove website .astro * fix default origin * docs: comprehensive documentation overhaul - Add quickstart with multi-platform examples (E2B, Daytona, Docker, local) - Add environment variables setup with platform-specific tabs - Add Python SDK page (coming soon) - Add local deployment guide - Update E2B/Daytona/Docker guides with TypeScript examples - Configure OpenAPI auto-generation for API reference - Add CORS configuration guide - Update manage-sessions with Rivet Actors examples - Fix SDK method names and URLs throughout - Add icons to main documentation pages - Remove outdated universal-api and http-api pages * docs: add universal schema and agent compatibility docs - Create universal-schema.mdx with full event/item schema reference - Create agent-compatibility.mdx mirroring README feature matrix - Rename glossary.md to universal-schema.mdx - Update CLAUDE.md with sync requirements for new docs - Add links in README to building-chat-ui, manage-sessions, universal-schema - Fix CLI docs link (rivet.dev -> sandboxagent.dev) * docs: add inspector page and daytona network limits warning
79 lines
2 KiB
Text
79 lines
2 KiB
Text
---
|
|
title: "E2B"
|
|
description: "Deploy the daemon inside an E2B sandbox."
|
|
---
|
|
|
|
## Prerequisites
|
|
|
|
- `E2B_API_KEY` environment variable
|
|
- `ANTHROPIC_API_KEY` or `OPENAI_API_KEY` for the coding agents
|
|
|
|
## TypeScript Example
|
|
|
|
```typescript
|
|
import { Sandbox } from "@e2b/code-interpreter";
|
|
import { SandboxAgent } from "sandbox-agent";
|
|
|
|
// Pass API keys to the sandbox
|
|
const envs: Record<string, string> = {};
|
|
if (process.env.ANTHROPIC_API_KEY) envs.ANTHROPIC_API_KEY = process.env.ANTHROPIC_API_KEY;
|
|
if (process.env.OPENAI_API_KEY) envs.OPENAI_API_KEY = process.env.OPENAI_API_KEY;
|
|
|
|
const sandbox = await Sandbox.create({ envs });
|
|
|
|
// Install sandbox-agent
|
|
await sandbox.commands.run(
|
|
"curl -fsSL https://releases.rivet.dev/sandbox-agent/latest/install.sh | sh"
|
|
);
|
|
|
|
// Start the server in the background
|
|
await sandbox.commands.run(
|
|
"sandbox-agent server --no-token --host 0.0.0.0 --port 3000",
|
|
{ background: true }
|
|
);
|
|
|
|
// Connect to the server
|
|
const baseUrl = `https://${sandbox.getHost(3000)}`;
|
|
const client = await SandboxAgent.connect({ baseUrl });
|
|
|
|
// Wait for server to be ready
|
|
for (let i = 0; i < 30; i++) {
|
|
try {
|
|
await client.getHealth();
|
|
break;
|
|
} catch {
|
|
await new Promise((r) => setTimeout(r, 1000));
|
|
}
|
|
}
|
|
|
|
// Install agents (or pre-install in a custom template)
|
|
await client.installAgent("claude");
|
|
await client.installAgent("codex");
|
|
|
|
// Create a session and start coding
|
|
await client.createSession("my-session", {
|
|
agent: "claude",
|
|
permissionMode: "default",
|
|
});
|
|
|
|
await client.postMessage("my-session", {
|
|
message: "Summarize this repository",
|
|
});
|
|
|
|
for await (const event of client.streamEvents("my-session")) {
|
|
console.log(event.type, event.data);
|
|
}
|
|
|
|
// Cleanup
|
|
await sandbox.kill();
|
|
```
|
|
|
|
## Faster Cold Starts
|
|
|
|
For faster startup, create a custom E2B template with sandbox-agent and agents pre-installed:
|
|
|
|
1. Create a template with the install script baked in
|
|
2. Pre-install agents: `sandbox-agent install-agent claude codex`
|
|
3. Use the template ID when creating sandboxes
|
|
|
|
See [E2B Custom Templates](https://e2b.dev/docs/sandbox-template) for details.
|