@mmmbuto/nexuscrew 0.8.46 → 0.8.47
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 +24 -0
- package/frontend/dist/assets/{index-DMG-rioF.js → index-Db2ivuxA.js} +28 -28
- package/frontend/dist/index.html +1 -1
- package/frontend/dist/version.json +1 -1
- package/lib/fleet/cell-exec.js +126 -18
- package/lib/fleet/launch.js +80 -23
- package/lib/fleet/managed.js +10 -2
- package/lib/fleet/prompt-delivery.js +275 -0
- package/lib/fleet/runtime.js +49 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,30 @@ All notable changes to NexusCrew are tracked here.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 0.8.47 — 2026-07-31 — "Kimi First-Run Corrective"
|
|
8
|
+
|
|
9
|
+
- The Kimi engines (`kimi.native` and the Claude Code "Kimi Code" provider)
|
|
10
|
+
no longer receive the cell prompt on the process command line. The prompt
|
|
11
|
+
is delivered to the interactive prompt only, at most once per process
|
|
12
|
+
generation, after a real readiness classification of the visible terminal.
|
|
13
|
+
- Login screens, the Claude custom-API-key consent dialog and
|
|
14
|
+
onboarding/trust dialogs are treated as **not ready**: nothing is pasted
|
|
15
|
+
and no Enter is sent, so a bootstrap prompt can never be lost behind a
|
|
16
|
+
dialog, and the cell session is left alive for the operator. When the
|
|
17
|
+
terminal stays not ready past a bounded wait, the up response carries a
|
|
18
|
+
bounded `actionRequired` code with a constant-catalog recovery hint — for
|
|
19
|
+
"Kimi Code" the `/config` → "Use custom API key" path (never the Anthropic
|
|
20
|
+
`/login` flow), for `kimi.native` the CLI's own device-code login.
|
|
21
|
+
- Prompt delivery is a single bracketed paste followed by a separate Enter on
|
|
22
|
+
the exact pane, with a random per-send buffer and a `0600` temporary file.
|
|
23
|
+
There is no automatic retry after any paste attempt (a partial composer
|
|
24
|
+
state can never be doubled); a supervised restart performs at most one new
|
|
25
|
+
classified delivery for the new generation. Legacy `send-keys` custom
|
|
26
|
+
engines keep their paste-without-Enter contract on the same safer
|
|
27
|
+
transport.
|
|
28
|
+
- The PWA surfaces the recovery hint when an up action reports
|
|
29
|
+
`actionRequired` (App, session list and Fleet tab).
|
|
30
|
+
|
|
7
31
|
## 0.8.46 — 2026-07-31 — "Native Kimi"
|
|
8
32
|
|
|
9
33
|
- The Fleet gains a native Kimi Code CLI engine (`kimi.native`) that launches
|