@vm0/cli 9.15.1 → 9.15.2
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 -5
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -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.2");
|
|
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.2");
|
|
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.2", prompt);
|
|
8778
8778
|
if (shouldExit) {
|
|
8779
8779
|
process.exit(0);
|
|
8780
8780
|
}
|
|
@@ -12202,7 +12202,6 @@ var PRIMARY_SKILL_NAME = "vm0-agent";
|
|
|
12202
12202
|
async function runClaudeCommand(args, cwd) {
|
|
12203
12203
|
return new Promise((resolve) => {
|
|
12204
12204
|
const child = spawn3("claude", args, {
|
|
12205
|
-
shell: true,
|
|
12206
12205
|
stdio: ["inherit", "pipe", "pipe"],
|
|
12207
12206
|
cwd
|
|
12208
12207
|
});
|
|
@@ -12557,7 +12556,7 @@ var setupClaudeCommand = new Command58().name("setup-claude").description("Insta
|
|
|
12557
12556
|
|
|
12558
12557
|
// src/index.ts
|
|
12559
12558
|
var program = new Command59();
|
|
12560
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.15.
|
|
12559
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.15.2");
|
|
12561
12560
|
program.addCommand(authCommand);
|
|
12562
12561
|
program.addCommand(infoCommand);
|
|
12563
12562
|
program.addCommand(composeCommand);
|