@mmmbuto/nexuscrew 0.8.4 → 0.8.5
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/README.md +28 -14
- package/frontend/dist/assets/index-UAVxf6SE.js +90 -0
- package/frontend/dist/assets/{index-COsoJxXQ.css → index-U_e8auCM.css} +2 -2
- package/frontend/dist/index.html +2 -2
- package/frontend/dist/version.json +1 -1
- package/lib/fleet/builtin.js +7 -1
- package/lib/fleet/managed.js +48 -28
- package/lib/fleet/routes.js +10 -3
- package/lib/nodes/store.js +2 -2
- package/package.json +1 -1
- package/frontend/dist/assets/index-C1AFIaRR.js +0 -90
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ panes, windows. tmux does the work; the browser is just a faithful client.
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
-
## What it is (v0.8.
|
|
19
|
+
## What it is (v0.8.5 "Clean Fleet")
|
|
20
20
|
|
|
21
21
|
- Runs a small server on the host where your tmux sessions live.
|
|
22
22
|
- Each attach spawns a real PTY running `tmux attach` and bridges its bytes over a WebSocket
|
|
@@ -33,8 +33,9 @@ panes, windows. tmux does the work; the browser is just a faithful client.
|
|
|
33
33
|
management use the selected location through a scoped single-origin route.
|
|
34
34
|
- **Settings and wizard**: manage roles, nodes, token rotation, and service regeneration
|
|
35
35
|
from the UI; a skippable first-run wizard guides initial setup.
|
|
36
|
-
- **
|
|
37
|
-
|
|
36
|
+
- **Cell lifecycle from the UI**: the primary `+` creates a managed Fleet cell at Local or
|
|
37
|
+
any reachable node. Cards expose direct power and settings controls; deletion lives in
|
|
38
|
+
Settings → Fleet. Unmanaged tmux sessions remain attachable and can be terminated there.
|
|
38
39
|
- **Rich cards**: last activity, current command, a sanitized one-line preview per session.
|
|
39
40
|
- **Fleet control**: a built-in schema-driven fleet manager handles cells, engines, model
|
|
40
41
|
selection, and boot persistence; an existing external `fleet` CLI can take ownership through
|
|
@@ -65,13 +66,25 @@ over a real PTY. On the right, a `codex-vl` session running inside the browser c
|
|
|
65
66
|
## Fleet integration
|
|
66
67
|
|
|
67
68
|
A clean install includes the built-in, schema-driven fleet manager. Its safe defaults contain
|
|
68
|
-
|
|
69
|
-
API keys, or machine-specific paths.
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
69
|
+
four CLI adapters — **Claude Code**, **Codex**, **Codex-VL**, and **Pi** — and no cells,
|
|
70
|
+
prompts, API keys, or machine-specific paths. Engine, provider, credential-variable name,
|
|
71
|
+
model and permission policy are configured only in Settings → Fleet; the power sheet only
|
|
72
|
+
starts or stops the already configured cell and controls boot persistence.
|
|
73
|
+
|
|
74
|
+
The concise provider catalog is scoped per CLI:
|
|
75
|
+
|
|
76
|
+
- **Claude Code:** Anthropic account, Amazon Bedrock, Google Vertex AI, Microsoft Foundry,
|
|
77
|
+
Ollama Cloud, local Ollama, Z.AI, and a renameable Anthropic-compatible endpoint.
|
|
78
|
+
- **Codex / Codex-VL:** OpenAI/ChatGPT account, OpenAI API, Ollama Cloud, local Ollama,
|
|
79
|
+
LM Studio, and a renameable custom endpoint using the real Responses wire API only.
|
|
80
|
+
- **Pi:** its configured default, Anthropic, OpenAI API, OpenAI Codex OAuth, Google Gemini,
|
|
81
|
+
GitHub Copilot, OpenRouter, local Ollama, DeepSeek, Z.AI, and a custom provider.
|
|
82
|
+
|
|
83
|
+
Provider credentials are resolved from the selected CLI's native login or from an environment
|
|
84
|
+
variable named in the PWA; NexusCrew never stores a new secret value. Legacy Z.AI A/P engines
|
|
85
|
+
remain launch-compatible for existing fleets but are not provider choices for new engines.
|
|
86
|
+
Model discovery is used where the CLI/provider documents it, with a manual model field as the
|
|
87
|
+
portable fallback.
|
|
75
88
|
|
|
76
89
|
Managed engines expose a permission selector. New Claude engines (native, Z.AI, Ollama, or
|
|
77
90
|
custom) default to **Bypass permissions** and launch with
|
|
@@ -95,9 +108,10 @@ trusted executable (default `~/.local/bin/fleet`, configurable via `fleet.bin` i
|
|
|
95
108
|
"engines":[{"id":"native","label":"Claude","rc":true},{"id":"my-engine","label":"My Engine"}]}
|
|
96
109
|
```
|
|
97
110
|
|
|
98
|
-
`engines` is optional: it declares the engine
|
|
99
|
-
|
|
100
|
-
|
|
111
|
+
`engines` is optional: it declares the configured engine inventory — `id` is the stable
|
|
112
|
+
identifier, `label` is what the UI displays, and `rc: true` marks engines that support your
|
|
113
|
+
remote-control path. In external mode the external CLI owns its engine list and configuration;
|
|
114
|
+
the NexusCrew power control starts or stops the cell without changing that configuration.
|
|
101
115
|
|
|
102
116
|
and accepts `up <Cell> [--engine E] [--boot]`, `down <Cell> [--boot]`, `engine <Cell> <E>`,
|
|
103
117
|
`boot|noboot <Cell>`. The binary is trust-checked (regular file, not a symlink, not
|
|
@@ -292,7 +306,7 @@ node bin/nexuscrew.js serve
|
|
|
292
306
|
|
|
293
307
|
## Status
|
|
294
308
|
|
|
295
|
-
The current stable release is **v0.8.
|
|
309
|
+
The current stable release is **v0.8.5**, published on npm under the **`latest`** dist-tag.
|
|
296
310
|
|
|
297
311
|
## License
|
|
298
312
|
|