@vtxmacro/cli 2026.8.54 → 2026.8.56
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 +10 -5
- package/bin/vtx-service-bootstrap.js +1540 -0
- package/bin/vtx.js +161 -51
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,11 +16,16 @@ verifies the Codex runtime's version and digest before use; it does not borrow a
|
|
|
16
16
|
Codex binary from PATH or an editor extension.
|
|
17
17
|
For Windows-login auto-start, install and configure the CLI from native Windows;
|
|
18
18
|
a CLI installed only inside WSL cannot start the WSL virtual machine at login.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
19
|
+
New service installations use a private verified launcher. At login and every
|
|
20
|
+
service start, it checks the official npm registry, verifies the exact release
|
|
21
|
+
integrity and installed CLI version in a new versioned directory, starts it as a
|
|
22
|
+
candidate, and selects it only after every configured worker reports ready. A
|
|
23
|
+
failed candidate is rejected and the last working runtime resumes. The service
|
|
24
|
+
keeps only the active release and one rollback release. If the update check is
|
|
25
|
+
unavailable, it keeps the last verified runtime. An intentionally stopped
|
|
26
|
+
service stays stopped and makes no update request. Hosts installed before this
|
|
27
|
+
automatic updater need one final normal npm update and service reinstall to
|
|
28
|
+
adopt it.
|
|
24
29
|
|
|
25
30
|
## Configure
|
|
26
31
|
|