@mmmbuto/nexuscrew 0.8.22 → 0.8.24
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 +11 -3
- package/frontend/dist/assets/index-CU9OOtL-.js +91 -0
- package/frontend/dist/index.html +1 -1
- package/frontend/dist/version.json +1 -1
- package/lib/cli/commands.js +40 -4
- package/lib/cli/doctor.js +65 -11
- package/lib/cli/fleet-service.js +3 -0
- package/lib/cli/init.js +30 -6
- package/lib/config.js +7 -0
- package/lib/fleet/builtin.js +13 -1
- package/lib/fleet/provider.js +1 -1
- package/lib/fleet/routes.js +1 -0
- package/lib/fleet/runtime.js +5 -2
- package/lib/nodes/store.js +40 -1
- package/lib/server.js +9 -3
- package/lib/settings/pairing-coordinator.js +22 -1
- package/lib/settings/public-peering-routes.js +11 -2
- package/lib/settings/routes.js +14 -5
- package/lib/tmux/lifecycle.js +4 -2
- package/lib/tmux/shared-server.js +60 -0
- package/package.json +1 -1
- package/frontend/dist/assets/index-ClJP2j6k.js +0 -91
package/README.md
CHANGED
|
@@ -94,6 +94,7 @@ headless hosts and VPS installations.
|
|
|
94
94
|
| Command | Purpose |
|
|
95
95
|
|---|---|
|
|
96
96
|
| `nexuscrew` | Start or reuse the background runtime and print a short status |
|
|
97
|
+
| `nexuscrew init [--dry-run] [--port PORT]` | Initialize missing local stores idempotently or preview the operation |
|
|
97
98
|
| `nexuscrew show` | Start when needed and open the authenticated PWA |
|
|
98
99
|
| `nexuscrew show token` | Print the authenticated browser link without opening it |
|
|
99
100
|
| `nexuscrew status` | Show service, port, role and node status |
|
|
@@ -117,6 +118,10 @@ Boot integration uses a user systemd service on Linux, a LaunchAgent on macOS, a
|
|
|
117
118
|
Termux:Boot script on Android. Termux users must install the Termux:Boot app and open it once;
|
|
118
119
|
the CLI can validate the script but cannot prove Android app activation.
|
|
119
120
|
|
|
121
|
+
Cells marked `boot:true` are started when that platform boot integration runs. This is startup
|
|
122
|
+
persistence, not a watchdog for the tmux server itself: if the entire tmux server disappears
|
|
123
|
+
later, the boot companion is not automatically rerun.
|
|
124
|
+
|
|
120
125
|
## Fleet: cells, engines and providers
|
|
121
126
|
|
|
122
127
|
A **cell** is a reusable worker definition: tmux session name, working directory, engine,
|
|
@@ -222,6 +227,11 @@ single pairing link or QR code:
|
|
|
222
227
|
4. If the portable address cannot select the correct key, open **Advanced / edit** and replace
|
|
223
228
|
it with the SSH alias that already works from that device.
|
|
224
229
|
|
|
230
|
+
Advanced settings keep the local display label separate from the local route handle. The route
|
|
231
|
+
defaults to a readable slug plus a stable node-ID suffix, so devices that all report the hostname
|
|
232
|
+
`localhost` still receive distinct handles. If a hub reports a collision, NexusCrew applies its
|
|
233
|
+
deterministic suggestion and lets the device retry with the same invitation.
|
|
234
|
+
|
|
225
235
|
NexusCrew creates one supervised `ssh` process for the hub connection and proves the forwarded
|
|
226
236
|
TCP endpoint before reporting success. It does not generate SSH keys, edit `authorized_keys`,
|
|
227
237
|
or use `autossh` as a hidden second supervisor.
|
|
@@ -393,9 +403,7 @@ See [CHANGELOG.md](CHANGELOG.md) for released changes.
|
|
|
393
403
|
|
|
394
404
|
## Status
|
|
395
405
|
|
|
396
|
-
The current
|
|
397
|
-
GitHub tag and release remain on **v0.8.20** until the prepared `main` release receives explicit
|
|
398
|
-
approval.
|
|
406
|
+
The current stable release is **v0.8.24** on npm and GitHub.
|
|
399
407
|
|
|
400
408
|
## License
|
|
401
409
|
|