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.

Use execFile with bash -c for commands

Invoke bash via execFile to run shell command strings reliably and
avoid exec's raw command handling issues.

+1 -1
+1 -1
apps/sandbox/src/providers/sprites/mod.ts
··· 33 33 const command = strings.reduce((acc, str, i) => { 34 34 return acc + str + (values[i] || ""); 35 35 }, ""); 36 - return this.sprite.exec(command); 36 + return this.sprite.execFile("bash", ["-c", command]); 37 37 } 38 38 39 39 id(): Promise<string | null> {