clisbot 0.1.53-beta.6 → 0.1.54-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 CHANGED
@@ -656,6 +656,7 @@ CLI-specific operator notes:
656
656
 
657
657
  ## Recent Release Highlights
658
658
 
659
+ - `v0.1.53`: refreshes the main README and localized user guides, adds Zalo Bot QR onboarding and Zalo Personal media guidance, fixes queue/loop/message-tool edge cases, tightens Slack/Telegram/Zalo channel behavior, and adds admin-only sensitive channel permissions for contact, group, and channel-native actions.
659
660
  - `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.
660
661
  - `v0.1.51`: raises the default runner startup window to 60 seconds across the
661
662
  standard CLI families and the shared runner fallback, so slower fresh launches
@@ -691,6 +692,7 @@ Read the full notes here:
691
692
 
692
693
  - [CHANGELOG.md](CHANGELOG.md)
693
694
  - [Release Notes Index](docs/releases/README.md)
695
+ - [v0.1.53 Release Notes](docs/releases/v0.1.53.md)
694
696
  - [v0.1.52 Release Notes](docs/releases/v0.1.52.md)
695
697
  - [v0.1.51 Release Notes](docs/releases/v0.1.51.md)
696
698
  - [v0.1.50 Release Notes](docs/releases/v0.1.50.md)
@@ -119,6 +119,79 @@
119
119
  "participationTtlMin": 5
120
120
  }
121
121
  },
122
+ "api": {
123
+ "defaults": {
124
+ "enabled": false,
125
+ "defaultBotId": "default",
126
+ "mode": "listener",
127
+ "allowBots": false,
128
+ "dmPolicy": "allowlist",
129
+ "groupPolicy": "allowlist",
130
+ "agentPrompt": {
131
+ "enabled": true,
132
+ "maxProgressMessages": 3,
133
+ "requireFinalResponse": true
134
+ },
135
+ "directMessages": {},
136
+ "groups": {
137
+ "*": {
138
+ "enabled": true,
139
+ "requireMention": false,
140
+ "policy": "open",
141
+ "allowUsers": [],
142
+ "blockUsers": [],
143
+ "allowBots": false
144
+ }
145
+ },
146
+ "commandPrefixes": {
147
+ "slash": [
148
+ "::",
149
+ "\\"
150
+ ],
151
+ "bash": [
152
+ "!"
153
+ ]
154
+ },
155
+ "streaming": "off",
156
+ "response": "final",
157
+ "responseMode": "message-tool",
158
+ "additionalMessageMode": "steer",
159
+ "surfaceNotifications": {
160
+ "queueStart": "brief",
161
+ "loopStart": "brief"
162
+ },
163
+ "verbose": "minimal",
164
+ "followUp": {
165
+ "mode": "auto",
166
+ "participationTtlMin": 5
167
+ },
168
+ "listener": {
169
+ "host": "127.0.0.1",
170
+ "port": 8787
171
+ }
172
+ },
173
+ "default": {
174
+ "enabled": false,
175
+ "name": "default",
176
+ "dmPolicy": "pairing",
177
+ "groupPolicy": "allowlist",
178
+ "directMessages": {},
179
+ "groups": {},
180
+ "ingress": {
181
+ "auth": {
182
+ "mode": "none"
183
+ },
184
+ "map": {
185
+ "eventId": "$.id",
186
+ "surfaceKind": "dm",
187
+ "surfaceId": "$.surfaceId",
188
+ "senderId": "$.senderId",
189
+ "text": "$.text"
190
+ }
191
+ },
192
+ "actions": {}
193
+ }
194
+ },
122
195
  "slack": {
123
196
  "defaults": {
124
197
  "enabled": false,