@mmmbuto/nexuscrew 0.8.6 → 0.8.7
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 +26 -14
- package/frontend/dist/assets/index-D2TrRtWQ.js +90 -0
- package/frontend/dist/assets/{index-kX5IUxt4.css → index-DrEuy6A6.css} +1 -1
- package/frontend/dist/index.html +2 -2
- package/frontend/dist/version.json +1 -1
- package/lib/nodes/peering.js +26 -0
- package/lib/settings/routes.js +192 -59
- package/package.json +1 -1
- package/frontend/dist/assets/index-CEFh0hI4.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.7 "One-Link Pairing")
|
|
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
|
|
@@ -31,8 +31,11 @@ panes, windows. tmux does the work; the browser is just a faithful client.
|
|
|
31
31
|
configuration you already control and see local, direct, and relayed tmux fleets in one UI.
|
|
32
32
|
Route labels show where every session lives; creation, attach, files, lifecycle and Fleet
|
|
33
33
|
management use the selected location through a scoped single-origin route.
|
|
34
|
+
- **One-link node pairing**: paste a link or scan its QR in Settings → Nodes. A complete
|
|
35
|
+
link tests SSH, exchanges the one-time invitation, confirms both directions and verifies
|
|
36
|
+
the peer automatically; failures identify the exact connection stage.
|
|
34
37
|
- **Settings and wizard**: manage roles, nodes, token rotation, and service regeneration
|
|
35
|
-
from the UI;
|
|
38
|
+
from the UI; the first-run wizard uses the same pairing flow as Settings.
|
|
36
39
|
- **Cell lifecycle from the UI**: the primary `+` creates a managed Fleet cell at Local or
|
|
37
40
|
any reachable node. Power opens one shared launch sheet where engine, model, permission
|
|
38
41
|
policy and boot can be reviewed before every start; deletion lives in Settings → Fleet.
|
|
@@ -59,12 +62,12 @@ panes, windows. tmux does the work; the browser is just a faithful client.
|
|
|
59
62
|
The **Fleet Deck** desktop grid (≥1024px): drag sessions into a tiling layout — live
|
|
60
63
|
terminals side by side, each a real PTY streamed to the browser.
|
|
61
64
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
+
<p align="center">
|
|
66
|
+
<img src="docs/img/fleet-mobile.png" width="420" alt="NexusCrew mobile Fleet overview with managed AI cells and direct power controls">
|
|
67
|
+
</p>
|
|
65
68
|
|
|
66
|
-
The mobile
|
|
67
|
-
|
|
69
|
+
The mobile Fleet overview keeps managed cells, current engines, activity and direct power
|
|
70
|
+
controls in one place. Tapping a live session still attaches through a real PTY.
|
|
68
71
|
|
|
69
72
|
## Fleet integration
|
|
70
73
|
|
|
@@ -157,12 +160,21 @@ token travels in the URL **fragment** (`#token=…`), so it never reaches the se
|
|
|
157
160
|
|
|
158
161
|
## Federated Hydra nodes (configured from the PWA)
|
|
159
162
|
|
|
160
|
-
Every installation is always the local node and can join other NexusCrew nodes.
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
163
|
+
Every installation is always the local node and can join other NexusCrew nodes. The normal
|
|
164
|
+
flow stays entirely in the PWA:
|
|
165
|
+
|
|
166
|
+
1. On the installation being shared, open **Settings → Nodes → Invite a node**. Enter the
|
|
167
|
+
OpenSSH target or Host alias that the *other device* uses to reach this installation, then
|
|
168
|
+
create the ten-minute link/QR.
|
|
169
|
+
2. On the other device, open its own NexusCrew PWA (`nexuscrew show`), go to
|
|
170
|
+
**Settings → Nodes**, and use the first card, **Connect with one link**. Paste the complete
|
|
171
|
+
link in the prominent field or scan the QR. Do not navigate to the loopback address in the
|
|
172
|
+
link: it is only a portable container for the pairing payload.
|
|
173
|
+
3. A complete v2 link connects automatically. NexusCrew starts a provisional SSH forward,
|
|
174
|
+
checks transport readiness, consumes the one-time invite once, negotiates the reciprocal
|
|
175
|
+
path, confirms it, and verifies authenticated federation health and peer identity. If a
|
|
176
|
+
stage fails, the PWA preserves the link and shows the exact stage, detail and safe retry
|
|
177
|
+
guidance. Older v1 links remain accepted and open only the missing routing fields.
|
|
166
178
|
|
|
167
179
|
The link never contains an SSH key, identity file, API key or PWA token. Its only credential is
|
|
168
180
|
the random, one-time pairing invite; SSH routing fields are non-secret configuration. A
|
|
@@ -323,7 +335,7 @@ node bin/nexuscrew.js serve
|
|
|
323
335
|
|
|
324
336
|
## Status
|
|
325
337
|
|
|
326
|
-
The current stable release is **v0.8.
|
|
338
|
+
The current stable release is **v0.8.7**, published on npm under the **`latest`** dist-tag.
|
|
327
339
|
|
|
328
340
|
## License
|
|
329
341
|
|