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 cursor worker and update preview token

Register the cursor worker URL in api and sandbox workers, add "cursor"
to the SandboxConfig allowed workers, and change PREVIEW_TOKEN in
wrangler to "cursor"

+4 -1
+1
apps/api/src/cloudflare.ts
··· 19 19 zeroclaw: "https://zeroclaw.pocketenv.io", 20 20 wasmer: "https://wasmer.pocketenv.io", 21 21 nanoclaw: "https://nanoclaw.pocketenv.io", 22 + cursor: "https://cursor.pocketenv.io", 22 23 };
+1 -1
apps/cf-sandbox/deploy/cursor/wrangler.jsonc
··· 34 34 "vars": { 35 35 "SANDBOX_TRANSPORT": "websocket", 36 36 "VOLUME_BUCKET": "pocketenv-volumes", 37 - "PREVIEW_TOKEN": "claude", 37 + "PREVIEW_TOKEN": "cursor", 38 38 }, 39 39 /** 40 40 * Note: Use secrets to store sensitive data.
+1
apps/cf-sandbox/src/types/sandbox.ts
··· 54 54 "zeroclaw", 55 55 "wasmer", 56 56 "nanoclaw", 57 + "cursor", 57 58 ]) 58 59 .optional() 59 60 .default("openclaw"),
+1
apps/sandbox/src/workers.ts
··· 19 19 zeroclaw: "https://zeroclaw.pocketenv.io", 20 20 wasmer: "https://wasmer.pocketenv.io", 21 21 nanoclaw: "https://nanoclaw.pocketenv.io", 22 + cursor: "https://cursor.pocketenv.io", 22 23 };