@luckydraw/cumulus 0.31.66 → 1.0.0
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/CHANGELOG.md +6 -559
- package/LICENSE +150 -0
- package/README.md +27 -8
- package/dist/gateway/adapters/webchat.d.ts +2 -0
- package/dist/gateway/adapters/webchat.d.ts.map +1 -1
- package/dist/gateway/adapters/webchat.js +22 -2
- package/dist/gateway/adapters/webchat.js.map +1 -1
- package/dist/gateway/config.d.ts +17 -2
- package/dist/gateway/config.d.ts.map +1 -1
- package/dist/gateway/config.js +10 -3
- package/dist/gateway/config.js.map +1 -1
- package/dist/gateway/daemon.d.ts +3 -1
- package/dist/gateway/daemon.d.ts.map +1 -1
- package/dist/gateway/daemon.js +128 -39
- package/dist/gateway/daemon.js.map +1 -1
- package/dist/gateway/namespaces.d.ts +34 -0
- package/dist/gateway/namespaces.d.ts.map +1 -1
- package/dist/gateway/namespaces.js +58 -0
- package/dist/gateway/namespaces.js.map +1 -1
- package/dist/gateway/server.d.ts +8 -0
- package/dist/gateway/server.d.ts.map +1 -1
- package/dist/gateway/server.js +150 -41
- package/dist/gateway/server.js.map +1 -1
- package/dist/gateway/setup.d.ts +32 -0
- package/dist/gateway/setup.d.ts.map +1 -1
- package/dist/gateway/setup.js +23 -3
- package/dist/gateway/setup.js.map +1 -1
- package/dist/gateway/static/widget.js +897 -611
- package/dist/lib/gateway.d.ts +30 -8
- package/dist/lib/gateway.d.ts.map +1 -1
- package/dist/lib/gateway.js +36 -11
- package/dist/lib/gateway.js.map +1 -1
- package/dist/lib/history.d.ts +22 -0
- package/dist/lib/history.d.ts.map +1 -1
- package/dist/lib/history.js +59 -21
- package/dist/lib/history.js.map +1 -1
- package/dist/lib/huggingface-provider.d.ts.map +1 -1
- package/dist/lib/huggingface-provider.js +11 -3
- package/dist/lib/huggingface-provider.js.map +1 -1
- package/dist/lib/license.d.ts +76 -0
- package/dist/lib/license.d.ts.map +1 -0
- package/dist/lib/license.js +141 -0
- package/dist/lib/license.js.map +1 -0
- package/docs/agentic-harness-primer.md +283 -0
- package/docs/conditional-continuation.md +167 -0
- package/docs/web-app-agent-guide.md +520 -0
- package/examples/web-app-agent/README.md +187 -0
- package/examples/web-app-agent/agent/mcp-shim.js +105 -0
- package/examples/web-app-agent/gateway.config.example.json +52 -0
- package/examples/web-app-agent/package.json +13 -0
- package/examples/web-app-agent/public/agent/bridge-mount.js +75 -0
- package/examples/web-app-agent/public/agent/chat-client.js +104 -0
- package/examples/web-app-agent/public/agent/commands.js +250 -0
- package/examples/web-app-agent/public/agent/device-thread.js +48 -0
- package/examples/web-app-agent/public/agent/panel.css +107 -0
- package/examples/web-app-agent/public/agent/panel.js +369 -0
- package/examples/web-app-agent/public/app.js +250 -0
- package/examples/web-app-agent/public/index.html +111 -0
- package/examples/web-app-agent/server.js +242 -0
- package/package.json +7 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,563 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## v1.0.0
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
First stable release.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
- Bug fixes and stability improvements
|
|
12
|
-
|
|
13
|
-
## v0.31.64
|
|
14
|
-
|
|
15
|
-
You've hit your weekly limit · resets Aug 6, 9pm (UTC)
|
|
16
|
-
|
|
17
|
-
- Bug fixes and stability improvements
|
|
18
|
-
|
|
19
|
-
## v0.31.63
|
|
20
|
-
|
|
21
|
-
- Gateway model settings are now organized into Anthropic, OpenAI, and HuggingFace provider cards with editable model catalogs, credentials, context windows, and clear empty states.
|
|
22
|
-
- One gateway-default control now spans all providers while preserving the separate default Claude CLI sub-model.
|
|
23
|
-
- Model catalog and credential changes apply live without a restart, explicitly support credential clearing, and refresh every open thread picker after saving.
|
|
24
|
-
|
|
25
|
-
## v0.31.62
|
|
26
|
-
|
|
27
|
-
- Direct-provider agents now receive namespace-scoped stdio MCP tools, giving OSS and OpenAI models the same application capabilities as Claude CLI threads.
|
|
28
|
-
- Tool-turn planning prose is kept private and only terminal answer text is streamed or persisted.
|
|
29
|
-
- `disallowedTools` now applies consistently to Claude CLI and direct-provider tool surfaces.
|
|
30
|
-
|
|
31
|
-
## v0.31.61
|
|
32
|
-
|
|
33
|
-
- Scheduled triggers no longer start a turn while the thread is already busy — they queue and are delivered when it goes idle, preventing multiple concurrent turns of the same thread editing the same files.
|
|
34
|
-
- Assistant guidance now discourages delegating work to another thread inside the same working tree.
|
|
35
|
-
|
|
36
|
-
## v0.31.61
|
|
37
|
-
|
|
38
|
-
- Bug fixes and stability improvements
|
|
39
|
-
|
|
40
|
-
## v0.31.60
|
|
41
|
-
|
|
42
|
-
- OpenAI reasoning models (e.g. `gpt-5.6-sol`) now run against the `/v1/responses` API, so tool use and reasoning work together instead of being mutually exclusive.
|
|
43
|
-
|
|
44
|
-
## v0.31.59
|
|
45
|
-
|
|
46
|
-
- New OpenAI-compatible providers now work reliably, with clearer error messages.
|
|
47
|
-
|
|
48
|
-
## v0.31.58
|
|
49
|
-
|
|
50
|
-
- OpenAI models can now be added to the gateway: a model entry with `provider: "openai"` runs against the OpenAI API using a new `openaiApiKey` credential, editable live via the Settings modal or `PUT /api/config` with no restart.
|
|
51
|
-
- Model entries' `contextWindow` is now honored for any non-Claude model, so models unknown to the built-in map can be sized from config.
|
|
52
|
-
- Webhook-triggered turns now receive the model catalog and provider credentials like every other path (previously they silently fell back to hardcoded Claude defaults).
|
|
53
|
-
|
|
54
|
-
## v0.31.57
|
|
55
|
-
|
|
56
|
-
- Assistant instructions slimmed down and made truthful — removes a false "Read tool is disabled" claim that could make the assistant mistake its own instructions for prompt injection.
|
|
57
|
-
- Files read with the built-in Read tool are now captured into searchable storage automatically, clean of line-number artifacts.
|
|
58
|
-
- Background-job watcher and scheduling recipes moved out of the per-turn instructions into retrievable reference content, cutting per-turn overhead.
|
|
59
|
-
- A token budget now guards the static instructions against silently growing back.
|
|
60
|
-
|
|
61
|
-
## v0.31.56
|
|
62
|
-
|
|
63
|
-
- The default Claude model set on the gateway now applies to every conversation. Previously it only reached web chat — scheduled triggers, agent-to-agent messages and API-driven turns quietly ran a different model.
|
|
64
|
-
|
|
65
|
-
## v0.31.55
|
|
66
|
-
|
|
67
|
-
- The chat now detects a dead connection and reconnects on its own, instead of going quiet while replies pile up unseen.
|
|
68
|
-
- Waking a phone or switching back to the tab immediately checks the connection is still alive.
|
|
69
|
-
- The connection indicator no longer turns amber on a healthy but idle conversation.
|
|
70
|
-
|
|
71
|
-
## v0.31.54
|
|
72
|
-
|
|
73
|
-
- Messages from scripts and webhooks no longer pose as agents, so replying to one can't create a stray thread.
|
|
74
|
-
- Running the test suite no longer starts real conversations on your live gateway.
|
|
75
|
-
- Test threads are grouped under a `test` namespace, out of your personal thread list.
|
|
76
|
-
|
|
77
|
-
## v0.31.53
|
|
78
|
-
|
|
79
|
-
- Agents now keep background work alive after finishing a turn.
|
|
80
|
-
- Long-running tasks resume reliably with scheduled follow-up deadlines.
|
|
81
|
-
|
|
82
|
-
## v0.31.52
|
|
83
|
-
|
|
84
|
-
- Pin a context limit per conversation thread for finer control over context usage.
|
|
85
|
-
- Improved answer quality when working with large or retrieved documents.
|
|
86
|
-
|
|
87
|
-
## v0.31.51
|
|
88
|
-
|
|
89
|
-
- Fixed the model picker popover overflowing off the right edge of the screen on mobile — it now opens back into the viewport and stays within the screen width on any device.
|
|
90
|
-
|
|
91
|
-
## v0.31.50
|
|
92
|
-
|
|
93
|
-
- Redesigned the model controls: the header model label now opens a compact popover for picking provider / model / effort, instead of a full-panel modal.
|
|
94
|
-
- New ⚙ Settings button opens a clean, centered modal for managing the available Claude models and provider credentials.
|
|
95
|
-
- Saving a model change refreshes the thread's model dropdown live, no reload needed.
|
|
96
|
-
|
|
97
|
-
## v0.31.49
|
|
98
|
-
|
|
99
|
-
- Add, remove, and set the default Claude model — and set the HuggingFace API key — directly from the in-app config panel. Changes take effect on the next turn with no restart.
|
|
100
|
-
- Removed the thread "disposition" dropdown (Neutral/Brainstorm/…).
|
|
101
|
-
|
|
102
|
-
## v0.31.48
|
|
103
|
-
|
|
104
|
-
- Claude CLI conversations now default to the more capable Opus 5 model.
|
|
105
|
-
- Improved reliability of file edits and tool results during retrieval.
|
|
106
|
-
|
|
107
|
-
## v0.31.47
|
|
108
|
-
|
|
109
|
-
- Tool operations now stored more reliably, improving file-related task accuracy
|
|
110
|
-
- Bug fixes and stability improvements
|
|
111
|
-
|
|
112
|
-
## v0.31.46
|
|
113
|
-
|
|
114
|
-
- Tool actions and their results now feed into retrieval, improving context recall
|
|
115
|
-
|
|
116
|
-
## v0.31.45
|
|
117
|
-
|
|
118
|
-
- Track which files each agent touched, for clearer recent-context history
|
|
119
|
-
- Bug fixes and stability improvements
|
|
120
|
-
|
|
121
|
-
## v0.31.44
|
|
122
|
-
|
|
123
|
-
- Bug fixes and stability improvements
|
|
124
|
-
|
|
125
|
-
## v0.31.43
|
|
126
|
-
|
|
127
|
-
- Bug fixes and stability improvements
|
|
128
|
-
|
|
129
|
-
## v0.31.42
|
|
130
|
-
|
|
131
|
-
- Bug fixes and stability improvements
|
|
132
|
-
- New guide: embed a persistent AI agent in your web app
|
|
133
|
-
|
|
134
|
-
## v0.31.41
|
|
135
|
-
|
|
136
|
-
- Instance-scoped settings now fall back to shared config automatically
|
|
137
|
-
- Bug fixes and stability improvements
|
|
138
|
-
|
|
139
|
-
## v0.31.40
|
|
140
|
-
|
|
141
|
-
- Namespace-scoped API keys are now a real security boundary: they can only reach threads in their own namespace (read, write, delete, config, bridge — everywhere)
|
|
142
|
-
- Scoped keys can no longer list threads at all — thread names act as per-visitor capabilities, so one visitor can never discover another's session
|
|
143
|
-
- Bridge tab registration now requires the key to be entitled to the thread it registers as
|
|
144
|
-
|
|
145
|
-
## v0.31.39
|
|
146
|
-
|
|
147
|
-
- Extra MCP servers can now be configured per namespace instead of globally
|
|
148
|
-
|
|
149
|
-
## v0.31.38
|
|
150
|
-
|
|
151
|
-
- Custom MCP servers can now be added and scoped per conversation
|
|
152
|
-
- Namespaces let you control which threads are visible to whom
|
|
153
|
-
- Optional bridge integration, off by default until you enable it
|
|
154
|
-
- Fixed thread ownership so your base thread stays yours
|
|
155
|
-
|
|
156
|
-
## v0.31.37
|
|
157
|
-
|
|
158
|
-
- New endpoint to ingest and store conversation transcripts
|
|
159
|
-
|
|
160
|
-
## v0.31.36
|
|
161
|
-
|
|
162
|
-
- Improved reliability of activity tracking with automatic recovery on reconnect
|
|
163
|
-
|
|
164
|
-
## v0.31.35
|
|
165
|
-
|
|
166
|
-
- New activity widget with consistent ordering, pinned toolbar, and smarter scrolling
|
|
167
|
-
|
|
168
|
-
## v0.31.34
|
|
169
|
-
|
|
170
|
-
- Retrieved context now clearly labeled by source, improving answer accuracy and trust.
|
|
171
|
-
|
|
172
|
-
## v0.31.33
|
|
173
|
-
|
|
174
|
-
- Chat now recalls past conversations more accurately and relevantly.
|
|
175
|
-
- Retrieved messages appear in correct time order with timestamps for clearer context.
|
|
176
|
-
|
|
177
|
-
## v0.31.32
|
|
178
|
-
|
|
179
|
-
- Choose from a broader set of Claude models in your gateway settings
|
|
180
|
-
|
|
181
|
-
## v0.31.31
|
|
182
|
-
|
|
183
|
-
- Bug fixes and stability improvements
|
|
184
|
-
|
|
185
|
-
## v0.31.30
|
|
186
|
-
|
|
187
|
-
- Pick from more Claude models, now including Sonnet 4.6, in the model selector.
|
|
188
|
-
|
|
189
|
-
## v0.31.29
|
|
190
|
-
|
|
191
|
-
- Faster search results, especially for large queries
|
|
192
|
-
|
|
193
|
-
## v0.31.28
|
|
194
|
-
|
|
195
|
-
- Faster search with quicker, more responsive results
|
|
196
|
-
- Bug fixes and stability improvements
|
|
197
|
-
|
|
198
|
-
## v0.31.27
|
|
199
|
-
|
|
200
|
-
- Faster, more reliable content search with improved data cleanup behind the scenes
|
|
201
|
-
|
|
202
|
-
## v0.31.26
|
|
203
|
-
|
|
204
|
-
- Bug fixes and stability improvements
|
|
205
|
-
|
|
206
|
-
## v0.31.25
|
|
207
|
-
|
|
208
|
-
- Faster session loading and lower memory use
|
|
209
|
-
|
|
210
|
-
## v0.31.24
|
|
211
|
-
|
|
212
|
-
- Bug fixes and stability improvements
|
|
213
|
-
|
|
214
|
-
## v0.31.23
|
|
215
|
-
|
|
216
|
-
- Faster searches and quicker responses, especially on large sessions
|
|
217
|
-
- Improved stability when indexing your conversation history
|
|
218
|
-
- Bug fixes and stability improvements
|
|
219
|
-
|
|
220
|
-
## v0.31.22
|
|
221
|
-
|
|
222
|
-
- RAG search on large, actively-growing threads is faster again. The content store was generating embeddings for newly-read files inline, on the search critical path — so every search paid to embed everything added since the last one (the content branch stayed ~3.9s warm even after the 0.31.21 caching fix). Content is now embedded on write, in the background, the moment it's stored; and the search-path catch-up is bounded (at most 16 chunks inline, the rest deferred) so a cold or backlogged thread can never let embedding dominate a search. Same fix history already had — now applied to the content store.
|
|
223
|
-
|
|
224
|
-
## v0.31.21
|
|
225
|
-
|
|
226
|
-
- RAG search on large threads is dramatically faster. The content-store search was re-reading most of the stored content from disk on every query (the dominant cost — measured at 3.6s warm and 25–35s cold on the big cumulus thread). Full-entry content is now cached in-process, so only the first search after a restart pays the read and every subsequent search is in-memory. Cache stays correct automatically (stored content is append-only) and is evicted on delete/prune.
|
|
227
|
-
|
|
228
|
-
## v0.31.20
|
|
229
|
-
|
|
230
|
-
- Added a per-stage timing breakdown to the RAG search diagnostic so slow searches can be attributed precisely. The `[RAG Timing]` log now includes a `Search split` line isolating the query-embed, parallel-search, content-store search, and segment-expansion costs. Diagnostic only — no behavior change.
|
|
231
|
-
|
|
232
|
-
## v0.31.19
|
|
233
|
-
|
|
234
|
-
- Search embedding backfill no longer gets stuck — a single message without an internal id (such as a background worker activity trace) used to abort the entire backfill, so large threads never finished catching up on search embeddings. Such messages are now skipped safely and the backlog drains.
|
|
235
|
-
|
|
236
|
-
## v0.31.18
|
|
237
|
-
|
|
238
|
-
- Semantic search restored on large threads — the binary embeddings reader was crashing on any sizable thread, silently falling back to keyword-only search and degrading recall. It now reads correctly, and a clear warning is logged if an embeddings file is ever unreadable instead of failing silently.
|
|
239
|
-
|
|
240
|
-
## v0.31.17
|
|
241
|
-
|
|
242
|
-
- Gateway restarts and updates no longer crash mid-restart — the embedding engine shuts down cleanly and stalled conversations are reliably stopped instead of blocking or aborting the restart.
|
|
243
|
-
- Large or stale threads load fast again — missing search embeddings are now backfilled in the background instead of blocking the first search (fixes the multi-second stalls on big threads).
|
|
244
|
-
|
|
245
|
-
## v0.31.16
|
|
246
|
-
|
|
247
|
-
- Gateway no longer crashes when a browser tab or client disconnects mid-response.
|
|
248
|
-
- Lower memory growth on long-running gateways serving many conversations.
|
|
249
|
-
- Large threads stay faster over time — stale cached file reads are now pruned automatically.
|
|
250
|
-
|
|
251
|
-
## v0.31.15
|
|
252
|
-
|
|
253
|
-
- fix(embeddings): move ONNX model off gateway main thread — gateway delegates embed() to shared MCP server via HTTP RPC; falls back to local if shared server unavailable
|
|
254
|
-
- fix(embeddings): disable transformers.js useBrowserCache — stops EACCES error-spamming the journal on every embed (root-owned node_modules cache)
|
|
255
|
-
|
|
256
|
-
## v0.31.14
|
|
257
|
-
|
|
258
|
-
- Bug fixes and stability improvements
|
|
259
|
-
|
|
260
|
-
## v0.31.13
|
|
261
|
-
|
|
262
|
-
- Bug fixes and stability improvements
|
|
263
|
-
|
|
264
|
-
## v0.31.12
|
|
265
|
-
|
|
266
|
-
- New per-thread model picker lets you choose Claude Opus 4.8 or Fable 5 for each conversation.
|
|
267
|
-
|
|
268
|
-
## v0.31.11
|
|
269
|
-
|
|
270
|
-
- Bug fixes and stability improvements
|
|
271
|
-
|
|
272
|
-
## v0.31.10
|
|
273
|
-
|
|
274
|
-
- Tools and capabilities now start automatically when configured, no manual setup needed
|
|
275
|
-
|
|
276
|
-
## v0.31.9
|
|
277
|
-
|
|
278
|
-
- Faster startup diagnostics for quicker troubleshooting of connection delays.
|
|
279
|
-
|
|
280
|
-
## v0.31.8
|
|
281
|
-
|
|
282
|
-
- Bug fixes and stability improvements
|
|
283
|
-
|
|
284
|
-
## v0.31.7
|
|
285
|
-
|
|
286
|
-
- Agents now have a sanctioned file-editing path (built-in Read → Edit), ending fragile script-based patching and silencing the "I'll apply the patch via a script" narration leak
|
|
287
|
-
|
|
288
|
-
## v0.31.6
|
|
289
|
-
|
|
290
|
-
- Bug fixes and stability improvements
|
|
291
|
-
|
|
292
|
-
## v0.31.4
|
|
293
|
-
|
|
294
|
-
- More reliable long responses — stalled streams now automatically continue instead of requiring "resume"
|
|
295
|
-
|
|
296
|
-
## v0.31.3
|
|
297
|
-
|
|
298
|
-
- Fix: changelog popover now renders release notes correctly (previously showed `[object Object]` for every entry)
|
|
299
|
-
|
|
300
|
-
## v0.31.2
|
|
301
|
-
|
|
302
|
-
- View recent updates from a new changelog popover in the web chat topbar
|
|
303
|
-
- See activity chips for thinking and tool segments during agent responses
|
|
304
|
-
- More reliable response continuation when streams stall mid-output
|
|
305
|
-
- Bug fixes and stability improvements
|
|
306
|
-
|
|
307
|
-
## v0.31.2
|
|
308
|
-
|
|
309
|
-
- Changelog popover in the web chat topbar — click the version to see what's changed across recent releases
|
|
310
|
-
|
|
311
|
-
## v0.31.1
|
|
312
|
-
|
|
313
|
-
- Build cleanup: stale compiled artifacts from removed modules no longer ship in the published tarball
|
|
314
|
-
|
|
315
|
-
## v0.31.0
|
|
316
|
-
|
|
317
|
-
- Removed unused remote-executor dispatch subsystem (~1700 lines): `executor.ts`, `device-mcp.ts`, `/api/executors`, `/api/device/:executorId/tool`, `/ws/executor` WebSocket, and related config fields (`executor`, `executorPaths`, `devices`, `gitRemoteUrl`). Pure dead-code removal — no behavior change.
|
|
318
|
-
|
|
319
|
-
## v0.30.30
|
|
320
|
-
|
|
321
|
-
- Bug fixes and stability improvements
|
|
322
|
-
|
|
323
|
-
## v0.30.29
|
|
324
|
-
|
|
325
|
-
- Attach files of any type to messages, with upload progress shown
|
|
326
|
-
- Stricter MCP config validation catches setup errors earlier
|
|
327
|
-
- Cleaner responses with literal `<thinking>` tags suppressed
|
|
328
|
-
- Updated documentation reflecting current features
|
|
329
|
-
|
|
330
|
-
## v0.30.28
|
|
331
|
-
|
|
332
|
-
- Bug fixes and stability improvements
|
|
333
|
-
|
|
334
|
-
## v0.30.27
|
|
335
|
-
|
|
336
|
-
- Bug fixes and stability improvements
|
|
337
|
-
|
|
338
|
-
## v0.30.25
|
|
339
|
-
|
|
340
|
-
- Restored tap-to-interject on the voice mode mic indicator
|
|
341
|
-
|
|
342
|
-
## v0.30.23
|
|
343
|
-
|
|
344
|
-
- Voice replies now finish playing fully before the session ends
|
|
345
|
-
|
|
346
|
-
## v0.30.22
|
|
347
|
-
|
|
348
|
-
- Voice mode now plays full responses instead of just the first sentence
|
|
349
|
-
|
|
350
|
-
## v0.30.21
|
|
351
|
-
|
|
352
|
-
- Bug fixes and stability improvements
|
|
353
|
-
|
|
354
|
-
## v0.30.20
|
|
355
|
-
|
|
356
|
-
- New per-thread Claude effort selector lets you tune reasoning depth per conversation
|
|
357
|
-
- Bug fixes and stability improvements
|
|
358
|
-
|
|
359
|
-
## v0.30.20
|
|
360
|
-
|
|
361
|
-
- Detect transient errors in stream content text (not just thrown errors) and throw to trigger retry
|
|
362
|
-
- Generic `[Error: {reason}]` pattern catches all error types (terminated, fetch failed, connection closed, etc.)
|
|
363
|
-
- Automatic retry with exponential backoff for HuggingFace and Claude CLI paths
|
|
364
|
-
|
|
365
|
-
## v0.30.17
|
|
366
|
-
|
|
367
|
-
You've hit your limit · resets 9pm (UTC)
|
|
368
|
-
|
|
369
|
-
- Bug fixes and stability improvements
|
|
370
|
-
|
|
371
|
-
## v0.30.16
|
|
372
|
-
|
|
373
|
-
You've hit your limit · resets 9pm (UTC)
|
|
374
|
-
|
|
375
|
-
- Bug fixes and stability improvements
|
|
376
|
-
|
|
377
|
-
## v0.30.15
|
|
378
|
-
|
|
379
|
-
- Bug fixes and stability improvements
|
|
380
|
-
|
|
381
|
-
## v0.30.14
|
|
382
|
-
|
|
383
|
-
- Cross-gateway agent messaging: agents on different gateways can now talk to each other
|
|
384
|
-
- Voice conversation mode with server-side narration for hands-free use
|
|
385
|
-
- First-run setup wizard, in-app update checker, and per-thread model selection
|
|
386
|
-
- Inline annotations: highlight chat text to comment like Google Docs
|
|
387
|
-
- Bug fixes and stability improvements (Windows spawn, blex resize, streaming reliability)
|
|
388
|
-
|
|
389
|
-
## v0.30.14
|
|
390
|
-
|
|
391
|
-
- Windows 11 compatibility: fixed `spawn EINVAL` when the gateway tries to run the `claude.cmd` shim. All Claude CLI spawn sites (gateway, TUI, MCP handler, content-detector, summaries) now route through cmd.exe on Windows.
|
|
392
|
-
|
|
393
|
-
## v0.30.13
|
|
394
|
-
|
|
395
|
-
- Blex blocks can now be resized: drag the right edge to widen past the 78ch column, double-click to reset. Widths persist per-block.
|
|
396
|
-
|
|
397
|
-
## v0.30.11
|
|
398
|
-
|
|
399
|
-
- Agents can now communicate across multiple gateways (federation)
|
|
400
|
-
- New voice conversation mode with text-to-speech narration
|
|
401
|
-
- First-run setup wizard and in-app update checking
|
|
402
|
-
- Inline text annotations — highlight and comment like Google Docs
|
|
403
|
-
- Workers show live activity chips; orchestrator manages background tasks
|
|
404
|
-
|
|
405
|
-
## v0.30.10
|
|
406
|
-
|
|
407
|
-
- New check-for-updates button in the UI
|
|
408
|
-
- Voice conversation mode with text-to-speech support
|
|
409
|
-
- Inline text annotations — highlight and comment like Google Docs
|
|
410
|
-
- First-run setup wizard and configuration CLI
|
|
411
|
-
- Bug fixes and stability improvements
|
|
412
|
-
|
|
413
|
-
## v0.30.9
|
|
414
|
-
|
|
415
|
-
- New check-for-updates button in the UI
|
|
416
|
-
- Voice conversation mode with text-to-speech support
|
|
417
|
-
- Inline text annotations — highlight and comment like Google Docs
|
|
418
|
-
- First-run setup wizard and configuration CLI
|
|
419
|
-
- Bug fixes and stability improvements
|
|
420
|
-
|
|
421
|
-
## v0.30.8
|
|
422
|
-
|
|
423
|
-
- Voice conversation mode with text-to-speech support
|
|
424
|
-
- Inline text annotations — highlight and comment like Google Docs
|
|
425
|
-
- Worker activity chips show live agent status above input
|
|
426
|
-
- First-run setup wizard and config CLI for easier onboarding
|
|
427
|
-
- Self-update system with version check and update notifications
|
|
428
|
-
- Per-thread model selector and scheduled thread triggers
|
|
429
|
-
- Pipeline dashboard for monitoring data flows
|
|
430
|
-
- Infinite scroll for long conversation threads
|
|
431
|
-
- Bug fixes and stability improvements
|
|
432
|
-
|
|
433
|
-
## v0.30.7
|
|
434
|
-
|
|
435
|
-
- Voice conversation mode with text-to-speech support
|
|
436
|
-
- Inline text annotations — highlight and comment like Google Docs
|
|
437
|
-
- Worker activity chips show live agent status above input
|
|
438
|
-
- First-run setup wizard and configuration CLI
|
|
439
|
-
- Bug fixes and stability improvements
|
|
440
|
-
|
|
441
|
-
## v0.30.6
|
|
442
|
-
|
|
443
|
-
- Voice conversation mode with text-to-speech support
|
|
444
|
-
- Inline text annotations — highlight and comment like Google Docs
|
|
445
|
-
- Worker activity chips show live agent status above input
|
|
446
|
-
- First-run setup wizard and config CLI for easier onboarding
|
|
447
|
-
- Structured todo/thinking response format with debug mode
|
|
448
|
-
- Per-thread model selector and adaptive context management
|
|
449
|
-
- Scheduled thread triggers, inbound webhooks, and email tools
|
|
450
|
-
- Pipeline dashboard for monitoring data flows
|
|
451
|
-
- Infinite scroll for long threads and improved streaming reliability
|
|
452
|
-
- Self-update system with version checks and update notifications
|
|
453
|
-
- Bug fixes and stability improvements
|
|
454
|
-
|
|
455
|
-
## v0.30.5
|
|
456
|
-
|
|
457
|
-
- Voice conversation mode with text-to-speech support
|
|
458
|
-
- Inline text annotations — highlight and comment like Google Docs
|
|
459
|
-
- Worker activity chips show live agent status above input
|
|
460
|
-
- First-run setup wizard and config CLI for easier onboarding
|
|
461
|
-
- Scheduled thread triggers, auto-resume after restart, and graceful shutdown
|
|
462
|
-
- Self-update system with version checks and update notifications
|
|
463
|
-
- Per-thread model selector and adaptive context management
|
|
464
|
-
- Inbound webhooks, email tools, and media upload support
|
|
465
|
-
- Bug fixes and stability improvements
|
|
466
|
-
|
|
467
|
-
## v0.30.5
|
|
468
|
-
|
|
469
|
-
- Update @luckydraw/blex to 0.1.13 (unicode diagram rendering fix in branch block code blocks)
|
|
470
|
-
|
|
471
|
-
## v0.30.4
|
|
472
|
-
|
|
473
|
-
- Update @luckydraw/blex to 0.1.12 (CSS !important fix for branch block readability)
|
|
474
|
-
|
|
475
|
-
## v0.30.3
|
|
476
|
-
|
|
477
|
-
- Bump to v0.30.3, update @luckydraw/blex to 0.1.11
|
|
478
|
-
- Voice conversation mode with server-side text-to-speech
|
|
479
|
-
- Inline text annotations — highlight and comment like Google Docs
|
|
480
|
-
- Worker activity chips show live agent status above input
|
|
481
|
-
- Scheduled thread triggers with cron and one-shot support
|
|
482
|
-
- First-run setup wizard and self-update system
|
|
483
|
-
- Pipeline dashboard with REST endpoints and MCP tool integration
|
|
484
|
-
- Infinite scroll for long threads and per-thread model selector
|
|
485
|
-
- Inbound webhooks and email tools for CRM automation
|
|
486
|
-
- Bug fixes and stability improvements
|
|
487
|
-
|
|
488
|
-
## v0.30.3
|
|
489
|
-
|
|
490
|
-
- Updated @luckydraw/blex to 0.1.11 (clean rebuild with Option C styling + light background fix for branch blocks)
|
|
491
|
-
|
|
492
|
-
## v0.30.2
|
|
493
|
-
|
|
494
|
-
- Updated @luckydraw/blex to 0.1.11 (stale build artifacts in 0.1.9/0.1.10)
|
|
495
|
-
|
|
496
|
-
## v0.30.1
|
|
497
|
-
|
|
498
|
-
- Updated @luckydraw/blex to 0.1.8 (adds `branch` block type — interactive flowchart navigator)
|
|
499
|
-
|
|
500
|
-
## v0.30.0
|
|
501
|
-
|
|
502
|
-
- First-run setup wizard and configuration CLI for easier onboarding
|
|
503
|
-
- Voice conversation mode with server-side text-to-speech
|
|
504
|
-
- Inline text annotations — highlight and comment like Google Docs
|
|
505
|
-
- Worker activity chips show live agent status above the input
|
|
506
|
-
- Scheduled thread triggers, inbound webhooks, and email tools
|
|
507
|
-
- Per-thread model selector and pipeline dashboard
|
|
508
|
-
- Self-update system with version checks and update notifications
|
|
509
|
-
- Automatic resume of interrupted threads after gateway restart
|
|
510
|
-
- Adaptive RAG context budgets replace fixed size presets
|
|
511
|
-
- Bug fixes and stability improvements
|
|
512
|
-
|
|
513
|
-
## v0.29.1
|
|
514
|
-
|
|
515
|
-
- New voice conversation mode with text-to-speech support
|
|
516
|
-
- First-run setup wizard and configuration CLI for easier onboarding
|
|
517
|
-
- Inline text annotations — highlight and comment like Google Docs
|
|
518
|
-
- Worker activity chips show live AI status above the input
|
|
519
|
-
- Self-update system with version checks and update notifications
|
|
520
|
-
- Per-thread model selector and scheduled thread triggers
|
|
521
|
-
- Inbound webhooks, email tools, and media upload support
|
|
522
|
-
- Pipeline dashboard for monitoring data flows
|
|
523
|
-
- Infinite scroll for long threads and improved streaming reliability
|
|
524
|
-
- Bug fixes and stability improvements
|
|
525
|
-
|
|
526
|
-
## v0.29.0
|
|
527
|
-
|
|
528
|
-
- Voice conversation mode with text-to-speech support
|
|
529
|
-
- Inline text annotations — highlight and comment like Google Docs
|
|
530
|
-
- Pipeline dashboard for monitoring task status
|
|
531
|
-
- Per-thread model selector and scheduled thread triggers
|
|
532
|
-
- Self-update system with version checks and update notifications
|
|
533
|
-
- Windows compatibility and media upload support
|
|
534
|
-
- Smarter context handling with adaptive RAG and auto-resume after restarts
|
|
535
|
-
- Bug fixes and stability improvements
|
|
536
|
-
|
|
537
|
-
## v0.28.8
|
|
538
|
-
|
|
539
|
-
- Voice conversation mode with text-to-speech responses
|
|
540
|
-
- Self-update system: check for and install new versions from the gateway
|
|
541
|
-
- Inline text annotations — highlight and comment like Google Docs
|
|
542
|
-
- Windows compatibility for admin endpoints
|
|
543
|
-
- Per-thread model selector, scheduled thread triggers, and infinite scroll
|
|
544
|
-
- Pipeline dashboard for monitoring data flows
|
|
545
|
-
- Inbound webhooks, email tools, and media uploads
|
|
546
|
-
- Auto-resume interrupted threads after gateway restart
|
|
547
|
-
- Adaptive RAG budgets and improved support for GLM-5 and HuggingFace models
|
|
548
|
-
- Bug fixes and stability improvements
|
|
549
|
-
|
|
550
|
-
## v0.28.7
|
|
551
|
-
|
|
552
|
-
- Self-update system: check for and install updates from the gateway itself
|
|
553
|
-
- Windows support for admin API and platform-specific features
|
|
554
|
-
- Inline annotations: highlight and comment on text like Google Docs
|
|
555
|
-
- Pipeline dashboard for monitoring data flows
|
|
556
|
-
- Per-thread model selector, scheduled triggers, and infinite scroll
|
|
557
|
-
- Webhook ingestion, email tools, and media uploads
|
|
558
|
-
- Smarter context management and improved support for open-source models
|
|
559
|
-
- Bug fixes and stability improvements
|
|
560
|
-
|
|
561
|
-
## v0.28.7
|
|
562
|
-
|
|
563
|
-
- Bug fixes and stability improvements
|
|
7
|
+
- Cumulus is now licensed by Lucky Draw LLC: free for evaluation, development, testing, and personal use; production and commercial use require a paid license (see LICENSE).
|
|
8
|
+
- License keys with demo mode — unlicensed gateways run fully featured, capped at 5 visitor threads per app namespace.
|
|
9
|
+
- Web-app agent starter kit in `examples/web-app-agent`: a complete runnable app showing session-gated key delivery, device threads, in-page agent commands, and the confirm-gated risk tiers.
|
|
10
|
+
- Gateway settings redesigned: one default-model control, provider-organized model catalog (Anthropic, OpenAI, HuggingFace), in-app credentials and license key — changes apply live, no restart.
|