@vtxmacro/cli 2026.9.10 → 2026.9.11
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/bin/vtx-service-bootstrap.js +10 -21
- package/bin/vtx.js +1 -1
- package/package.json +1 -1
|
@@ -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.11",
|
|
20
20
|
codex_package_name: "@openai/codex",
|
|
21
21
|
codex_version: "0.147.0",
|
|
22
22
|
copilot_sdk_package_name: "@github/copilot-sdk",
|
|
@@ -1088,27 +1088,16 @@ var defaultRunCommand = async (command, args) => await new Promise((resolvePromi
|
|
|
1088
1088
|
stderr: Buffer.concat(stderr).toString("utf8")
|
|
1089
1089
|
}));
|
|
1090
1090
|
});
|
|
1091
|
-
var encodedPowerShell = (script) => [
|
|
1092
|
-
"-NoLogo",
|
|
1093
|
-
"-NoProfile",
|
|
1094
|
-
"-NonInteractive",
|
|
1095
|
-
"-EncodedCommand",
|
|
1096
|
-
Buffer.from(script, "utf16le").toString("base64")
|
|
1097
|
-
];
|
|
1098
1091
|
var runInferenceHostBootstrapNpmCommand = async (executable, args, platform = process.platform, runCommand = defaultRunCommand) => {
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
"
|
|
1104
|
-
|
|
1105
|
-
"
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
"if($null -eq $code){$code=1}",
|
|
1109
|
-
"exit $code"
|
|
1110
|
-
].join(";");
|
|
1111
|
-
return await runCommand("powershell.exe", encodedPowerShell(script));
|
|
1092
|
+
if (platform !== "win32") return await runCommand(join2(dirname2(executable), "npm"), args);
|
|
1093
|
+
const npmScript = windowsPath2.join(
|
|
1094
|
+
windowsPath2.dirname(executable),
|
|
1095
|
+
"node_modules",
|
|
1096
|
+
"npm",
|
|
1097
|
+
"bin",
|
|
1098
|
+
"npm-cli.js"
|
|
1099
|
+
);
|
|
1100
|
+
return await runCommand(executable, [npmScript, ...args]);
|
|
1112
1101
|
};
|
|
1113
1102
|
var defaultRunSupervisor = (executable, args) => {
|
|
1114
1103
|
const child = spawn2(executable, [...args], {
|
package/bin/vtx.js
CHANGED
|
@@ -47,7 +47,7 @@ var init_agent_cli_release = __esm({
|
|
|
47
47
|
"agent-cli-release.json"() {
|
|
48
48
|
agent_cli_release_default = {
|
|
49
49
|
package_name: "@vtxmacro/cli",
|
|
50
|
-
package_version: "2026.9.
|
|
50
|
+
package_version: "2026.9.11",
|
|
51
51
|
codex_package_name: "@openai/codex",
|
|
52
52
|
codex_version: "0.147.0",
|
|
53
53
|
copilot_sdk_package_name: "@github/copilot-sdk",
|