-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
78 lines (78 loc) · 2.29 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
78 lines (78 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"id": "tenki",
"activation": {
"onStartup": true
},
"name": "Tenki Cloud Sandbox",
"description": "OpenClaw sandbox backend that runs tool execution in remote Tenki Cloud microVM sessions.",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"authToken": {
"type": "string",
"minLength": 1,
"title": "Auth Token",
"description": "Tenki API token. Prefer the TENKI_AUTH_TOKEN or TENKI_API_KEY environment variable over storing it in config.",
"writeOnly": true
},
"baseUrl": {
"type": "string",
"minLength": 1,
"title": "API Base URL",
"description": "Tenki API endpoint override. Defaults to the SDK's TENKI_API_ENDPOINT / TENKI_API_URL environment fallback."
},
"workspaceId": {
"type": "string",
"minLength": 1,
"title": "Workspace ID",
"description": "Tenki workspace the sessions are created in."
},
"image": {
"type": "string",
"minLength": 1,
"title": "Base Image",
"description": "Base image id for created sandbox sessions. Omit for the Tenki default image."
},
"workspaceRoot": {
"type": "string",
"minLength": 1,
"title": "Workspace Root",
"description": "Absolute path inside the session used for per-scope workspaces."
},
"idleTimeoutMinutes": {
"type": "number",
"minimum": 1,
"title": "Idle Timeout Minutes",
"description": "Terminate the session after this many idle minutes."
},
"cpuCores": {
"type": "number",
"minimum": 1,
"title": "CPU Cores",
"description": "CPU cores per session."
},
"memoryMb": {
"type": "number",
"minimum": 1,
"title": "Memory MiB",
"description": "Memory per session in MiB."
},
"diskSizeGb": {
"type": "number",
"minimum": 1,
"title": "Disk GiB",
"description": "Disk per session in GiB."
},
"tags": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"title": "Session Tags",
"description": "Extra tags attached to created sessions."
}
}
}
}