-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsandbox.yao
More file actions
35 lines (35 loc) · 865 Bytes
/
Copy pathsandbox.yao
File metadata and controls
35 lines (35 loc) · 865 Bytes
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
{
"version": "2.0",
"computer": {
"image": "yaoapp/tai-sandbox-claude-desktop:latest",
"memory": "4GB",
"cpus": 2,
"work_dir": "/workspace",
"ports": [{ "label": "Design Preview", "port": 3000 }],
"vnc": {
"enabled": true,
"resolution": "1920x1080"
}
},
"runner": {
"name": "claude",
"mode": "cli",
"supports": ["claude", "opencode"],
"options": {
"max_turns": 200,
"permission_mode": "bypassPermissions",
"disallowed_tools": "WebSearch,WebFetch"
}
},
"secrets": {
"GITHUB_TOKEN": {
"label": "GitHub Token",
"description": "Personal access token for GitHub API. Optional — public assets are fetched without authentication.",
"required": false
}
},
"prepare": [],
"lifecycle": "longrunning",
"idle_timeout": "1h",
"max_lifetime": "24h"
}