@vm0/cli 9.8.0 → 9.9.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 +8 -7
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -8463,7 +8463,7 @@ var cookAction = new Command27().name("cook").description("Quick start: prepare,
|
|
|
8463
8463
|
).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(
|
|
8464
8464
|
async (prompt, options) => {
|
|
8465
8465
|
if (!options.noAutoUpdate) {
|
|
8466
|
-
const shouldExit = await checkAndUpgrade("9.
|
|
8466
|
+
const shouldExit = await checkAndUpgrade("9.9.0", prompt);
|
|
8467
8467
|
if (shouldExit) {
|
|
8468
8468
|
process.exit(0);
|
|
8469
8469
|
}
|
|
@@ -11092,9 +11092,9 @@ var gradientColors = [
|
|
|
11092
11092
|
];
|
|
11093
11093
|
var vm0LogoLines = [
|
|
11094
11094
|
"\u2588\u2588\u2557 \u2588\u2588\u2557\u2588\u2588\u2588\u2557 \u2588\u2588\u2588\u2557 \u2588\u2588\u2588\u2588\u2588\u2588\u2557 ",
|
|
11095
|
-
"\u2588\u2588\u2551 \u2588\u2588\u2551\u2588\u2588\u2588\u2588\u2557 \u2588\u2588\u2588\u2588\u2551\u2588\u2588\u2554\u2550\
|
|
11096
|
-
"\u2588\u2588\u2551 \u2588\u2588\u2551\u2588\u2588\u2554\u2588\u2588\u2588\u2588\u2554\u2588\u2588\u2551\u2588\u2588\u2551
|
|
11097
|
-
"\u255A\u2588\u2588\u2557 \u2588\u2588\u2554\u255D\u2588\u2588\u2551\u255A\u2588\u2588\u2554\u255D\u2588\u2588\u2551\u2588\u2588\
|
|
11095
|
+
"\u2588\u2588\u2551 \u2588\u2588\u2551\u2588\u2588\u2588\u2588\u2557 \u2588\u2588\u2588\u2588\u2551\u2588\u2588\u2554\u2550\u2588\u2588\u2588\u2588\u2557",
|
|
11096
|
+
"\u2588\u2588\u2551 \u2588\u2588\u2551\u2588\u2588\u2554\u2588\u2588\u2588\u2588\u2554\u2588\u2588\u2551\u2588\u2588\u2551\u2588\u2588\u2554\u2588\u2588\u2551",
|
|
11097
|
+
"\u255A\u2588\u2588\u2557 \u2588\u2588\u2554\u255D\u2588\u2588\u2551\u255A\u2588\u2588\u2554\u255D\u2588\u2588\u2551\u2588\u2588\u2588\u2588\u2554\u255D\u2588\u2588\u2551",
|
|
11098
11098
|
" \u255A\u2588\u2588\u2588\u2588\u2554\u255D \u2588\u2588\u2551 \u255A\u2550\u255D \u2588\u2588\u2551\u255A\u2588\u2588\u2588\u2588\u2588\u2588\u2554\u255D",
|
|
11099
11099
|
" \u255A\u2550\u2550\u2550\u255D \u255A\u2550\u255D \u255A\u2550\u255D \u255A\u2550\u2550\u2550\u2550\u2550\u255D "
|
|
11100
11100
|
];
|
|
@@ -11108,9 +11108,10 @@ function renderVm0Banner() {
|
|
|
11108
11108
|
}
|
|
11109
11109
|
function renderOnboardWelcome() {
|
|
11110
11110
|
renderVm0Banner();
|
|
11111
|
-
console.log(`
|
|
11111
|
+
console.log(` Build agentic workflows using natural language.`);
|
|
11112
|
+
console.log(` ${chalk54.dim("Currently in beta, enjoy it free.")}`);
|
|
11112
11113
|
console.log(
|
|
11113
|
-
` ${chalk54.dim("
|
|
11114
|
+
` ${chalk54.dim("Star us on GitHub: https://github.com/vm0-ai/vm0")}`
|
|
11114
11115
|
);
|
|
11115
11116
|
console.log();
|
|
11116
11117
|
}
|
|
@@ -11639,7 +11640,7 @@ var setupClaudeCommand = new Command57().name("setup-claude").description("Insta
|
|
|
11639
11640
|
|
|
11640
11641
|
// src/index.ts
|
|
11641
11642
|
var program = new Command58();
|
|
11642
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.
|
|
11643
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.9.0");
|
|
11643
11644
|
program.addCommand(authCommand);
|
|
11644
11645
|
program.addCommand(infoCommand);
|
|
11645
11646
|
program.addCommand(composeCommand);
|