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.

at 1241cd4e999bb3f48dca4cab7bcff14fe6f5d6ad 12 lines 361 B view raw
1import { Sandbox } from "@pocketenv/sdk"; 2import getAccessToken from "./getAccessToken"; 3import { env } from "./env"; 4 5export async function configureSdk(): Promise<void> { 6 const token = await getAccessToken(); 7 Sandbox.configure({ 8 token: env.POCKETENV_TOKEN || token, 9 baseUrl: env.POCKETENV_API_URL, 10 publicKey: env.POCKETENV_PUBLIC_KEY, 11 }); 12}