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.

Include startedAt and show 'Up' time in ps

+4 -3
+1
apps/api/src/xrpc/io/pocketenv/actor/getActorSandboxes.ts
··· 121 121 memory: sandbox.memory as number, 122 122 disk: sandbox.disk as number, 123 123 createdAt: sandbox.createdAt.toISOString(), 124 + startedAt: sandbox.startedAt?.toISOString(), 124 125 })), 125 126 total, 126 127 }));
+3 -3
apps/cli/src/cmd/ps.ts
··· 68 68 table.push([ 69 69 c.secondary(sandbox.name), 70 70 sandbox.baseSandbox, 71 - sandbox.status === "RUNNING" 72 - ? c.highlight(sandbox.status) 73 - : sandbox.status, 71 + c.highlight( 72 + `Up ${dayjs(sandbox.startedAt).fromNow().replace("ago", "")}`, 73 + ), 74 74 dayjs(sandbox.createdAt).fromNow(), 75 75 ]); 76 76 }