-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
113 lines (113 loc) · 2.08 KB
/
Copy pathconfig.example.json
File metadata and controls
113 lines (113 loc) · 2.08 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"provider": {
"zai": {
"kind": "anthropic",
"name": "Z.AI Coding Plan",
"options": {
"apiKeyRequired": true,
"baseURL": "https://api.z.ai/api/anthropic"
},
"headers": {},
"models": {
"glm-5.2": {
"name": "GLM-5.2"
},
"glm-5.1": {
"name": "GLM-5.1"
}
}
}
},
"model": {
"main": "zai/glm-5.2",
"lite": "zai/glm-5.1"
},
"modelCatalog": {
"overrides": {}
},
"modelStream": {
"idleTimeoutMs": 60000
},
"permission": {
"mode": "build",
"allowedTools": [],
"disallowedTools": [],
"autoApproveHighRisk": false,
"allowMediumRiskInAuto": false
},
"storage": {
"dir": "~/.zcode",
"sessionDbPath": "~/.zcode/cli/db/db.sqlite"
},
"network": {
"timeout": 180000
},
"features": {
"compact": true,
"rewind": true,
"subagent": true,
"memory": true,
"skill": true,
"mcp": true
},
"subagents": {
"autoBackgroundMs": 1000
},
"memory": {
"use": true,
"write": true,
"autoConsolidate": true,
"summaryMaxBytes": 8192
},
"mcp": {
"servers": {}
},
"plugins": {
"enabled": true,
"dirs": [],
"enabledPlugins": {},
"options": {},
"suppressedBuiltins": []
},
"skills": {
"enabled": true,
"includeInstructions": true,
"metadataBudget": 20000,
"roots": []
},
"skill": {},
"command": {},
"logging": {
"level": "info",
"format": "text"
},
"ui": {
"locale": "auto",
"theme": "auto",
"notifications": {
"method": "auto",
"condition": "unfocused"
}
},
"toolConcurrency": {
"maxConcurrency": 10
},
"modelAnomalyGuard": {
"repeatedToolCallWarningThreshold": 3,
"maxBudgetWarningsPerTurn": 3
},
"hooks": {
"enabled": false,
"timeoutMs": 60000,
"maxOutputBytes": 32768,
"events": {
"SessionStart": [],
"UserPromptSubmit": [],
"PreToolUse": [],
"PermissionRequest": [],
"PostToolUse": [],
"PostToolUseFailure": [],
"Stop": []
}
}
}