@vm0/cli 9.119.1 → 9.119.2
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
|
@@ -70,7 +70,7 @@ import {
|
|
|
70
70
|
source_default,
|
|
71
71
|
volumeConfigSchema,
|
|
72
72
|
withErrorHandler
|
|
73
|
-
} from "./chunk-
|
|
73
|
+
} from "./chunk-PS4P6JB6.js";
|
|
74
74
|
import {
|
|
75
75
|
__toESM,
|
|
76
76
|
init_esm_shims
|
|
@@ -403,7 +403,7 @@ function getConfigPath() {
|
|
|
403
403
|
return join(homedir(), ".vm0", "config.json");
|
|
404
404
|
}
|
|
405
405
|
var infoCommand = new Command().name("info").description("Display environment and debug information").action(async () => {
|
|
406
|
-
console.log(source_default.bold(`VM0 CLI v${"9.119.
|
|
406
|
+
console.log(source_default.bold(`VM0 CLI v${"9.119.2"}`));
|
|
407
407
|
console.log();
|
|
408
408
|
const config = await loadConfig();
|
|
409
409
|
const hasEnvToken = !!process.env.VM0_TOKEN;
|
|
@@ -4432,7 +4432,7 @@ var composeCommand = new Command().name("compose").description("Create or update
|
|
|
4432
4432
|
options.autoUpdate = false;
|
|
4433
4433
|
}
|
|
4434
4434
|
if (options.autoUpdate !== false) {
|
|
4435
|
-
await startSilentUpgrade("9.119.
|
|
4435
|
+
await startSilentUpgrade("9.119.2");
|
|
4436
4436
|
}
|
|
4437
4437
|
try {
|
|
4438
4438
|
let result;
|
|
@@ -4517,7 +4517,7 @@ var mainRunCommand = new Command().name("run").description("Run an agent").argum
|
|
|
4517
4517
|
withErrorHandler(
|
|
4518
4518
|
async (identifier, prompt, options) => {
|
|
4519
4519
|
if (options.autoUpdate !== false) {
|
|
4520
|
-
await startSilentUpgrade("9.119.
|
|
4520
|
+
await startSilentUpgrade("9.119.2");
|
|
4521
4521
|
}
|
|
4522
4522
|
const { name, version } = parseIdentifier(identifier);
|
|
4523
4523
|
let composeId;
|
|
@@ -6532,13 +6532,13 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
6532
6532
|
if (latestVersion === null) {
|
|
6533
6533
|
throw new Error("Could not check for updates. Please try again later.");
|
|
6534
6534
|
}
|
|
6535
|
-
if (latestVersion === "9.119.
|
|
6536
|
-
console.log(source_default.green(`\u2713 Already up to date (${"9.119.
|
|
6535
|
+
if (latestVersion === "9.119.2") {
|
|
6536
|
+
console.log(source_default.green(`\u2713 Already up to date (${"9.119.2"})`));
|
|
6537
6537
|
return;
|
|
6538
6538
|
}
|
|
6539
6539
|
console.log(
|
|
6540
6540
|
source_default.yellow(
|
|
6541
|
-
`Current version: ${"9.119.
|
|
6541
|
+
`Current version: ${"9.119.2"} -> Latest version: ${latestVersion}`
|
|
6542
6542
|
)
|
|
6543
6543
|
);
|
|
6544
6544
|
console.log();
|
|
@@ -6565,7 +6565,7 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
6565
6565
|
const success = await performUpgrade(packageManager);
|
|
6566
6566
|
if (success) {
|
|
6567
6567
|
console.log(
|
|
6568
|
-
source_default.green(`\u2713 Upgraded from ${"9.119.
|
|
6568
|
+
source_default.green(`\u2713 Upgraded from ${"9.119.2"} to ${latestVersion}`)
|
|
6569
6569
|
);
|
|
6570
6570
|
return;
|
|
6571
6571
|
}
|
|
@@ -6632,7 +6632,7 @@ var whoamiCommand = new Command().name("whoami").description("Show current ident
|
|
|
6632
6632
|
|
|
6633
6633
|
// src/index.ts
|
|
6634
6634
|
var program = new Command();
|
|
6635
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.119.
|
|
6635
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.119.2");
|
|
6636
6636
|
program.addCommand(authCommand);
|
|
6637
6637
|
program.addCommand(infoCommand);
|
|
6638
6638
|
program.addCommand(composeCommand);
|
package/package.json
CHANGED
package/zero.js
CHANGED
|
@@ -131,7 +131,7 @@ import {
|
|
|
131
131
|
upsertZeroOrgModelProvider,
|
|
132
132
|
withErrorHandler,
|
|
133
133
|
zeroAgentCustomSkillNameSchema
|
|
134
|
-
} from "./chunk-
|
|
134
|
+
} from "./chunk-PS4P6JB6.js";
|
|
135
135
|
import {
|
|
136
136
|
__toESM,
|
|
137
137
|
init_esm_shims
|
|
@@ -6523,7 +6523,7 @@ function registerZeroCommands(prog, commands) {
|
|
|
6523
6523
|
var program = new Command();
|
|
6524
6524
|
program.name("zero").description(
|
|
6525
6525
|
"Zero CLI \u2014 interact with the zero platform from inside the sandbox"
|
|
6526
|
-
).version("9.119.
|
|
6526
|
+
).version("9.119.2").addHelpText(
|
|
6527
6527
|
"after",
|
|
6528
6528
|
`
|
|
6529
6529
|
Examples:
|