@vtxmacro/cli 2026.8.18 → 2026.8.20
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 +21 -7
- package/bin/vtx.js +1535 -220
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -13,6 +13,8 @@ The host supports Windows x64 and Linux x64, including WSL. The package installs
|
|
|
13
13
|
the exact supported OpenAI Codex runtime for those platforms.
|
|
14
14
|
The VTX host verifies that native runtime's version and digest before use; it
|
|
15
15
|
does not borrow a Codex binary from PATH or an editor extension.
|
|
16
|
+
For Windows-login auto-start, install and configure the CLI from native Windows;
|
|
17
|
+
a CLI installed only inside WSL cannot start the WSL virtual machine at login.
|
|
16
18
|
|
|
17
19
|
## Configure
|
|
18
20
|
|
|
@@ -60,17 +62,21 @@ bounded cooldown.
|
|
|
60
62
|
vtx inference-host login
|
|
61
63
|
vtx inference-host codex-login
|
|
62
64
|
vtx inference-host doctor --json
|
|
63
|
-
vtx inference-host
|
|
64
|
-
vtx inference-host status --json
|
|
65
|
+
vtx inference-host service install
|
|
66
|
+
vtx inference-host service status --json
|
|
67
|
+
vtx inference-host service logs
|
|
65
68
|
vtx inference-host logout
|
|
66
69
|
vtx inference-host codex-logout
|
|
67
70
|
vtx inference-host revoke
|
|
68
71
|
```
|
|
69
72
|
|
|
70
|
-
This
|
|
73
|
+
This durable host uses a separate least-privilege `insights:inference`
|
|
71
74
|
OAuth grant. It also keeps its ChatGPT subscription login in a dedicated private
|
|
72
75
|
Codex home. Neither credential is copied from or widens the ordinary CLI or Codex
|
|
73
|
-
session.
|
|
76
|
+
session. The per-user OS service starts immediately, starts again at login, and
|
|
77
|
+
reconnects after sleep, network loss, or a worker exit. Stopping a VTX bot leaves
|
|
78
|
+
the provider online and idle. Use `vtx inference-host run` only for foreground
|
|
79
|
+
diagnostics. VTX logout/revoke and Codex logout are intentionally separate operations.
|
|
74
80
|
|
|
75
81
|
Use `vtx inference-host --help` for command discovery. The VTX login verifies
|
|
76
82
|
that the selected credential store can read back the exact saved grant. If an
|
|
@@ -124,6 +130,12 @@ Use `not_dispatched` only when no harness inference began,
|
|
|
124
130
|
`outcome_unknown` when dispatch itself cannot be confirmed. Pipe exactly one
|
|
125
131
|
object to `vtx inference-host agent-fail --json`.
|
|
126
132
|
|
|
133
|
+
Claude Code, GitHub Copilot, Cursor, and Google Antigravity remain on the
|
|
134
|
+
explicit foreground agent loop. Their supported CLI or account contracts do not
|
|
135
|
+
provide the durable, private third-party service boundary VTX requires, so
|
|
136
|
+
`service install --adapter ...` rejects them instead of advertising false
|
|
137
|
+
durability.
|
|
138
|
+
|
|
127
139
|
Keep `agent-run` open in a separate terminal and keep calling `agent-next`
|
|
128
140
|
while the host should remain available. The independent keeper preserves
|
|
129
141
|
truthful liveness while the harness reasons. This same loop
|
|
@@ -140,12 +152,14 @@ running bot.
|
|
|
140
152
|
|
|
141
153
|
## Remove
|
|
142
154
|
|
|
143
|
-
First stop
|
|
144
|
-
grant, then uninstall the package. Cleanup refuses while
|
|
145
|
-
process still owns the host. Automated Codex users should also remove the
|
|
155
|
+
First uninstall any durable service, stop any foreground run or agent-run process,
|
|
156
|
+
revoke the VTX inference grant, then uninstall the package. Cleanup refuses while
|
|
157
|
+
a foreground host process still owns the host. Automated Codex users should also remove the
|
|
146
158
|
dedicated Codex login:
|
|
147
159
|
|
|
148
160
|
```bash
|
|
161
|
+
vtx inference-host service stop
|
|
162
|
+
vtx inference-host service uninstall
|
|
149
163
|
vtx inference-host revoke
|
|
150
164
|
# Automated Codex host only:
|
|
151
165
|
vtx inference-host codex-logout
|