@vm0/cli 9.127.2 → 9.127.3
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/index.js
CHANGED
|
@@ -65,7 +65,7 @@ import {
|
|
|
65
65
|
source_default,
|
|
66
66
|
volumeConfigSchema,
|
|
67
67
|
withErrorHandler
|
|
68
|
-
} from "./chunk-
|
|
68
|
+
} from "./chunk-IVIZPEM6.js";
|
|
69
69
|
import {
|
|
70
70
|
__toESM,
|
|
71
71
|
init_esm_shims
|
|
@@ -398,7 +398,7 @@ function getConfigPath() {
|
|
|
398
398
|
return join(homedir(), ".vm0", "config.json");
|
|
399
399
|
}
|
|
400
400
|
var infoCommand = new Command().name("info").description("Display environment and debug information").action(async () => {
|
|
401
|
-
console.log(source_default.bold(`VM0 CLI v${"9.127.
|
|
401
|
+
console.log(source_default.bold(`VM0 CLI v${"9.127.3"}`));
|
|
402
402
|
console.log();
|
|
403
403
|
const config = await loadConfig();
|
|
404
404
|
const hasEnvToken = !!process.env.VM0_TOKEN;
|
|
@@ -4291,7 +4291,7 @@ var composeCommand = new Command().name("compose").description("Create or update
|
|
|
4291
4291
|
options.autoUpdate = false;
|
|
4292
4292
|
}
|
|
4293
4293
|
if (options.autoUpdate !== false) {
|
|
4294
|
-
await startSilentUpgrade("9.127.
|
|
4294
|
+
await startSilentUpgrade("9.127.3");
|
|
4295
4295
|
}
|
|
4296
4296
|
try {
|
|
4297
4297
|
let result;
|
|
@@ -4381,7 +4381,7 @@ var mainRunCommand = new Command().name("run").description("Run an agent").argum
|
|
|
4381
4381
|
withErrorHandler(
|
|
4382
4382
|
async (identifier, prompt, options) => {
|
|
4383
4383
|
if (options.autoUpdate !== false) {
|
|
4384
|
-
await startSilentUpgrade("9.127.
|
|
4384
|
+
await startSilentUpgrade("9.127.3");
|
|
4385
4385
|
}
|
|
4386
4386
|
const { name, version } = parseIdentifier(identifier);
|
|
4387
4387
|
let composeId;
|
|
@@ -6396,13 +6396,13 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
6396
6396
|
if (latestVersion === null) {
|
|
6397
6397
|
throw new Error("Could not check for updates. Please try again later.");
|
|
6398
6398
|
}
|
|
6399
|
-
if (latestVersion === "9.127.
|
|
6400
|
-
console.log(source_default.green(`\u2713 Already up to date (${"9.127.
|
|
6399
|
+
if (latestVersion === "9.127.3") {
|
|
6400
|
+
console.log(source_default.green(`\u2713 Already up to date (${"9.127.3"})`));
|
|
6401
6401
|
return;
|
|
6402
6402
|
}
|
|
6403
6403
|
console.log(
|
|
6404
6404
|
source_default.yellow(
|
|
6405
|
-
`Current version: ${"9.127.
|
|
6405
|
+
`Current version: ${"9.127.3"} -> Latest version: ${latestVersion}`
|
|
6406
6406
|
)
|
|
6407
6407
|
);
|
|
6408
6408
|
console.log();
|
|
@@ -6429,7 +6429,7 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
6429
6429
|
const success = await performUpgrade(packageManager);
|
|
6430
6430
|
if (success) {
|
|
6431
6431
|
console.log(
|
|
6432
|
-
source_default.green(`\u2713 Upgraded from ${"9.127.
|
|
6432
|
+
source_default.green(`\u2713 Upgraded from ${"9.127.3"} to ${latestVersion}`)
|
|
6433
6433
|
);
|
|
6434
6434
|
return;
|
|
6435
6435
|
}
|
|
@@ -6496,7 +6496,7 @@ var whoamiCommand = new Command().name("whoami").description("Show current ident
|
|
|
6496
6496
|
|
|
6497
6497
|
// src/index.ts
|
|
6498
6498
|
var program = new Command();
|
|
6499
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.127.
|
|
6499
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.127.3");
|
|
6500
6500
|
program.addCommand(authCommand);
|
|
6501
6501
|
program.addCommand(infoCommand);
|
|
6502
6502
|
program.addCommand(composeCommand);
|
package/package.json
CHANGED
package/zero.js
CHANGED
|
@@ -127,7 +127,7 @@ import {
|
|
|
127
127
|
upsertZeroOrgModelProvider,
|
|
128
128
|
withErrorHandler,
|
|
129
129
|
zeroAgentCustomSkillNameSchema
|
|
130
|
-
} from "./chunk-
|
|
130
|
+
} from "./chunk-IVIZPEM6.js";
|
|
131
131
|
import {
|
|
132
132
|
__toESM,
|
|
133
133
|
init_esm_shims
|
|
@@ -6582,7 +6582,7 @@ function registerZeroCommands(prog, commands) {
|
|
|
6582
6582
|
var program = new Command();
|
|
6583
6583
|
program.name("zero").description(
|
|
6584
6584
|
"Zero CLI \u2014 interact with the zero platform from inside the sandbox"
|
|
6585
|
-
).version("9.127.
|
|
6585
|
+
).version("9.127.3").addHelpText(
|
|
6586
6586
|
"after",
|
|
6587
6587
|
`
|
|
6588
6588
|
Examples:
|