clisbot 0.1.22 → 0.1.28

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.
package/README.md CHANGED
@@ -111,6 +111,8 @@ bun install
111
111
  bun run start --cli codex --bot-type personal --telegram-bot-token <your-telegram-bot-token> --persist
112
112
  ```
113
113
 
114
+ Repo-local `bun run start|stop|restart|status|logs|init|pairing` is pinned by `.env` to `CLISBOT_HOME=~/.clisbot-dev`, so local testing does not accidentally reuse your main `~/.clisbot` runtime.
115
+
114
116
  First conversation path:
115
117
 
116
118
  - send a DM to the bot in Slack or Telegram
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "session": {
10
10
  "mainKey": "main",
11
- "dmScope": "main",
11
+ "dmScope": "per-channel-peer",
12
12
  "identityLinks": {},
13
13
  "storePath": "~/.clisbot/state/sessions.json"
14
14
  },
@@ -154,11 +154,15 @@
154
154
  "maxActiveLoops": 10,
155
155
  "defaultTimezone": "UTC"
156
156
  },
157
- "runtimeMonitor": {
158
- "restartBackoff": {
159
- "stages": [
160
- {
161
- "delayMinutes": 15,
157
+ "runtimeMonitor": {
158
+ "restartBackoff": {
159
+ "fastRetry": {
160
+ "delaySeconds": 10,
161
+ "maxRestarts": 3
162
+ },
163
+ "stages": [
164
+ {
165
+ "delayMinutes": 15,
162
166
  "maxRestarts": 4
163
167
  },
164
168
  {
@@ -290,4 +294,4 @@
290
294
  }
291
295
  }
292
296
  }
293
- }
297
+ }