@mmmbuto/nexuscrew 0.8.22 → 0.8.23
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 +5 -1
- package/frontend/dist/assets/index-C0QL3gEp.js +91 -0
- package/frontend/dist/index.html +1 -1
- package/frontend/dist/version.json +1 -1
- package/lib/cli/commands.js +24 -2
- 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/server.js +9 -3
- 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
|
@@ -117,6 +117,10 @@ Boot integration uses a user systemd service on Linux, a LaunchAgent on macOS, a
|
|
|
117
117
|
Termux:Boot script on Android. Termux users must install the Termux:Boot app and open it once;
|
|
118
118
|
the CLI can validate the script but cannot prove Android app activation.
|
|
119
119
|
|
|
120
|
+
Cells marked `boot:true` are started when that platform boot integration runs. This is startup
|
|
121
|
+
persistence, not a watchdog for the tmux server itself: if the entire tmux server disappears
|
|
122
|
+
later, the boot companion is not automatically rerun.
|
|
123
|
+
|
|
120
124
|
## Fleet: cells, engines and providers
|
|
121
125
|
|
|
122
126
|
A **cell** is a reusable worker definition: tmux session name, working directory, engine,
|
|
@@ -393,7 +397,7 @@ See [CHANGELOG.md](CHANGELOG.md) for released changes.
|
|
|
393
397
|
|
|
394
398
|
## Status
|
|
395
399
|
|
|
396
|
-
The current npm stable release is **v0.8.
|
|
400
|
+
The current npm stable release is **v0.8.23** and the local runtime has been migrated to it. The
|
|
397
401
|
GitHub tag and release remain on **v0.8.20** until the prepared `main` release receives explicit
|
|
398
402
|
approval.
|
|
399
403
|
|