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 and use sandboxId for terminal session

+6 -1
+6 -1
apps/api/src/pty/index.ts
··· 133 133 throw new Error("Vercel auth not found for sandbox " + id); 134 134 } 135 135 136 + if (!record.sandboxes.sandboxId) { 137 + consola.error("Sandbox ID not found for sandbox", { id }); 138 + throw new Error("Sandbox ID not found for sandbox " + id); 139 + } 140 + 136 141 const sandbox = await setupSandboxEnvironment({ 137 - id, 142 + id: record.sandboxes.sandboxId, 138 143 vercelApiToken: decrypt(record.vercel_auth.vercelToken), 139 144 vercelProjectId: record.vercel_auth.projectId, 140 145 vercelTeamId: record.vercel_auth.teamId,