-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent.example.json
More file actions
45 lines (45 loc) · 980 Bytes
/
agent.example.json
File metadata and controls
45 lines (45 loc) · 980 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
36
37
38
39
40
41
42
43
44
45
{
"relayBaseUrl": "http://127.0.0.1:8787",
"agentId": "server-main",
"agentLabel": "Main Server",
"stateDir": "../data/agent",
"workspaceRoot": "/absolute/path/to/your/repo",
"pollIntervalMs": 2500,
"maxTaskLogBytes": 12000,
"features": {
"codexExec": true,
"readSession": true,
"deleteSession": true,
"codexExecWrite": false,
"runAction": true,
"readLog": true
},
"actions": {
"status": {
"label": "Git Status",
"cwd": ".",
"argv": ["git", "status", "--short"],
"timeoutSec": 20
},
"test": {
"label": "Run Tests",
"cwd": ".",
"argv": ["npm", "test"],
"timeoutSec": 600
}
},
"logSources": {
"app": {
"label": "Application Log",
"path": "/absolute/path/to/app.log",
"maxLines": 200
}
},
"codex": {
"model": "",
"extraArgs": [],
"writeModeDefaultsToOff": true,
"sessionListLimit": 12,
"sessionCatalogTtlMs": 30000
}
}