the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

Validate sandbox is running before creating run

+4
+4
apps/cf-sandbox/src/index.ts
··· 496 496 return c.json({ error: "Sandbox provider not supported" }, 400); 497 497 } 498 498 499 + if (record.status !== "RUNNING") { 500 + return c.json({ error: "Sandbox is not running" }, 400); 501 + } 502 + 499 503 try { 500 504 let sandbox: BaseSandbox | null = null; 501 505