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 main 18 lines 436 B view raw
1import chalk from "chalk"; 2import consola from "consola"; 3import { Sandbox } from "@pocketenv/sdk"; 4import { configureSdk } from "../lib/sdk"; 5 6async function stop(name: string) { 7 await configureSdk(); 8 9 try { 10 const sandbox = await Sandbox.get(name); 11 await sandbox.stop(); 12 consola.success(`Sandbox ${chalk.greenBright(name)} stopped`); 13 } catch { 14 consola.error("Failed to stop sandbox"); 15 } 16} 17 18export default stop;