@vtxmacro/cli 2026.9.28 → 2026.9.29
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 +1 -1
- package/bin/vtx-service-bootstrap.js +1 -1
- package/bin/vtx.js +5 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -70,7 +70,7 @@ 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
|
-
Grok Build is a durable
|
|
73
|
+
Grok Build is a durable adapter using its package-owned official runtime and an
|
|
74
74
|
isolated local Grok OAuth session. Run `vtx inference-host grok-login --instance grok-1`
|
|
75
75
|
after the normal VTX host login, then `vtx inference-host service install --adapter grok-build --instance grok-1`.
|
|
76
76
|
Provider mode has no tools; Main Agent mode exposes only assignment-scoped VTX tools.
|
|
@@ -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.29",
|
|
20
20
|
codex_package_name: "@openai/codex",
|
|
21
21
|
codex_version: "0.153.3",
|
|
22
22
|
copilot_sdk_package_name: "@github/copilot-sdk",
|
package/bin/vtx.js
CHANGED
|
@@ -77,7 +77,7 @@ var init_agent_cli_release = __esm({
|
|
|
77
77
|
"agent-cli-release.json"() {
|
|
78
78
|
agent_cli_release_default = {
|
|
79
79
|
package_name: "@vtxmacro/cli",
|
|
80
|
-
package_version: "2026.9.
|
|
80
|
+
package_version: "2026.9.29",
|
|
81
81
|
codex_package_name: "@openai/codex",
|
|
82
82
|
codex_version: "0.153.3",
|
|
83
83
|
copilot_sdk_package_name: "@github/copilot-sdk",
|
|
@@ -34882,6 +34882,7 @@ var init_grok_runtime = __esm({
|
|
|
34882
34882
|
env: {
|
|
34883
34883
|
...grokRuntimeEnvironment(options.grokHome),
|
|
34884
34884
|
...options.config ? { GROK_CONFIG: JSON.stringify(options.config) } : {},
|
|
34885
|
+
...options.agentName ? { GROK_AGENT: options.agentName } : {},
|
|
34885
34886
|
...typeof grokObject(options.config?.endpoints).cli_chat_proxy_base_url === "string" ? { GROK_CLI_CHAT_PROXY_BASE_URL: String(grokObject(options.config?.endpoints).cli_chat_proxy_base_url) } : {}
|
|
34886
34887
|
},
|
|
34887
34888
|
stdio: ["pipe", "pipe", "pipe"]
|
|
@@ -35540,6 +35541,9 @@ var init_grok_adapter = __esm({
|
|
|
35540
35541
|
binaryPath: binary.path,
|
|
35541
35542
|
grokHome: this.grokHome,
|
|
35542
35543
|
cwd: workspace,
|
|
35544
|
+
// Explicit native selection makes the ACP profile authoritative even
|
|
35545
|
+
// when the remote model catalog recommends a different strict harness.
|
|
35546
|
+
agentName: "grok-build",
|
|
35543
35547
|
config: {
|
|
35544
35548
|
endpoints: { cli_chat_proxy_base_url: proxy.baseUrl },
|
|
35545
35549
|
features: { turn_summary: false, title_refresh: false, telemetry: false, memory: false }
|
|
@@ -35576,11 +35580,6 @@ var init_grok_adapter = __esm({
|
|
|
35576
35580
|
_meta: metadata
|
|
35577
35581
|
}, input.deadlineAtMs, input.signal);
|
|
35578
35582
|
}
|
|
35579
|
-
await session.request("session/set_model", {
|
|
35580
|
-
sessionId,
|
|
35581
|
-
modelId: input.requestedModel,
|
|
35582
|
-
_meta: { reasoningEffort: input.requestedReasoningEffort }
|
|
35583
|
-
}, input.deadlineAtMs, input.signal);
|
|
35584
35583
|
assertSelection(created, input.requestedModel, input.requestedReasoningEffort);
|
|
35585
35584
|
const thread = {
|
|
35586
35585
|
threadId: sessionId,
|