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 15 lines 401 B view raw
1import chalk from "chalk"; 2import consola from "consola"; 3import { Sandbox } from "@pocketenv/sdk"; 4import { configureSdk } from "../lib/sdk"; 5 6async function whoami() { 7 await configureSdk(); 8 const profile = await Sandbox.getProfile(); 9 const handle = `@${profile.handle}`; 10 consola.log( 11 `You are logged in as ${chalk.cyan(handle)} (${profile.displayName}).`, 12 ); 13} 14 15export default whoami;