@vm0/cli 9.17.0 → 9.17.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 +4 -10
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -3470,15 +3470,9 @@ function getLegacySystemTemplateWarning(legacyFormat) {
|
|
|
3470
3470
|
if (legacyFormat === "vm0-claude-code") {
|
|
3471
3471
|
return `Warning: "${legacyFormat}" format is deprecated. Use "vm0/claude-code" instead.`;
|
|
3472
3472
|
}
|
|
3473
|
-
if (legacyFormat === "vm0-claude-code-dev") {
|
|
3474
|
-
return `Warning: "${legacyFormat}" format is deprecated. Use "vm0/claude-code:dev" instead.`;
|
|
3475
|
-
}
|
|
3476
3473
|
if (legacyFormat === "vm0-codex") {
|
|
3477
3474
|
return `Warning: "${legacyFormat}" format is deprecated. Use "vm0/codex" instead.`;
|
|
3478
3475
|
}
|
|
3479
|
-
if (legacyFormat === "vm0-codex-dev") {
|
|
3480
|
-
return `Warning: "${legacyFormat}" format is deprecated. Use "vm0/codex:dev" instead.`;
|
|
3481
|
-
}
|
|
3482
3476
|
if (legacyFormat.startsWith("vm0-github-cli")) {
|
|
3483
3477
|
return `Warning: "${legacyFormat}" is deprecated. Use "apps: [github]" in vm0.yaml instead.`;
|
|
3484
3478
|
}
|
|
@@ -5183,7 +5177,7 @@ var composeCommand = new Command7().name("compose").description("Create or updat
|
|
|
5183
5177
|
)
|
|
5184
5178
|
);
|
|
5185
5179
|
if (options.autoUpdate !== false) {
|
|
5186
|
-
await silentUpgradeAfterCommand("9.17.
|
|
5180
|
+
await silentUpgradeAfterCommand("9.17.1");
|
|
5187
5181
|
}
|
|
5188
5182
|
} catch (error) {
|
|
5189
5183
|
if (error instanceof Error) {
|
|
@@ -7414,7 +7408,7 @@ var mainRunCommand = new Command8().name("run").description("Run an agent").argu
|
|
|
7414
7408
|
}
|
|
7415
7409
|
showNextSteps(result);
|
|
7416
7410
|
if (options.autoUpdate !== false) {
|
|
7417
|
-
await silentUpgradeAfterCommand("9.17.
|
|
7411
|
+
await silentUpgradeAfterCommand("9.17.1");
|
|
7418
7412
|
}
|
|
7419
7413
|
} catch (error) {
|
|
7420
7414
|
handleRunError(error, identifier);
|
|
@@ -8920,7 +8914,7 @@ var cookAction = new Command27().name("cook").description("Quick start: prepare,
|
|
|
8920
8914
|
).option("-y, --yes", "Skip confirmation prompts").option("-v, --verbose", "Show full tool inputs and outputs").addOption(new Option5("--debug-no-mock-claude").hideHelp()).addOption(new Option5("--no-auto-update").hideHelp()).action(
|
|
8921
8915
|
async (prompt, options) => {
|
|
8922
8916
|
if (options.autoUpdate !== false) {
|
|
8923
|
-
const shouldExit = await checkAndUpgrade("9.17.
|
|
8917
|
+
const shouldExit = await checkAndUpgrade("9.17.1", prompt);
|
|
8924
8918
|
if (shouldExit) {
|
|
8925
8919
|
process.exit(0);
|
|
8926
8920
|
}
|
|
@@ -12703,7 +12697,7 @@ var setupClaudeCommand = new Command58().name("setup-claude").description("Insta
|
|
|
12703
12697
|
|
|
12704
12698
|
// src/index.ts
|
|
12705
12699
|
var program = new Command59();
|
|
12706
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.17.
|
|
12700
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.17.1");
|
|
12707
12701
|
program.addCommand(authCommand);
|
|
12708
12702
|
program.addCommand(infoCommand);
|
|
12709
12703
|
program.addCommand(composeCommand);
|