e2b-sandboxes — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited e2b-sandboxes (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Secure isolated cloud VMs for executing AI-generated code. Open-source.
pip install e2b-code-interpreter
npm i @e2b/code-interpreter
export E2B_API_KEY=your_key_here # get at https://e2b.dev/dashboardfrom e2b_code_interpreter import Sandbox
# Basic execution
with Sandbox() as sandbox:
result = sandbox.run_code("x = 1 + 1; print(x)")
print(result.logs.stdout) # ["2"]
# Stateful multi-step session
with Sandbox() as sandbox:
sandbox.run_code("data = [1, 2, 3]")
r = sandbox.run_code("print(sum(data))")
print(r.logs.stdout) # ["6"]import { Sandbox } from "@e2b/code-interpreter"
const sandbox = await Sandbox.create()
const result = await sandbox.runCode("print(1 + 1)")
console.log(result.logs.stdout)
await sandbox.kill()from anthropic import Anthropic
from e2b_code_interpreter import Sandbox
client = Anthropic()
sandbox = Sandbox()
response = client.messages.create(
model="claude-sonnet-4-6",
max_tokens=1024,
messages=[{"role": "user", "content": "Write Python to compute fibonacci(10)"}]
)
code = response.content[0].text
result = sandbox.run_code(code)
print(result.logs.stdout)
sandbox.kill()| Feature | Detail |
|---|---|
| Isolation | Each sandbox = fresh cloud VM |
| Stateful | Variables persist within session |
| Languages | Python, JavaScript/TypeScript |
| Outputs | stdout, stderr, rich results (plots, tables) |
| Self-hostable | GCP (prod-ready), AWS (in progress), Azure (planned) |
# GCP (production-ready)
terraform apply -var-file=gcp.tfvars~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.