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.

Filter sandboxes by base segment

+2 -1
+2 -1
apps/api/src/xrpc/io/pocketenv/sandbox/createSandbox.ts
··· 10 10 import { createAgent } from "lib/agent"; 11 11 import { TID } from "@atproto/common"; 12 12 import schema from "schema"; 13 - import { and, eq, or } from "drizzle-orm"; 13 + import { and, eq, not, or } from "drizzle-orm"; 14 14 import { 15 15 validateMain, 16 16 type Main, ··· 40 40 and( 41 41 eq(sandboxes.repo, input.repo), 42 42 eq(schema.users.did, credentials.did), 43 + eq(sandboxes.base, input.base.split("/").pop()!), 43 44 ), 44 45 ) 45 46 .execute();