@mmmbuto/nexuscrew 0.9.19 → 0.9.21
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 +38 -22
- package/frontend/dist/assets/{index-ChYs1kwH.js → index-D5snoCdN.js} +1 -1
- package/frontend/dist/index.html +1 -1
- package/frontend/dist/version.json +1 -1
- package/lib/audio/routes.js +27 -0
- package/lib/cells/routes.js +30 -2
- package/lib/cli/commands.js +11 -1
- package/lib/files/routes.js +31 -4
- package/lib/fleet/builtin.js +44 -4
- package/lib/fleet/cell-exec.js +251 -7
- package/lib/fleet/cell-lease-server.js +161 -6
- package/lib/fleet/identity-authority.js +367 -0
- package/lib/fleet/identity-transport.js +68 -0
- package/lib/fleet/launch-broker.js +26 -1
- package/lib/fleet/lease-client.js +168 -1
- package/lib/fleet/lease-routes.js +96 -24
- package/lib/fleet/managed.js +13 -0
- package/lib/fleet/runtime.js +25 -1
- package/lib/identity/binding-guard.js +128 -0
- package/lib/live-host/bridge.js +69 -0
- package/lib/live-host/routes.js +9 -5
- package/lib/mcp/identity-provider.js +132 -0
- package/lib/mcp/identity-schema.js +168 -0
- package/lib/mcp/server.js +123 -6
- package/lib/mcp/tools.js +38 -6
- package/lib/notify/asks.js +1 -0
- package/lib/notify/routes.js +29 -1
- package/lib/server.js +24 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to NexusCrew are tracked here.
|
|
4
4
|
|
|
5
|
+
## 0.9.21 — 2026-09-10
|
|
6
|
+
|
|
7
|
+
- **Identity channel generation gate is fail-closed.** The per-cell supervisor
|
|
8
|
+
now inspects the resolved generation announcement before opening the identity
|
|
9
|
+
channel of a new generation: only an explicit positive acknowledgement for
|
|
10
|
+
the matching generation opens it. Refused, failed, timed-out or exited
|
|
11
|
+
announcements keep the channel closed with a specific diagnostic, so a child
|
|
12
|
+
can no longer receive identity proofs after a failed announcement.
|
|
13
|
+
|
|
14
|
+
- **Catalog update.** Declare kimi-k3 in the ollama-cloud catalog
|
|
15
|
+
(`openrouter-kimi-k3.json`, `managed.js`), so cells on the ollama-cloud
|
|
16
|
+
engine resolve the model with the right context window and metadata
|
|
17
|
+
instead of falling back to defaults.
|
|
18
|
+
|
|
19
|
+
- **Ollama Cloud web_search disabled.** Disable the built-in web_search tool
|
|
20
|
+
for Codex/Codex-VL on Ollama Cloud (the Responses endpoint rejects it before
|
|
21
|
+
the first turn); MCP web search stays available.
|
|
22
|
+
|
|
23
|
+
## 0.9.20 — 2026-09-06
|
|
24
|
+
|
|
25
|
+
- **Each cell derives its own MCP device.** `MCP_DEVICE` is set from the cell
|
|
26
|
+
identity at launch (`<cell>-agent`) and is rejected on engine define, edit
|
|
27
|
+
and restore, so an engine env cannot impersonate another cell's device.
|
|
28
|
+
|
|
29
|
+
- **The 0.9.18 notes match that release.** The entry no longer lists upstream
|
|
30
|
+
Codex/VL work or an updater change that were not shipped in 0.9.18.
|
|
31
|
+
|
|
5
32
|
## 0.9.19 — 2026-09-05
|
|
6
33
|
|
|
7
34
|
- **Ollama Cloud gains GLM-5.3.** `codex-vl.ollama-cloud` now includes
|
|
@@ -10,28 +37,17 @@ All notable changes to NexusCrew are tracked here.
|
|
|
10
37
|
|
|
11
38
|
## 0.9.18 — 2026-09-04
|
|
12
39
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
- **
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
### Codex VL fixes
|
|
25
|
-
|
|
26
|
-
- **Loops stay responsive.** Failed `/loop` owner and delegate preconditions
|
|
27
|
-
report an error without terminating the TUI; `/loop` usage also lists the
|
|
28
|
-
delegate, strategy, delegation and owner commands.
|
|
29
|
-
- **Vivling and fleet metadata recover cleanly.** `manage_loops` sees its jobs
|
|
30
|
-
after resume, and Vivling accepts fenced or prefixed JSON replies from any
|
|
31
|
-
provider while model metadata is resolved by engine identity.
|
|
32
|
-
- **Quieter, clearer operation.** The expression planner no longer floods the
|
|
33
|
-
log database, terminal state reconciles after every terminal event, and Esc
|
|
34
|
-
interrupts a running task even during a long tool call.
|
|
40
|
+
- **Extra models resolve by engine id first.** `extraModels` lookups try the
|
|
41
|
+
engine id before the profile name, so custom Ollama/Z.AI models attach to the
|
|
42
|
+
right engine.
|
|
43
|
+
|
|
44
|
+
- **Codex-VL speaks Z.AI Responses directly.** The new `zai-a` and `zai-p`
|
|
45
|
+
engines use the native Z.AI Responses endpoint with catalog metadata and
|
|
46
|
+
the measured 1M context window, without the AnthMorph hop.
|
|
47
|
+
|
|
48
|
+
- **Fleet validation says what it rejected.** A bad managed profile now names
|
|
49
|
+
the field, value and rule that failed, and validation no longer collapses
|
|
50
|
+
a bad field into a generic rule failure.
|
|
35
51
|
|
|
36
52
|
## 0.9.17 — 2026-09-01 — "The Package Reads Like The Product"
|
|
37
53
|
|