@vm0/cli 9.146.0 → 9.146.1
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
|
@@ -67,7 +67,7 @@ import {
|
|
|
67
67
|
source_default,
|
|
68
68
|
volumeConfigSchema,
|
|
69
69
|
withErrorHandler
|
|
70
|
-
} from "./chunk-
|
|
70
|
+
} from "./chunk-DQVPONJ6.js";
|
|
71
71
|
import {
|
|
72
72
|
__toESM,
|
|
73
73
|
init_esm_shims
|
|
@@ -386,7 +386,7 @@ function getConfigPath() {
|
|
|
386
386
|
return join(os.homedir(), ".vm0", "config.json");
|
|
387
387
|
}
|
|
388
388
|
var infoCommand = new Command().name("info").description("Display environment and debug information").action(async () => {
|
|
389
|
-
console.log(source_default.bold(`VM0 CLI v${"9.146.
|
|
389
|
+
console.log(source_default.bold(`VM0 CLI v${"9.146.1"}`));
|
|
390
390
|
console.log();
|
|
391
391
|
const config = await loadConfig();
|
|
392
392
|
const hasEnvToken = !!process.env.VM0_TOKEN;
|
|
@@ -4279,7 +4279,7 @@ var composeCommand = new Command().name("compose").description("Create or update
|
|
|
4279
4279
|
options.autoUpdate = false;
|
|
4280
4280
|
}
|
|
4281
4281
|
if (options.autoUpdate !== false) {
|
|
4282
|
-
await startSilentUpgrade("9.146.
|
|
4282
|
+
await startSilentUpgrade("9.146.1");
|
|
4283
4283
|
}
|
|
4284
4284
|
try {
|
|
4285
4285
|
let result;
|
|
@@ -4371,7 +4371,7 @@ var mainRunCommand = new Command().name("run").description("Run an agent").argum
|
|
|
4371
4371
|
withErrorHandler(
|
|
4372
4372
|
async (identifier, prompt, options) => {
|
|
4373
4373
|
if (options.autoUpdate !== false) {
|
|
4374
|
-
await startSilentUpgrade("9.146.
|
|
4374
|
+
await startSilentUpgrade("9.146.1");
|
|
4375
4375
|
}
|
|
4376
4376
|
const { name, version } = parseIdentifier(identifier);
|
|
4377
4377
|
let composeId;
|
|
@@ -6158,13 +6158,13 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
6158
6158
|
if (latestVersion === null) {
|
|
6159
6159
|
throw new Error("Could not check for updates. Please try again later.");
|
|
6160
6160
|
}
|
|
6161
|
-
if (latestVersion === "9.146.
|
|
6162
|
-
console.log(source_default.green(`\u2713 Already up to date (${"9.146.
|
|
6161
|
+
if (latestVersion === "9.146.1") {
|
|
6162
|
+
console.log(source_default.green(`\u2713 Already up to date (${"9.146.1"})`));
|
|
6163
6163
|
return;
|
|
6164
6164
|
}
|
|
6165
6165
|
console.log(
|
|
6166
6166
|
source_default.yellow(
|
|
6167
|
-
`Current version: ${"9.146.
|
|
6167
|
+
`Current version: ${"9.146.1"} -> Latest version: ${latestVersion}`
|
|
6168
6168
|
)
|
|
6169
6169
|
);
|
|
6170
6170
|
console.log();
|
|
@@ -6191,7 +6191,7 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
6191
6191
|
const success = await performUpgrade(packageManager);
|
|
6192
6192
|
if (success) {
|
|
6193
6193
|
console.log(
|
|
6194
|
-
source_default.green(`\u2713 Upgraded from ${"9.146.
|
|
6194
|
+
source_default.green(`\u2713 Upgraded from ${"9.146.1"} to ${latestVersion}`)
|
|
6195
6195
|
);
|
|
6196
6196
|
return;
|
|
6197
6197
|
}
|
|
@@ -6258,7 +6258,7 @@ var whoamiCommand = new Command().name("whoami").description("Show current ident
|
|
|
6258
6258
|
|
|
6259
6259
|
// src/index.ts
|
|
6260
6260
|
var program = new Command();
|
|
6261
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.146.
|
|
6261
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.146.1");
|
|
6262
6262
|
program.addCommand(authCommand);
|
|
6263
6263
|
program.addCommand(infoCommand);
|
|
6264
6264
|
program.addCommand(composeCommand);
|
package/package.json
CHANGED
package/zero.js
CHANGED
|
@@ -129,7 +129,7 @@ import {
|
|
|
129
129
|
withErrorHandler,
|
|
130
130
|
zeroAgentCustomSkillNameSchema,
|
|
131
131
|
zeroRemoteAgentCommand
|
|
132
|
-
} from "./chunk-
|
|
132
|
+
} from "./chunk-DQVPONJ6.js";
|
|
133
133
|
import {
|
|
134
134
|
__toESM,
|
|
135
135
|
init_esm_shims
|
|
@@ -7469,7 +7469,7 @@ function registerZeroCommands(prog, commands) {
|
|
|
7469
7469
|
var program = new Command();
|
|
7470
7470
|
program.name("zero").description(
|
|
7471
7471
|
"Zero CLI \u2014 interact with the zero platform from inside the sandbox"
|
|
7472
|
-
).version("9.146.
|
|
7472
|
+
).version("9.146.1").addHelpText(
|
|
7473
7473
|
"after",
|
|
7474
7474
|
`
|
|
7475
7475
|
Examples:
|