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.

Remove uri format from sandbox repo fields

+9 -22
+1 -2
apps/api/lexicons/sandbox/createSandbox.json
··· 47 47 }, 48 48 "repo": { 49 49 "type": "string", 50 - "description": "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo.", 51 - "format": "uri" 50 + "description": "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo." 52 51 }, 53 52 "vcpus": { 54 53 "type": "integer",
+3 -6
apps/api/lexicons/sandbox/defs.json
··· 41 41 }, 42 42 "repo": { 43 43 "type": "string", 44 - "description": "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo.", 45 - "format": "uri" 44 + "description": "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo." 46 45 }, 47 46 "readme": { 48 47 "type": "string", ··· 135 134 }, 136 135 "repo": { 137 136 "type": "string", 138 - "description": "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo.", 139 - "format": "uri" 137 + "description": "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo." 140 138 }, 141 139 "readme": { 142 140 "type": "string", ··· 206 204 }, 207 205 "repo": { 208 206 "type": "string", 209 - "description": "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo.", 210 - "format": "uri" 207 + "description": "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo." 211 208 }, 212 209 "vcpus": { 213 210 "type": "integer",
+1 -2
apps/api/lexicons/sandbox/sandbox.json
··· 53 53 }, 54 54 "repo": { 55 55 "type": "string", 56 - "description": "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo.", 57 - "format": "uri" 56 + "description": "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo." 58 57 }, 59 58 "readme": { 60 59 "type": "string",
-1
apps/api/pkl/defs/sandbox/createSandbox.pkl
··· 44 44 type = "string" 45 45 description = 46 46 "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo." 47 - format = "uri" 48 47 } 49 48 ["vcpus"] = new IntegerType { 50 49 type = "integer"
-3
apps/api/pkl/defs/sandbox/defs.pkl
··· 43 43 ["repo"] = new StringType { 44 44 type = "string" 45 45 description = "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo." 46 - format = "uri" 47 46 } 48 47 ["readme"] = new StringType { 49 48 type = "string" ··· 138 137 ["repo"] = new StringType { 139 138 type = "string" 140 139 description = "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo." 141 - format = "uri" 142 140 } 143 141 ["readme"] = new StringType { 144 142 type = "string" ··· 205 203 ["repo"] = new StringType { 206 204 type = "string" 207 205 description = "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo." 208 - format = "uri" 209 206 } 210 207 ["vcpus"] = new IntegerType { 211 208 type = "integer"
+4 -3
apps/api/pkl/defs/sandbox/sandbox.pkl
··· 53 53 type = "string" 54 54 description = 55 55 "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo." 56 - format = "uri" 57 56 } 58 57 ["readme"] = new StringType { 59 58 type = "string" ··· 76 75 type = "array" 77 76 items = new StringType { 78 77 type = "string" 79 - description = "A path to be mounted as a volume in the sandbox, e.g. '/data', '/logs', etc." 78 + description = 79 + "A path to be mounted as a volume in the sandbox, e.g. '/data', '/logs', etc." 80 80 } 81 81 } 82 82 ["ports"] = new Array { ··· 90 90 type = "array" 91 91 items = new StringType { 92 92 type = "string" 93 - description = "Name of a secret to be added to the sandbox environment. Secrets are typically encrypted and stored securely, and can be used to store sensitive information such as API keys, database credentials, etc." 93 + description = 94 + "Name of a secret to be added to the sandbox environment. Secrets are typically encrypted and stored securely, and can be used to store sensitive information such as API keys, database credentials, etc." 94 95 } 95 96 } 96 97 ["envs"] = new Array {
-5
apps/api/src/lexicon/lexicons.ts
··· 520 520 type: "string", 521 521 description: 522 522 "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo.", 523 - format: "uri", 524 523 }, 525 524 vcpus: { 526 525 type: "integer", ··· 615 614 type: "string", 616 615 description: 617 616 "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo.", 618 - format: "uri", 619 617 }, 620 618 readme: { 621 619 type: "string", ··· 714 712 type: "string", 715 713 description: 716 714 "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo.", 717 - format: "uri", 718 715 }, 719 716 readme: { 720 717 type: "string", ··· 783 780 type: "string", 784 781 description: 785 782 "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo.", 786 - format: "uri", 787 783 }, 788 784 vcpus: { 789 785 type: "integer", ··· 1430 1426 type: "string", 1431 1427 description: 1432 1428 "A git repository URL to clone into the sandbox, e.g. a GitHub/Tangled repo.", 1433 - format: "uri", 1434 1429 }, 1435 1430 readme: { 1436 1431 type: "string",