@vm0/cli 7.0.2 → 7.1.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 +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -7925,12 +7925,12 @@ async function autoPullArtifact(runOutput, artifactDir) {
|
|
|
7925
7925
|
}
|
|
7926
7926
|
}
|
|
7927
7927
|
}
|
|
7928
|
-
var cookCmd = new Command19().name("cook").description("
|
|
7928
|
+
var cookCmd = new Command19().name("cook").description("Quick start: prepare, compose and run agent from vm0.yaml");
|
|
7929
7929
|
cookCmd.argument("[prompt]", "Prompt for the agent").option("-y, --yes", "Skip confirmation prompts").addOption(new Option4("--debug-no-mock-claude").hideHelp()).addOption(new Option4("--no-auto-update").hideHelp()).action(
|
|
7930
7930
|
// eslint-disable-next-line complexity -- TODO: refactor complex function
|
|
7931
7931
|
async (prompt, options) => {
|
|
7932
7932
|
if (!options.noAutoUpdate) {
|
|
7933
|
-
const shouldExit = await checkAndUpgrade("7.0
|
|
7933
|
+
const shouldExit = await checkAndUpgrade("7.1.0", prompt);
|
|
7934
7934
|
if (shouldExit) {
|
|
7935
7935
|
process.exit(0);
|
|
7936
7936
|
}
|
|
@@ -11096,7 +11096,7 @@ var modelProviderCommand = new Command46().name("model-provider").description("M
|
|
|
11096
11096
|
|
|
11097
11097
|
// src/index.ts
|
|
11098
11098
|
var program = new Command47();
|
|
11099
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("7.0
|
|
11099
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("7.1.0");
|
|
11100
11100
|
program.command("info").description("Display environment information").action(async () => {
|
|
11101
11101
|
console.log(chalk47.bold("System Information:"));
|
|
11102
11102
|
console.log(`Node Version: ${process.version}`);
|