-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.example.json
More file actions
58 lines (58 loc) · 1.31 KB
/
Copy pathconfig.example.json
File metadata and controls
58 lines (58 loc) · 1.31 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
{
"a2a": {
"outputMode": "verbose",
"diagnosticsDir": "./data/a2a-diagnostics"
},
"agentTeams": {
"S0123456789": {
"name": "kagura-agents",
"defaultLead": "U0123456789",
"members": [
{
"id": "U0123456789",
"label": "codex",
"role": "implementation, verification, and final summary"
},
{
"id": "U9876543210",
"label": "claude",
"role": "design review and alternate implementation"
}
]
}
},
"claude": {
"model": "",
"permissionMode": "bypassPermissions",
"enableSkills": false
},
"codex": {
"model": "",
"reasoningEffort": "medium",
"sandbox": "danger-full-access"
},
"defaultProviderId": "claude-code",
"logDir": "./logs",
"logLevel": "info",
"logToFile": false,
"piAgent": {
"command": "pi",
"args": ["-p", "--mode", "json"],
"model": ""
},
"repoRootDir": "~/git",
"repoScanDepth": 2,
"reviewPanel": {
"assetsDir": "./apps/web/dist",
"enabled": false,
"host": "127.0.0.1",
"port": 3077,
"baseUrl": "http://127.0.0.1:3077"
},
"sessionDbPath": "./data/sessions.db",
"slack": {
"taskCardBlocksEnabled": false,
"threadHistoryLimit": 200
},
"slackConfigTokenStorePath": "./data/slack-config-tokens.json"
}