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.

Write file content directly instead of base64

+1 -2
+1 -2
apps/api/src/tty/index.tsx
··· 134 134 if (basePath !== "/" && basePath != ".") { 135 135 await mkdir(basePath); 136 136 } 137 - const encoded = Buffer.from(content + "\n", "utf8").toString("base64"); 138 137 await sprite.execFile("sh", [ 139 138 "-c", 140 - `echo -e '${encoded}' | base64 -d | tee ${absolutePath}`, 139 + `echo -e '${content}\n' > ${absolutePath}`, 141 140 ]); 142 141 }; 143 142