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.

Reference sandboxViewBasic in getSandbox

+5 -5
+1 -1
apps/api/lexicons/sandbox/getSandbox.json
··· 21 21 "encoding": "application/json", 22 22 "schema": { 23 23 "type": "ref", 24 - "ref": "io.pocketenv.actor.defs#profileViewDetailed" 24 + "ref": "io.pocketenv.sandbox.defs#sandboxViewBasic" 25 25 } 26 26 } 27 27 }
+1 -1
apps/api/pkl/defs/sandbox/getSandbox.pkl
··· 20 20 encoding = "application/json" 21 21 schema = new Ref { 22 22 type = "ref" 23 - ref = "io.pocketenv.actor.defs#profileViewDetailed" 23 + ref = "io.pocketenv.sandbox.defs#sandboxViewBasic" 24 24 } 25 25 } 26 26 }
+1 -1
apps/api/src/lexicon/lexicons.ts
··· 598 598 encoding: "application/json", 599 599 schema: { 600 600 type: "ref", 601 - ref: "lex:io.pocketenv.actor.defs#profileViewDetailed", 601 + ref: "lex:io.pocketenv.sandbox.defs#sandboxViewBasic", 602 602 }, 603 603 }, 604 604 },
+2 -2
apps/api/src/lexicon/types/io/pocketenv/sandbox/getSandbox.ts
··· 7 7 import { isObj, hasProp } from "../../../../util"; 8 8 import { CID } from "multiformats/cid"; 9 9 import type { HandlerAuth, HandlerPipeThrough } from "@atproto/xrpc-server"; 10 - import type * as IoPocketenvActorDefs from "../actor/defs"; 10 + import type * as IoPocketenvSandboxDefs from "./defs"; 11 11 12 12 export interface QueryParams { 13 13 /** The sandbox ID or URI to retrieve */ ··· 15 15 } 16 16 17 17 export type InputSchema = undefined; 18 - export type OutputSchema = IoPocketenvActorDefs.ProfileViewDetailed; 18 + export type OutputSchema = IoPocketenvSandboxDefs.SandboxViewBasic; 19 19 export type HandlerInput = undefined; 20 20 21 21 export interface HandlerSuccess {