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 Hopx provider support and template echo

Update CLI supported providers list to include e2b, hopx, runloop,
and blaxel. In the Hopx provider, add a template.runCmd to echo a
message indicating the template was built from the image.

+5 -1
+1 -1
apps/cli/src/cmd/create.ts
··· 41 41 ].includes(provider ?? "cloudflare") 42 42 ) { 43 43 consola.error( 44 - `Unsupported provider: ${provider}. Supported providers are: sprites, daytona, deno, vercel, modal, cloudflare (default).`, 44 + `Unsupported provider: ${provider}. Supported providers are: sprites, daytona, deno, vercel, modal, e2b, hopx, runloop, blaxel, cloudflare (default).`, 45 45 ); 46 46 process.exit(1); 47 47 }
+4
apps/modal-sandbox/src/providers/hopx/index.ts
··· 142 142 `Sandbox with template ${templateName} not found, creating a new one...`, 143 143 ); 144 144 145 + template.runCmd( 146 + `echo "This is a custom template built from image ${image}"`, 147 + ); 148 + 145 149 await Template.build(template, { 146 150 name: templateName, 147 151 apiKey: options.hopxApiKey,