@vtxmacro/cli 2026.9.13 → 2026.9.14

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 CHANGED
@@ -10,8 +10,8 @@ vtx --version
10
10
  ```
11
11
 
12
12
  The host supports Windows x64 and Linux x64, including WSL. The package installs
13
- the exact supported OpenAI Codex runtime, GitHub Copilot SDK, and official
14
- DeepSeek Harness package wave. The VTX host
13
+ the exact supported OpenAI Codex runtime, GitHub Copilot SDK, official
14
+ DeepSeek Harness package wave, and Pi SDK package wave. 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,10 +70,10 @@ 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
- An explicitly capable durable Codex, Copilot, or DeepSeek Harness model can also
73
+ An explicitly capable durable Codex, Copilot, DeepSeek Harness, or Pi model can also
74
74
  control Main in **Agent** mode using the same VTX OAuth grant and its own local
75
- adapter-specific vendor credential: ChatGPT or Copilot login, or a DeepSeek API
76
- key. VTX assigns the running bot but does not send a VTX-authored prompt or set
75
+ adapter-specific vendor credential: ChatGPT or Copilot login, or a DeepSeek or
76
+ Pi provider API key. VTX assigns the running bot but does not send a VTX-authored prompt or set
77
77
  the analysis cadence. The assigned runtime keeps a durable Agent thread,
78
78
  chooses when to wake, requests only the assignment-scoped VTX data it needs (or
79
79
  none), and submits the normal structured decision for VTX to validate and
@@ -134,6 +134,27 @@ instance after reconciling an ambiguous fence. An authentication fence clears
134
134
  only after a successful replacement key import. Quota and rate-limit failures
135
135
  honor their provider retry time or a bounded local cooldown.
136
136
 
137
+ For Pi, use a separate instance and import one provider API key privately:
138
+
139
+ ```bash
140
+ vtx inference-host login --instance pi-1
141
+ vtx inference-host pi-login --provider openai --instance pi-1 < /private/path/provider.key
142
+ vtx inference-host doctor --adapter pi --instance pi-1 --json
143
+ vtx inference-host service install --adapter pi --instance pi-1
144
+ ```
145
+
146
+ Pi uses the package-owned SDK and exact provider/model identities. The existing
147
+ Provider / Agent controls apply: Provider receives VTX's prompt and has no
148
+ tools; Main Agent keeps an isolated session and only the three VTX tools.
149
+ The initial qualified models use an OpenAI API key; the release embeds VTX's
150
+ configured exact model IDs and SDK capability mappings. API compatibility alone
151
+ does not qualify a provider. Ordinary Pi
152
+ credentials, extensions, project instructions, and sessions are not imported.
153
+ Subscription OAuth is not enabled by this adapter. Calls with uncertain
154
+ outcomes remain fenced after restart; conversation persistence does not imply
155
+ same-attempt recovery. Uninstall the exact service instance and settle pending
156
+ work before removing its key with `pi-logout --instance pi-1`.
157
+
137
158
  To connect another Codex subscription to the same VTX account, repeat the
138
159
  login and service-install commands with a stable local name such as
139
160
  `--instance codex-2`. Each named instance has an isolated VTX grant, Codex
@@ -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.13",
19
+ package_version: "2026.9.14",
20
20
  codex_package_name: "@openai/codex",
21
21
  codex_version: "0.153.3",
22
22
  copilot_sdk_package_name: "@github/copilot-sdk",
@@ -90,7 +90,16 @@ var agent_cli_release_default = {
90
90
  binary_name: "codex.exe",
91
91
  sha256: "e5ef3c4b81d2fb861f3731c91a773d45a1973c6a0b480d6449f80bc8fd749e96"
92
92
  }
93
- }
93
+ },
94
+ pi_coding_agent_package_name: "@earendil-works/pi-coding-agent",
95
+ pi_ai_package_name: "@earendil-works/pi-ai",
96
+ pi_version: "0.85.1",
97
+ pi_support_packages: [
98
+ "@earendil-works/pi-agent-core",
99
+ "@earendil-works/pi-telemetry",
100
+ "@earendil-works/pi-tui",
101
+ "@earendil-works/chord"
102
+ ]
94
103
  };
95
104
 
96
105
  // lib/inference-host/config.ts