@mmmbuto/nexuscrew 0.8.45 → 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 +46 -0
- package/README.md +1 -1
- package/frontend/dist/assets/{index-DNFEGdog.js → index-Db2ivuxA.js} +28 -28
- package/frontend/dist/index.html +1 -1
- package/frontend/dist/version.json +1 -1
- package/lib/fleet/builtin.js +19 -2
- package/lib/fleet/cell-exec.js +126 -18
- package/lib/fleet/launch.js +80 -23
- package/lib/fleet/managed.js +53 -5
- 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,52 @@ 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
|
+
|
|
31
|
+
## 0.8.46 — 2026-07-31 — "Native Kimi"
|
|
32
|
+
|
|
33
|
+
- The Fleet gains a native Kimi Code CLI engine (`kimi.native`) that launches
|
|
34
|
+
the official `@moonshot-ai/kimi-code` binary directly in the cell's working
|
|
35
|
+
directory. Authentication and providers stay with the CLI (device-code
|
|
36
|
+
login, `config.toml`); NexusCrew never reads, stores or injects Kimi
|
|
37
|
+
credentials, and existing installations receive the engine through an
|
|
38
|
+
idempotent, collision-safe backfill.
|
|
39
|
+
- The engine defaults to interactive (standard) permissions. The unsafe
|
|
40
|
+
policy maps to `--yolo`, which auto-approves regular tool calls while the
|
|
41
|
+
agent may still ask questions; the fully autonomous `--auto` mode is
|
|
42
|
+
deliberately not exposed.
|
|
43
|
+
- Because the CLI documents no interactive prompt flag (`kimi -p` is
|
|
44
|
+
non-interactive and skips the TUI), the cell prompt is never placed on the
|
|
45
|
+
command line: it is delivered with bracketed paste once the session is
|
|
46
|
+
ready, including on supervised restarts.
|
|
47
|
+
- The Claude Code "Kimi Code" provider (`claude.kimi-code`) is unchanged and
|
|
48
|
+
remains the managed K3 path with the 1M-context profile. The PWA presents
|
|
49
|
+
the two paths under distinct names ("Kimi Code CLI" vs "Kimi Code") with an
|
|
50
|
+
explanatory notice, and login-delegated engines no longer show a misleading
|
|
51
|
+
credential KEY section.
|
|
52
|
+
|
|
7
53
|
## 0.8.45 — 2026-07-30 — "Resilient Directory"
|
|
8
54
|
|
|
9
55
|
- Fleet cell-directory reads no longer wait for external model catalog discovery.
|
package/README.md
CHANGED
|
@@ -66,7 +66,7 @@ install-script approval.
|
|
|
66
66
|
| **Live terminals** | Attach to real tmux sessions through a real PTY, WebSocket and xterm.js. |
|
|
67
67
|
| **Persistent workspaces** | Arrange sessions into decks with saved layouts, ordering, pins and per-cell drafts. |
|
|
68
68
|
| **Multi-node Fleet** | See and control authorized cells across Linux, macOS and Android nodes. |
|
|
69
|
-
| **AI-ready cells** | Launch Claude Code, Codex, Codex-VL, Pi, Agy or a trusted shell with explicit providers and policies. |
|
|
69
|
+
| **AI-ready cells** | Launch Claude Code, Codex, Codex-VL, Pi, Agy, Kimi Code CLI or a trusted shell with explicit providers and policies. |
|
|
70
70
|
| **Mobile-native control** | Scroll tmux history, use terminal keys, dictate prompts and move files from a phone. |
|
|
71
71
|
| **Operator alerts** | Receive visual, push, browser speech and opt-in node-native Audio Share TTS. |
|
|
72
72
|
|