@mmmbuto/nexuscrew 0.8.2 → 0.8.3

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 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.2 "Simple Federated Hydra")
19
+ ## What it is (v0.8.3 "Simple and Clean")
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
@@ -27,9 +27,9 @@ panes, windows. tmux does the work; the browser is just a faithful client.
27
27
  - **Multi-window decks**: named workspaces at `/deck/<name>` — one browser window per
28
28
  monitor, each with its own remembered tile layout. The focused tile is the size owner;
29
29
  everything else attaches with `ignore-size`.
30
- - **Multi-node**: register other hosts as nodes over dedicated restricted SSH tunnels and
31
- see their tmux fleets in the same UI. Per-node groups, remote attach, and file exchange
32
- all travel through a single-origin `/node/<name>` proxy using one local token.
30
+ - **Multi-node**: connect existing NexusCrew installations through the SSH configuration you
31
+ already control and see their tmux fleets in the same UI. Per-node groups, remote attach,
32
+ file exchange, and Fleet management travel through a scoped single-origin route.
33
33
  - **Settings and wizard**: manage roles, nodes, token rotation, and service regeneration
34
34
  from the UI; a skippable first-run wizard guides initial setup.
35
35
  - **Session lifecycle from the UI**: create sessions (name + cwd + an allowlisted preset)
@@ -70,6 +70,12 @@ Responses-only. New custom credentials are read only from the environment variab
70
70
  the PWA; NexusCrew never stores the secret value. Existing Z.AI A/P and Ollama Cloud profiles
71
71
  retain their backwards-compatible credential loading.
72
72
 
73
+ Managed engines expose a permission selector. New Claude engines (native, Z.AI, Ollama, or
74
+ custom) default to **Bypass permissions** and launch with
75
+ `--dangerously-skip-permissions`; choose **Standard permissions** to disable it. New Codex and
76
+ Codex-VL engines default to Standard and offer an explicit opt-in for
77
+ `--dangerously-bypass-approvals-and-sandbox`. Pi keeps its native permission behavior.
78
+
73
79
  Custom argv-based engines remain supported. Their command, environment, cwd, and prompt are
74
80
  validated against a strict trust boundary and launched without a shell.
75
81
 
@@ -139,7 +145,8 @@ PWA token never crosses a peer link.
139
145
  A relay controls what its peers can see. The default is the whole network; a peer can be reduced
140
146
  to relay-only or a selected set. HTTP and WebSocket routing enforce that policy at every hop,
141
147
  with stable instance IDs, cycle rejection and a four-hop ceiling. Session creation, terminal,
142
- files and termination work on Local or any reachable route; Fleet remains local to each node.
148
+ files, termination, and Fleet editing work on Local or any reachable route. Previously seen
149
+ transitive nodes remain listed as offline with their last-seen time while a relay is down.
143
150
 
144
151
  ## Install & run
145
152
 
@@ -151,9 +158,9 @@ npm install -g @mmmbuto/nexuscrew
151
158
  nexuscrew
152
159
  ```
153
160
 
154
- The first run creates a loopback-only configuration and a `systemd --user` service when
155
- systemd is available. Linux x64 and ARM64 use platform PTY prebuilds; `node-pty` remains the
156
- build-from-source fallback.
161
+ The first run creates a loopback-only configuration and starts a detached process. Run
162
+ `nexuscrew boot` only if you want a persistent `systemd --user` service. Linux x64 and ARM64
163
+ use platform PTY prebuilds; `node-pty` remains the build-from-source fallback.
157
164
 
158
165
  ### macOS (Apple Silicon or Intel)
159
166
 
@@ -163,9 +170,10 @@ npm install -g @mmmbuto/nexuscrew
163
170
  nexuscrew
164
171
  ```
165
172
 
166
- The first run installs a user LaunchAgent with an explicit Node/Homebrew PATH. The npm package
167
- selects the matching Darwin ARM64 or x64 PTY prebuild. NexusCrew is an npm/Node CLI, not an
168
- `.app`, `.pkg`, or standalone Mach-O distribution, so it does not require Developer ID signing.
173
+ The first run starts a detached process. Run `nexuscrew boot` to install a user LaunchAgent
174
+ with an explicit Node/Homebrew PATH. The npm package selects the matching Darwin ARM64 or x64
175
+ PTY prebuild. NexusCrew is an npm/Node CLI, not an `.app`, `.pkg`, or standalone Mach-O
176
+ distribution, so it does not require Developer ID signing.
169
177
 
170
178
  ### Android / Termux (ARM64)
171
179
 
@@ -177,14 +185,18 @@ nexuscrew
177
185
  ```
178
186
 
179
187
  Termux uses the Android ARM64 PTY provider. The normal command starts NexusCrew in the
180
- background and exits, so it can also be used directly as a Termux:Boot startup command.
188
+ background and exits. `nexuscrew boot` installs the Termux:Boot script explicitly.
181
189
 
182
190
  On every platform the first run starts the server in the background and opens the PWA wizard.
183
- After onboarding, the same command starts or reuses the background service and exits silently:
191
+ After onboarding, the same command starts or reuses it, prints a compact status and guide, and
192
+ exits:
184
193
 
185
194
  ```bash
186
195
  nexuscrew # background start; opens only on first run
187
196
  nexuscrew show # background start when needed + open the authenticated PWA
197
+ nexuscrew show token # print the clickable authenticated URL; do not open a browser
198
+ nexuscrew boot # opt in to startup persistence
199
+ nexuscrew boot off # disable startup persistence, keep the current run alive
188
200
  ```
189
201
 
190
202
  The preferred port is `41820`. If it is occupied by another process, NexusCrew selects the
@@ -201,6 +213,8 @@ resolved PTY provider at startup.
201
213
  ```
202
214
  nexuscrew background start; first run opens the PWA wizard
203
215
  nexuscrew show start when needed and open the authenticated PWA
216
+ nexuscrew show token print the clickable authenticated URL without opening it
217
+ nexuscrew boot enable startup at boot (`boot off|status` are also available)
204
218
  nexuscrew doctor local diagnostics (exit 1 when a required check fails)
205
219
  nexuscrew help concise command help
206
220
  nexuscrew version installed version
@@ -271,7 +285,7 @@ node bin/nexuscrew.js serve
271
285
 
272
286
  ## Status
273
287
 
274
- The current stable release is **v0.8.2**, published on npm under the **`latest`** dist-tag.
288
+ The current stable release is **v0.8.3**, published on npm under the **`latest`** dist-tag.
275
289
 
276
290
  ## License
277
291