@vm0/cli 9.131.2 → 9.131.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-REI7AIMY.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.131.
|
|
401
|
+
console.log(source_default.bold(`VM0 CLI v${"9.131.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.131.
|
|
4294
|
+
await startSilentUpgrade("9.131.3");
|
|
4295
4295
|
}
|
|
4296
4296
|
try {
|
|
4297
4297
|
let result;
|
|
@@ -4383,7 +4383,7 @@ var mainRunCommand = new Command().name("run").description("Run an agent").argum
|
|
|
4383
4383
|
withErrorHandler(
|
|
4384
4384
|
async (identifier, prompt, options) => {
|
|
4385
4385
|
if (options.autoUpdate !== false) {
|
|
4386
|
-
await startSilentUpgrade("9.131.
|
|
4386
|
+
await startSilentUpgrade("9.131.3");
|
|
4387
4387
|
}
|
|
4388
4388
|
const { name, version } = parseIdentifier(identifier);
|
|
4389
4389
|
let composeId;
|
|
@@ -6156,13 +6156,13 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
6156
6156
|
if (latestVersion === null) {
|
|
6157
6157
|
throw new Error("Could not check for updates. Please try again later.");
|
|
6158
6158
|
}
|
|
6159
|
-
if (latestVersion === "9.131.
|
|
6160
|
-
console.log(source_default.green(`\u2713 Already up to date (${"9.131.
|
|
6159
|
+
if (latestVersion === "9.131.3") {
|
|
6160
|
+
console.log(source_default.green(`\u2713 Already up to date (${"9.131.3"})`));
|
|
6161
6161
|
return;
|
|
6162
6162
|
}
|
|
6163
6163
|
console.log(
|
|
6164
6164
|
source_default.yellow(
|
|
6165
|
-
`Current version: ${"9.131.
|
|
6165
|
+
`Current version: ${"9.131.3"} -> Latest version: ${latestVersion}`
|
|
6166
6166
|
)
|
|
6167
6167
|
);
|
|
6168
6168
|
console.log();
|
|
@@ -6189,7 +6189,7 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
6189
6189
|
const success = await performUpgrade(packageManager);
|
|
6190
6190
|
if (success) {
|
|
6191
6191
|
console.log(
|
|
6192
|
-
source_default.green(`\u2713 Upgraded from ${"9.131.
|
|
6192
|
+
source_default.green(`\u2713 Upgraded from ${"9.131.3"} to ${latestVersion}`)
|
|
6193
6193
|
);
|
|
6194
6194
|
return;
|
|
6195
6195
|
}
|
|
@@ -6256,7 +6256,7 @@ var whoamiCommand = new Command().name("whoami").description("Show current ident
|
|
|
6256
6256
|
|
|
6257
6257
|
// src/index.ts
|
|
6258
6258
|
var program = new Command();
|
|
6259
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.131.
|
|
6259
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.131.3");
|
|
6260
6260
|
program.addCommand(authCommand);
|
|
6261
6261
|
program.addCommand(infoCommand);
|
|
6262
6262
|
program.addCommand(composeCommand);
|
package/package.json
CHANGED
package/zero.js
CHANGED
|
@@ -125,7 +125,7 @@ import {
|
|
|
125
125
|
upsertZeroOrgModelProvider,
|
|
126
126
|
withErrorHandler,
|
|
127
127
|
zeroAgentCustomSkillNameSchema
|
|
128
|
-
} from "./chunk-
|
|
128
|
+
} from "./chunk-REI7AIMY.js";
|
|
129
129
|
import {
|
|
130
130
|
__toESM,
|
|
131
131
|
init_esm_shims
|
|
@@ -6757,7 +6757,7 @@ function registerZeroCommands(prog, commands) {
|
|
|
6757
6757
|
var program = new Command();
|
|
6758
6758
|
program.name("zero").description(
|
|
6759
6759
|
"Zero CLI \u2014 interact with the zero platform from inside the sandbox"
|
|
6760
|
-
).version("9.131.
|
|
6760
|
+
).version("9.131.3").addHelpText(
|
|
6761
6761
|
"after",
|
|
6762
6762
|
`
|
|
6763
6763
|
Examples:
|