@vm0/cli 9.6.2 → 9.7.0
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 +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -8419,7 +8419,7 @@ var cookAction = new Command27().name("cook").description("Quick start: prepare,
|
|
|
8419
8419
|
).option("-y, --yes", "Skip confirmation prompts").option("-v, --verbose", "Show full tool inputs and outputs").addOption(new Option4("--debug-no-mock-claude").hideHelp()).addOption(new Option4("--no-auto-update").hideHelp()).action(
|
|
8420
8420
|
async (prompt, options) => {
|
|
8421
8421
|
if (!options.noAutoUpdate) {
|
|
8422
|
-
const shouldExit = await checkAndUpgrade("9.
|
|
8422
|
+
const shouldExit = await checkAndUpgrade("9.7.0", prompt);
|
|
8423
8423
|
if (shouldExit) {
|
|
8424
8424
|
process.exit(0);
|
|
8425
8425
|
}
|
|
@@ -11575,7 +11575,7 @@ var setupClaudeCommand = new Command57().name("setup-claude").description("Insta
|
|
|
11575
11575
|
|
|
11576
11576
|
// src/index.ts
|
|
11577
11577
|
var program = new Command58();
|
|
11578
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.
|
|
11578
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.7.0");
|
|
11579
11579
|
program.addCommand(authCommand);
|
|
11580
11580
|
program.addCommand(infoCommand);
|
|
11581
11581
|
program.addCommand(composeCommand);
|