clisbot 0.1.51 → 0.1.53-beta.1
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 +10 -8
- package/dist/main.js +25515 -22569
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,8 +69,8 @@ It is not just a tmux bridge with chat glued on top. `clisbot` treats Slack and
|
|
|
69
69
|
### I Just Want To Know What Changed Recently
|
|
70
70
|
|
|
71
71
|
- start with [Recent Release Highlights](#recent-release-highlights)
|
|
72
|
-
- then read [v0.1.
|
|
73
|
-
[v0.1.
|
|
72
|
+
- then read [v0.1.52 Release Notes](docs/releases/v0.1.52.md) or the
|
|
73
|
+
[v0.1.52 Release Guide](docs/updates/releases/v0.1.52-release-guide.md)
|
|
74
74
|
|
|
75
75
|
## Why I Built This
|
|
76
76
|
|
|
@@ -89,7 +89,7 @@ The challenge is not whether AI is useful. It is how to make it work at enterpri
|
|
|
89
89
|
- Team-first by design, with `AGENTS`, `USER`, and `MEMORY` context bootstrapping shaped for shared team reality instead of only personal solo-assistant flows.
|
|
90
90
|
- Shared-surface permission control is a first-class feature: a bot can be in a team group but still answer only the specific people you allow there, while sensitive control actions stay behind explicit auth roles and permissions.
|
|
91
91
|
- Useful for coding, operations, teamwork, and general assistant work, with fast chat controls such as `!<command>`, `/bash <command>`, `/queue`, `/loop`, `/streaming`, and `/mention`.
|
|
92
|
-
- New in the `v0.1.50` to `v0.1.
|
|
92
|
+
- New in the `v0.1.50` to `v0.1.52` stable line: the AI-native control experience is much better, the default runner startup window is now 60 seconds, and stale old startup-delay pins no longer silently keep upgraded installs on shorter timeouts.
|
|
93
93
|
|
|
94
94
|
## Who This Fits Best
|
|
95
95
|
|
|
@@ -185,12 +185,12 @@ Next steps:
|
|
|
185
185
|
- `clisbot` also has a smart autopairing path to reduce first-run friction. If
|
|
186
186
|
you send the bot a DM within the first 30 minutes, you can usually claim the
|
|
187
187
|
owner role immediately and start using it without a separate pairing round.
|
|
188
|
-
- New from the current `v0.1.50` to `v0.1.
|
|
188
|
+
- New from the current `v0.1.50` to `v0.1.52` stable line: the AI-native operator experience is much stronger. You
|
|
189
189
|
can increasingly ask the bot through chat to explain how to use it, update
|
|
190
190
|
itself and summarize what's new, help onboard you, create or add a new bot or
|
|
191
191
|
agent, or set up loops and schedules for recurring work instead of relying
|
|
192
192
|
only on slash commands.
|
|
193
|
-
- Existing configs from any version before `0.1.50` still update directly on first run when you install `v0.1.
|
|
193
|
+
- Existing configs from any version before `0.1.50` still update directly on first run when you install `v0.1.52`. clisbot writes a backup first under `~/.clisbot/backups/`, then rewrites the config to the current `0.1.50` schema shape.
|
|
194
194
|
- Shared Slack channels, Slack groups, Telegram groups, and Telegram topics are a separate gate: normal users need an explicit route such as `group:<id>` or `topic:<chatId>:<topicId>` before the bot will talk there. Legacy Slack `channel:<id>` input still works for compatibility.
|
|
195
195
|
- After a shared surface is admitted, per-surface sender control comes from the bot's default shared rule `groups["*"]` plus any route-local `allowUsers` or `blockUsers`.
|
|
196
196
|
- With that permission model, a bot can be added to a team group but still be
|
|
@@ -237,6 +237,7 @@ What happens next:
|
|
|
237
237
|
|
|
238
238
|
## Recent Release Highlights
|
|
239
239
|
|
|
240
|
+
- `v0.1.52`: clarifies shared-route setup so `routes add ...` clearly means “use the agent currently assigned to that bot by default,” and prunes stale short `startupDelayMs` overrides so upgraded installs can actually inherit the newer 60-second startup default.
|
|
240
241
|
- `v0.1.51`: raises the default runner startup window to 60 seconds across the
|
|
241
242
|
standard CLI families and the shared runner fallback, so slower fresh launches
|
|
242
243
|
are less likely to fail before the first prompt can be submitted.
|
|
@@ -271,6 +272,7 @@ Read the full notes here:
|
|
|
271
272
|
|
|
272
273
|
- [CHANGELOG.md](CHANGELOG.md)
|
|
273
274
|
- [Release Notes Index](docs/releases/README.md)
|
|
275
|
+
- [v0.1.52 Release Notes](docs/releases/v0.1.52.md)
|
|
274
276
|
- [v0.1.51 Release Notes](docs/releases/v0.1.51.md)
|
|
275
277
|
- [v0.1.50 Release Notes](docs/releases/v0.1.50.md)
|
|
276
278
|
- [v0.1.43 Release Notes](docs/releases/v0.1.43.md)
|
|
@@ -306,9 +308,9 @@ Update note for existing installs:
|
|
|
306
308
|
- Older installs before `v0.1.50` now update directly on first run with a
|
|
307
309
|
backup written first, so most people can update and restart without a manual
|
|
308
310
|
migration pass.
|
|
309
|
-
- `v0.1.
|
|
310
|
-
schema bump;
|
|
311
|
-
|
|
311
|
+
- `v0.1.52` keeps that direct-upgrade path and does not introduce a new config
|
|
312
|
+
schema bump; it also cleans up stale short startup-delay overrides that would
|
|
313
|
+
otherwise keep some upgraded installs on older timeout behavior.
|
|
312
314
|
- After you are on the `v0.1.50` schema line, future upgrades should feel much
|
|
313
315
|
more AI-native:
|
|
314
316
|
in many cases you can simply ask the bot to update `clisbot` to the latest
|