@mmmbuto/nexuscrew 0.8.10 → 0.8.11
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 +14 -7
- package/frontend/dist/assets/{index-CbUkgtAz.js → index-DoUIJ4GM.js} +2 -2
- package/frontend/dist/assets/{index-ChGJawuv.css → index-DrrRAIg6.css} +1 -1
- package/frontend/dist/index.html +2 -2
- package/frontend/dist/version.json +1 -1
- package/lib/cli/commands.js +51 -6
- package/lib/cli/doctor.js +20 -0
- package/lib/cli/service.js +52 -0
- package/lib/update/runner.js +4 -1
- package/package.json +1 -1
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.11 "Tmux Survival")
|
|
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
|
|
@@ -26,7 +26,8 @@ panes, windows. tmux does the work; the browser is just a faithful client.
|
|
|
26
26
|
Tiles attach with `ignore-size` so they never resize your real terminals.
|
|
27
27
|
- **Ordered Fleet roster**: local and remote locations are independently collapsible and
|
|
28
28
|
filterable by all, pinned, active, or off. The desktop chrome stays fixed while the roster
|
|
29
|
-
scrolls; the mobile header stays visible above its own touch-scrolling list
|
|
29
|
+
scrolls; the mobile header stays visible above its own touch-scrolling list, and the compact
|
|
30
|
+
version/endpoint/language footer remains readable on narrow screens.
|
|
30
31
|
- **Attached decks by default**: named workspaces switch as tabs inside the same PWA without
|
|
31
32
|
reloading terminals or losing a pending layout save. Use `↗` only when you want to detach a
|
|
32
33
|
deck into another browser window or monitor.
|
|
@@ -65,7 +66,8 @@ panes, windows. tmux does the work; the browser is just a faithful client.
|
|
|
65
66
|
inserts the saved paths without submitting Enter; ordinary text paste is unchanged.
|
|
66
67
|
- **Safe npm auto-update**: global installs follow stable npm `latest` without downgrades,
|
|
67
68
|
serialize installation across processes, verify the restarted runtime and roll back once
|
|
68
|
-
to the exact previous version if the new server does not become healthy.
|
|
69
|
+
to the exact previous version if the new server does not become healthy. On Linux, stopping
|
|
70
|
+
or restarting the HTTP service preserves the independent shared tmux server and every session.
|
|
69
71
|
- **Universal**: a PTY is a PTY — a coding agent, a REPL, a plain shell, anything tmux holds.
|
|
70
72
|
|
|
71
73
|
## Screenshots
|
|
@@ -276,8 +278,8 @@ nexuscrew # background start; opens only on first run
|
|
|
276
278
|
nexuscrew show # background start when needed + open the authenticated PWA
|
|
277
279
|
nexuscrew show token # print the clickable authenticated URL; do not open a browser
|
|
278
280
|
nexuscrew status # compact service, port and hub-connection state
|
|
279
|
-
nexuscrew stop # stop server
|
|
280
|
-
nexuscrew restart # restart server; restore
|
|
281
|
+
nexuscrew stop # stop server/tunnels; preserve every tmux session
|
|
282
|
+
nexuscrew restart # restart server safely; restore autostart hub links, preserve tmux
|
|
281
283
|
nexuscrew boot # opt in to startup persistence
|
|
282
284
|
nexuscrew boot off # disable startup persistence, keep the current run alive
|
|
283
285
|
```
|
|
@@ -303,6 +305,11 @@ accepts a prerelease from `latest`, never downgrades, and redacts registry crede
|
|
|
303
305
|
paths from PWA errors. Its current state and manual check/apply controls live in Settings →
|
|
304
306
|
System. Set `NEXUSCREW_AUTO_UPDATE=0` (or `false`, `no`, `off`) to disable scheduling.
|
|
305
307
|
|
|
308
|
+
On Linux, the installed service uses `KillMode=process`: service lifecycle affects NexusCrew,
|
|
309
|
+
not the shared tmux server. Existing units are protected by an atomic drop-in before any CLI or
|
|
310
|
+
auto-update restart; if systemd cannot apply that guard, the restart fails closed. `nexuscrew
|
|
311
|
+
doctor` reports the effective runtime `KillMode`.
|
|
312
|
+
|
|
306
313
|
## CLI
|
|
307
314
|
|
|
308
315
|
```
|
|
@@ -384,14 +391,14 @@ holding.** On a screen smaller than the session you'll see a clipped view (expec
|
|
|
384
391
|
## Develop
|
|
385
392
|
|
|
386
393
|
```bash
|
|
387
|
-
npm test # node --test
|
|
394
|
+
npm test # node --test on a private tmux socket (never the operator's server)
|
|
388
395
|
npm run build # builds the frontend into frontend/dist
|
|
389
396
|
node bin/nexuscrew.js serve
|
|
390
397
|
```
|
|
391
398
|
|
|
392
399
|
## Status
|
|
393
400
|
|
|
394
|
-
The current
|
|
401
|
+
The current release candidate is **v0.8.11**. npm **`latest`**, the GitHub tag and the release
|
|
395
402
|
assets are promoted from the same verified artifact.
|
|
396
403
|
|
|
397
404
|
## License
|