clisbot 0.1.43 → 0.1.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,306 @@
1
+ {
2
+ "meta": {
3
+ "schemaVersion": "0.1.43",
4
+ "lastTouchedAt": "2026-04-18T10:10:00Z"
5
+ },
6
+ "app": {
7
+ "session": {
8
+ "mainKey": "main",
9
+ "identityLinks": {},
10
+ "storePath": "~/.clisbot/state/sessions.json"
11
+ },
12
+ "auth": {
13
+ "ownerClaimWindowMinutes": 30,
14
+ "defaultRole": "member",
15
+ "roles": {
16
+ "owner": {
17
+ "allow": [
18
+ "configManage",
19
+ "appAuthManage",
20
+ "agentAuthManage",
21
+ "promptGovernanceManage"
22
+ ],
23
+ "users": []
24
+ },
25
+ "admin": {
26
+ "allow": [
27
+ "configManage",
28
+ "appAuthManage",
29
+ "agentAuthManage",
30
+ "promptGovernanceManage"
31
+ ],
32
+ "users": []
33
+ },
34
+ "member": {
35
+ "allow": [],
36
+ "users": []
37
+ }
38
+ }
39
+ },
40
+ "control": {
41
+ "configReload": {
42
+ "watch": true,
43
+ "watchDebounceMs": 250
44
+ },
45
+ "sessionCleanup": {
46
+ "enabled": true,
47
+ "intervalMinutes": 5
48
+ },
49
+ "loop": {
50
+ "maxRunsPerLoop": 20,
51
+ "maxActiveLoops": 10,
52
+ "defaultTimezone": "UTC"
53
+ },
54
+ "runtimeMonitor": {
55
+ "restartBackoff": {
56
+ "fastRetry": {
57
+ "delaySeconds": 10,
58
+ "maxRestarts": 3
59
+ },
60
+ "stages": [
61
+ {
62
+ "delayMinutes": 15,
63
+ "maxRestarts": 4
64
+ }
65
+ ]
66
+ },
67
+ "ownerAlerts": {
68
+ "enabled": true,
69
+ "minIntervalMinutes": 30
70
+ }
71
+ }
72
+ }
73
+ },
74
+ "bots": {
75
+ "defaults": {
76
+ "allowBots": false,
77
+ "requireMention": true,
78
+ "dmScope": "per-channel-peer",
79
+ "groupPolicy": "allowlist",
80
+ "commandPrefixes": {
81
+ "slash": [
82
+ "::",
83
+ "\\"
84
+ ],
85
+ "bash": [
86
+ "!"
87
+ ]
88
+ },
89
+ "streaming": "off",
90
+ "response": "final",
91
+ "responseMode": "message-tool",
92
+ "additionalMessageMode": "steer",
93
+ "surfaceNotifications": {
94
+ "queueStart": "brief",
95
+ "loopStart": "brief"
96
+ },
97
+ "verbose": "minimal",
98
+ "followUp": {
99
+ "mode": "auto",
100
+ "participationTtlMin": 5
101
+ },
102
+ "timezone": "UTC"
103
+ },
104
+ "slack": {
105
+ "defaults": {
106
+ "enabled": false,
107
+ "defaultBotId": "default",
108
+ "mode": "socket",
109
+ "allowBots": false,
110
+ "channelPolicy": "disabled",
111
+ "groupPolicy": "disabled",
112
+ "agentPrompt": {
113
+ "enabled": true,
114
+ "maxProgressMessages": 3,
115
+ "requireFinalResponse": true
116
+ },
117
+ "ackReaction": "",
118
+ "typingReaction": "",
119
+ "replyToMode": "thread",
120
+ "processingStatus": {
121
+ "enabled": true,
122
+ "status": "Working...",
123
+ "loadingMessages": []
124
+ },
125
+ "directMessages": {
126
+ "dm:*": {
127
+ "enabled": true,
128
+ "requireMention": false,
129
+ "policy": "pairing",
130
+ "allowUsers": [],
131
+ "blockUsers": [],
132
+ "allowBots": false
133
+ }
134
+ },
135
+ "commandPrefixes": {
136
+ "slash": [
137
+ "::",
138
+ "\\"
139
+ ],
140
+ "bash": [
141
+ "!"
142
+ ]
143
+ },
144
+ "streaming": "off",
145
+ "response": "final",
146
+ "responseMode": "message-tool",
147
+ "additionalMessageMode": "steer",
148
+ "surfaceNotifications": {
149
+ "queueStart": "brief",
150
+ "loopStart": "brief"
151
+ },
152
+ "verbose": "minimal",
153
+ "followUp": {
154
+ "mode": "auto",
155
+ "participationTtlMin": 5
156
+ },
157
+ "timezone": "UTC"
158
+ },
159
+ "default": {
160
+ "enabled": false,
161
+ "name": "default",
162
+ "appToken": "${SLACK_APP_TOKEN}",
163
+ "botToken": "${SLACK_BOT_TOKEN}",
164
+ "directMessages": {},
165
+ "groups": {
166
+ "groups:*": {
167
+ "enabled": true,
168
+ "requireMention": true,
169
+ "policy": "open",
170
+ "allowUsers": [],
171
+ "blockUsers": [],
172
+ "allowBots": false
173
+ }
174
+ }
175
+ }
176
+ },
177
+ "telegram": {
178
+ "defaults": {
179
+ "enabled": false,
180
+ "defaultBotId": "default",
181
+ "mode": "polling",
182
+ "allowBots": false,
183
+ "groupPolicy": "disabled",
184
+ "agentPrompt": {
185
+ "enabled": true,
186
+ "maxProgressMessages": 3,
187
+ "requireFinalResponse": true
188
+ },
189
+ "directMessages": {
190
+ "dm:*": {
191
+ "enabled": true,
192
+ "requireMention": false,
193
+ "policy": "pairing",
194
+ "allowUsers": [],
195
+ "blockUsers": [],
196
+ "allowBots": false
197
+ }
198
+ },
199
+ "commandPrefixes": {
200
+ "slash": [
201
+ "::",
202
+ "\\"
203
+ ],
204
+ "bash": [
205
+ "!"
206
+ ]
207
+ },
208
+ "streaming": "off",
209
+ "response": "final",
210
+ "responseMode": "message-tool",
211
+ "additionalMessageMode": "steer",
212
+ "surfaceNotifications": {
213
+ "queueStart": "brief",
214
+ "loopStart": "brief"
215
+ },
216
+ "verbose": "minimal",
217
+ "followUp": {
218
+ "mode": "auto",
219
+ "participationTtlMin": 5
220
+ },
221
+ "timezone": "UTC",
222
+ "polling": {
223
+ "timeoutSeconds": 20,
224
+ "retryDelayMs": 1000
225
+ }
226
+ },
227
+ "default": {
228
+ "enabled": false,
229
+ "name": "default",
230
+ "botToken": "${TELEGRAM_BOT_TOKEN}",
231
+ "directMessages": {},
232
+ "groups": {
233
+ "groups:*": {
234
+ "enabled": true,
235
+ "requireMention": true,
236
+ "policy": "open",
237
+ "allowUsers": [],
238
+ "blockUsers": [],
239
+ "allowBots": false,
240
+ "topics": {}
241
+ }
242
+ }
243
+ }
244
+ }
245
+ },
246
+ "agents": {
247
+ "defaults": {
248
+ "defaultAgentId": "default",
249
+ "workspace": "~/.clisbot/workspaces/{agentId}",
250
+ "cli": "codex",
251
+ "bootstrap": {
252
+ "botType": "personal-assistant"
253
+ },
254
+ "auth": {
255
+ "defaultRole": "member",
256
+ "roles": {
257
+ "admin": {
258
+ "allow": [
259
+ "shellExecute"
260
+ ],
261
+ "users": []
262
+ },
263
+ "member": {
264
+ "allow": [],
265
+ "users": []
266
+ }
267
+ }
268
+ },
269
+ "runner": {
270
+ "defaults": {
271
+ "tmux": {
272
+ "socketPath": "~/.clisbot/state/clisbot.sock"
273
+ },
274
+ "trustWorkspace": true,
275
+ "startupDelayMs": 3000,
276
+ "startupRetryCount": 2,
277
+ "startupRetryDelayMs": 1000,
278
+ "promptSubmitDelayMs": 150,
279
+ "stream": {
280
+ "captureLines": 160,
281
+ "updateIntervalMs": 2000,
282
+ "idleTimeoutMs": 6000,
283
+ "noOutputTimeoutMs": 20000,
284
+ "maxRuntimeMin": 30,
285
+ "maxMessageChars": 3500
286
+ },
287
+ "session": {
288
+ "createIfMissing": true,
289
+ "staleAfterMinutes": 60,
290
+ "name": "{sessionKey}"
291
+ }
292
+ },
293
+ "codex": {
294
+ "command": "codex",
295
+ "args": [
296
+ "--dangerously-bypass-approvals-and-sandbox",
297
+ "--no-alt-screen",
298
+ "-C",
299
+ "{workspace}"
300
+ ]
301
+ }
302
+ }
303
+ },
304
+ "list": []
305
+ }
306
+ }