@mmmbuto/nexuscrew 0.8.3 → 0.8.4
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 +15 -8
- package/frontend/dist/assets/index-C1AFIaRR.js +90 -0
- package/frontend/dist/index.html +1 -1
- package/frontend/dist/version.json +1 -1
- package/lib/nodes/health.js +89 -0
- package/lib/nodes/store.js +78 -1
- package/lib/proxy/federation.js +66 -1
- package/lib/pty/provider.js +7 -7
- package/lib/server.js +26 -9
- package/lib/settings/routes.js +60 -5
- package/package.json +4 -8
- package/frontend/dist/assets/index-BFyPeZsL.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.4 "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,10 @@ 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
|
-
- **
|
|
31
|
-
already control and see
|
|
32
|
-
|
|
30
|
+
- **Federated Hydra inventory**: connect existing NexusCrew installations through the SSH
|
|
31
|
+
configuration you already control and see local, direct, and relayed tmux fleets in one UI.
|
|
32
|
+
Route labels show where every session lives; creation, attach, files, lifecycle and Fleet
|
|
33
|
+
management use the selected location through a scoped single-origin route.
|
|
33
34
|
- **Settings and wizard**: manage roles, nodes, token rotation, and service regeneration
|
|
34
35
|
from the UI; a skippable first-run wizard guides initial setup.
|
|
35
36
|
- **Session lifecycle from the UI**: create sessions (name + cwd + an allowlisted preset)
|
|
@@ -41,6 +42,8 @@ panes, windows. tmux does the work; the browser is just a faithful client.
|
|
|
41
42
|
- **i18n**: English, Italian, Spanish — follows your browser language, switchable in the UI.
|
|
42
43
|
- **localhost-only**: the server binds `127.0.0.1` and refuses any non-loopback bind.
|
|
43
44
|
- **Stateless**: tmux *is* the persistence. No database, no accounts.
|
|
45
|
+
- **Mobile terminal controls**: long-press begins local text selection, drag extends it, and
|
|
46
|
+
the composer send button keeps the software keyboard open for the next message.
|
|
44
47
|
- **Universal**: a PTY is a PTY — a coding agent, a REPL, a plain shell, anything tmux holds.
|
|
45
48
|
|
|
46
49
|
## Screenshots
|
|
@@ -107,8 +110,7 @@ off. Set `NEXUSCREW_FLEET=0` to disable it entirely.
|
|
|
107
110
|
- **tmux** on the host (3.4+; the non-destructive `ignore-size` attach is honored on 3.4 and
|
|
108
111
|
later)
|
|
109
112
|
- A PTY backend is resolved automatically per platform: Darwin ARM64/x64 and Linux ARM64/x64
|
|
110
|
-
prebuilds, the native Android ARM64 provider on Termux
|
|
111
|
-
build-from-source fallback.
|
|
113
|
+
scriptless prebuilds, including the native Android ARM64 provider on Termux.
|
|
112
114
|
|
|
113
115
|
## Access model — read this
|
|
114
116
|
|
|
@@ -160,7 +162,8 @@ nexuscrew
|
|
|
160
162
|
|
|
161
163
|
The first run creates a loopback-only configuration and starts a detached process. Run
|
|
162
164
|
`nexuscrew boot` only if you want a persistent `systemd --user` service. Linux x64 and ARM64
|
|
163
|
-
use platform PTY prebuilds
|
|
165
|
+
use platform PTY prebuilds only, so global installs do not compile native code or
|
|
166
|
+
require install-script approval.
|
|
164
167
|
|
|
165
168
|
### macOS (Apple Silicon or Intel)
|
|
166
169
|
|
|
@@ -263,6 +266,10 @@ args = ["mcp"]
|
|
|
263
266
|
The awkward tmux gestures, as buttons: **scroll** (enters copy-mode; then PgUp/↑/↓, `q` to
|
|
264
267
|
exit), **window** prev/next, **pane** left/right, **esc**, **Ctrl-C**, **detach**.
|
|
265
268
|
|
|
269
|
+
Long-press terminal text to enter local selection mode, then drag and use **Copy**. The
|
|
270
|
+
composer send button writes the text followed by a real Enter while retaining textarea focus,
|
|
271
|
+
so the mobile keyboard stays open between messages.
|
|
272
|
+
|
|
266
273
|
Window and pane navigation run as **server-side, allowlisted tmux commands** on the active
|
|
267
274
|
session — they are *not* emulated with client-side prefix keys, which are fragile and depend
|
|
268
275
|
on each host's key bindings.
|
|
@@ -285,7 +292,7 @@ node bin/nexuscrew.js serve
|
|
|
285
292
|
|
|
286
293
|
## Status
|
|
287
294
|
|
|
288
|
-
The current stable release is **v0.8.
|
|
295
|
+
The current stable release is **v0.8.4**, published on npm under the **`latest`** dist-tag.
|
|
289
296
|
|
|
290
297
|
## License
|
|
291
298
|
|