@vm0/cli 9.15.0 → 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.
Files changed (2) hide show
  1. package/index.js +5 -6
  2. 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: false
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.0");
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.0");
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.0", prompt);
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.0");
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/cli",
3
- "version": "9.15.0",
3
+ "version": "9.15.2",
4
4
  "description": "CLI application",
5
5
  "repository": {
6
6
  "type": "git",