@vtxmacro/cli 2026.9.27 → 2026.9.28
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 +9 -2
- package/bin/vtx-service-bootstrap.js +15 -2
- package/bin/vtx.js +2910 -943
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ vtx --version
|
|
|
11
11
|
|
|
12
12
|
The host supports Windows x64 and Linux x64, including WSL. The package installs
|
|
13
13
|
the exact supported OpenAI Codex runtime, GitHub Copilot SDK, official
|
|
14
|
-
DeepSeek Harness package wave,
|
|
14
|
+
DeepSeek Harness package wave, Pi SDK package wave, and Grok Build runtime. The VTX host
|
|
15
15
|
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;
|
|
@@ -70,7 +70,14 @@ and VTX grant. VTX resolves the package-owned pinned Copilot platform runtime
|
|
|
70
70
|
explicitly and rejects an `auto`-only catalog because it cannot prove the
|
|
71
71
|
effective model.
|
|
72
72
|
|
|
73
|
-
|
|
73
|
+
Grok Build is a durable preview using its package-owned official runtime and an
|
|
74
|
+
isolated local Grok OAuth session. Run `vtx inference-host grok-login --instance grok-1`
|
|
75
|
+
after the normal VTX host login, then `vtx inference-host service install --adapter grok-build --instance grok-1`.
|
|
76
|
+
Provider mode has no tools; Main Agent mode exposes only assignment-scoped VTX tools.
|
|
77
|
+
Structured decisions, model identity, and usage are validated. Interrupted requests
|
|
78
|
+
with an uncertain outcome are fenced; same-attempt recovery is not supported.
|
|
79
|
+
|
|
80
|
+
An explicitly capable durable Codex, Grok Build, Copilot, DeepSeek Harness, or Pi model can also
|
|
74
81
|
control Main in **Agent** mode using the same VTX OAuth grant and its own local
|
|
75
82
|
adapter-specific vendor credential: ChatGPT or Copilot login, or a DeepSeek or
|
|
76
83
|
Pi provider API key. VTX assigns the running bot but does not send a VTX-authored prompt or set
|
|
@@ -16,7 +16,7 @@ import { fileURLToPath } from "node:url";
|
|
|
16
16
|
// agent-cli-release.json
|
|
17
17
|
var agent_cli_release_default = {
|
|
18
18
|
package_name: "@vtxmacro/cli",
|
|
19
|
-
package_version: "2026.9.
|
|
19
|
+
package_version: "2026.9.28",
|
|
20
20
|
codex_package_name: "@openai/codex",
|
|
21
21
|
codex_version: "0.153.3",
|
|
22
22
|
copilot_sdk_package_name: "@github/copilot-sdk",
|
|
@@ -99,7 +99,20 @@ var agent_cli_release_default = {
|
|
|
99
99
|
"@earendil-works/pi-telemetry",
|
|
100
100
|
"@earendil-works/pi-tui",
|
|
101
101
|
"@earendil-works/chord"
|
|
102
|
-
]
|
|
102
|
+
],
|
|
103
|
+
grok_version: "1.0.30",
|
|
104
|
+
grok_platforms: {
|
|
105
|
+
"linux-x64": {
|
|
106
|
+
package_name: "@xai-official/grok-linux-x64",
|
|
107
|
+
binary_name: "grok",
|
|
108
|
+
sha256: "504dd6546ab991b75d36698242875ce461489cd1f8cd84285873cb55bd5c7d54"
|
|
109
|
+
},
|
|
110
|
+
"win32-x64": {
|
|
111
|
+
package_name: "@xai-official/grok-win32-x64",
|
|
112
|
+
binary_name: "grok.exe",
|
|
113
|
+
sha256: "48736d1a4342a801ea26d0ecde4c516b653f791399065adaa55973f83abd8867"
|
|
114
|
+
}
|
|
115
|
+
}
|
|
103
116
|
};
|
|
104
117
|
|
|
105
118
|
// lib/inference-host/config.ts
|