@luckydraw/cumulus 0.31.61 → 0.31.63
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 +12 -0
- package/dist/gateway/static/widget.js +675 -192
- package/dist/lib/agentic-loop.d.ts +2 -0
- package/dist/lib/agentic-loop.d.ts.map +1 -1
- package/dist/lib/agentic-loop.js +45 -16
- package/dist/lib/agentic-loop.js.map +1 -1
- package/dist/lib/config.d.ts +2 -0
- package/dist/lib/config.d.ts.map +1 -1
- package/dist/lib/config.js +16 -0
- package/dist/lib/config.js.map +1 -1
- package/dist/lib/gateway.d.ts +1 -0
- package/dist/lib/gateway.d.ts.map +1 -1
- package/dist/lib/gateway.js +17 -2
- package/dist/lib/gateway.js.map +1 -1
- package/dist/lib/mcp-client-tools.d.ts +35 -0
- package/dist/lib/mcp-client-tools.d.ts.map +1 -0
- package/dist/lib/mcp-client-tools.js +99 -0
- package/dist/lib/mcp-client-tools.js.map +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.31.63
|
|
4
|
+
|
|
5
|
+
- Gateway model settings are now organized into Anthropic, OpenAI, and HuggingFace provider cards with editable model catalogs, credentials, context windows, and clear empty states.
|
|
6
|
+
- One gateway-default control now spans all providers while preserving the separate default Claude CLI sub-model.
|
|
7
|
+
- Model catalog and credential changes apply live without a restart, explicitly support credential clearing, and refresh every open thread picker after saving.
|
|
8
|
+
|
|
9
|
+
## v0.31.62
|
|
10
|
+
|
|
11
|
+
- Direct-provider agents now receive namespace-scoped stdio MCP tools, giving OSS and OpenAI models the same application capabilities as Claude CLI threads.
|
|
12
|
+
- Tool-turn planning prose is kept private and only terminal answer text is streamed or persisted.
|
|
13
|
+
- `disallowedTools` now applies consistently to Claude CLI and direct-provider tool surfaces.
|
|
14
|
+
|
|
3
15
|
## v0.31.61
|
|
4
16
|
|
|
5
17
|
- 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.
|