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.

Cache access token in copy command

+2 -1
+2 -1
apps/cli/src/cmd/copy.ts
··· 21 21 consola.info(`Uploaded to storage with UUID: ${uuid}`); 22 22 await unlink(output); 23 23 const sandboxId = destination.split(":/")[0]; 24 + const token = await getAccessToken(); 24 25 await client.post( 25 26 "/xrpc/io.pocketenv.sandbox.pullDirectory", 26 27 { ··· 29 30 }, 30 31 { 31 32 headers: { 32 - Authorization: `Bearer ${process.env.POCKETENV_TOKEN || (await getAccessToken())}`, 33 + Authorization: `Bearer ${process.env.POCKETENV_TOKEN || token}`, 33 34 }, 34 35 }, 35 36 );