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.

Allow unauthenticated access to root route in sandbox

+4
+4
apps/sandbox/src/index.ts
··· 41 41 const decoded = await jwt.verify(token, process.env.JWT_SECRET!); 42 42 c.set("did", decoded?.payload.sub); 43 43 } catch (err) { 44 + if (c.req.path === "/") { 45 + await next(); 46 + return; 47 + } 44 48 consola.error("JWT verification failed:", err); 45 49 return c.json({ error: "Unauthorized" }, 401); 46 50 }