clisbot 0.1.36 → 0.1.39

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