@vm0/cli 9.15.0 → 9.15.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 +5 -5
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -3422,7 +3422,7 @@ var FEATURE_SWITCHES = {
|
|
|
3422
3422
|
},
|
|
3423
3423
|
["platformAgents" /* PlatformAgents */]: {
|
|
3424
3424
|
maintainer: "ethan@vm0.ai",
|
|
3425
|
-
enabled:
|
|
3425
|
+
enabled: true
|
|
3426
3426
|
},
|
|
3427
3427
|
["platformSecrets" /* PlatformSecrets */]: {
|
|
3428
3428
|
maintainer: "ethan@vm0.ai",
|
|
@@ -5037,7 +5037,7 @@ var composeCommand = new Command7().name("compose").description("Create or updat
|
|
|
5037
5037
|
)
|
|
5038
5038
|
);
|
|
5039
5039
|
if (options.autoUpdate !== false) {
|
|
5040
|
-
await silentUpgradeAfterCommand("9.15.
|
|
5040
|
+
await silentUpgradeAfterCommand("9.15.1");
|
|
5041
5041
|
}
|
|
5042
5042
|
} catch (error) {
|
|
5043
5043
|
if (error instanceof Error) {
|
|
@@ -7268,7 +7268,7 @@ var mainRunCommand = new Command8().name("run").description("Run an agent").argu
|
|
|
7268
7268
|
}
|
|
7269
7269
|
showNextSteps(result);
|
|
7270
7270
|
if (options.autoUpdate !== false) {
|
|
7271
|
-
await silentUpgradeAfterCommand("9.15.
|
|
7271
|
+
await silentUpgradeAfterCommand("9.15.1");
|
|
7272
7272
|
}
|
|
7273
7273
|
} catch (error) {
|
|
7274
7274
|
handleRunError(error, identifier);
|
|
@@ -8774,7 +8774,7 @@ var cookAction = new Command27().name("cook").description("Quick start: prepare,
|
|
|
8774
8774
|
).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(
|
|
8775
8775
|
async (prompt, options) => {
|
|
8776
8776
|
if (options.autoUpdate !== false) {
|
|
8777
|
-
const shouldExit = await checkAndUpgrade("9.15.
|
|
8777
|
+
const shouldExit = await checkAndUpgrade("9.15.1", prompt);
|
|
8778
8778
|
if (shouldExit) {
|
|
8779
8779
|
process.exit(0);
|
|
8780
8780
|
}
|
|
@@ -12557,7 +12557,7 @@ var setupClaudeCommand = new Command58().name("setup-claude").description("Insta
|
|
|
12557
12557
|
|
|
12558
12558
|
// src/index.ts
|
|
12559
12559
|
var program = new Command59();
|
|
12560
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.15.
|
|
12560
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.15.1");
|
|
12561
12561
|
program.addCommand(authCommand);
|
|
12562
12562
|
program.addCommand(infoCommand);
|
|
12563
12563
|
program.addCommand(composeCommand);
|