open, interoperable sandbox platform for agents and humans 📦 ✨
pocketenv.io
claude-code
atproto
sandbox
openclaw
agent
1{
2 "lexicon": 1,
3 "id": "io.pocketenv.variable.getVariable",
4 "defs": {
5 "main": {
6 "type": "query",
7 "parameters": {
8 "type": "params",
9 "required": [
10 "id"
11 ],
12 "properties": {
13 "id": {
14 "type": "string",
15 "description": "The ID of the variable for which to retrieve variables."
16 }
17 }
18 },
19 "output": {
20 "encoding": "application/json",
21 "schema": {
22 "type": "object",
23 "properties": {
24 "variable": {
25 "type": "ref",
26 "ref": "io.pocketenv.variable.defs#variableView"
27 }
28 }
29 }
30 }
31 }
32 }
33}