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.

Send sandboxId in payloads and fix typo

Rename payload field 'sandbox' to 'sandboxId' in file and volume
requests, use remotePath for the file path key, and correct a console
message typo ("sandbo}" -> "sandbox")

+4 -4
+2 -2
apps/cli/src/cmd/file.ts
··· 50 50 "/xrpc/io.pocketenv.file.addFile", 51 51 { 52 52 file: { 53 - sandbox, 54 - path, 53 + sandboxId: sandbox, 54 + path: remotePath, 55 55 content: await encrypt(content), 56 56 }, 57 57 },
+2 -2
apps/cli/src/cmd/volume.ts
··· 80 80 "/xrpc/io.pocketenv.volume.addVolume", 81 81 { 82 82 volume: { 83 - sandbox, 83 + sandboxId: sandbox, 84 84 name, 85 85 path, 86 86 }, ··· 118 118 } 119 119 120 120 consola.success( 121 - `Volume ${chalk.rgb(0, 232, 198)(id)} successfully deleted from sandbo}`, 121 + `Volume ${chalk.rgb(0, 232, 198)(id)} successfully deleted from sandbox`, 122 122 ); 123 123 }