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.

Add e2b provider support

+8
+8
apps/modal-sandbox/src/providers/index.ts
··· 89 89 return import("./modal").then((module) => 90 90 new module.default().create(options), 91 91 ); 92 + case "e2b": 93 + return import("./e2b").then((module) => 94 + new module.default().create(options), 95 + ); 92 96 default: 93 97 console.log(`Provider ${provider} is not supported yet.`); 94 98 throw new Error(`Unsupported provider: ${provider}`); ··· 141 145 ); 142 146 case "modal": 143 147 return import("./modal").then((module) => 148 + new module.default().get(id, options), 149 + ); 150 + case "e2b": 151 + return import("./e2b").then((module) => 144 152 new module.default().get(id, options), 145 153 ); 146 154 default: