@vm0/cli 9.223.21 → 9.224.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 CHANGED
@@ -40,7 +40,7 @@ import {
40
40
  renderRunCreated,
41
41
  require_dist,
42
42
  showNextSteps
43
- } from "./chunk-WHYOTBW2.js";
43
+ } from "./chunk-RVMGMFEC.js";
44
44
  import "./chunk-WQGXVVFA.js";
45
45
  import "./chunk-DWHYIMCC.js";
46
46
  import "./chunk-Z3LBGHZO.js";
@@ -94,7 +94,7 @@ import {
94
94
  } from "./chunk-JUTUEPIR.js";
95
95
  import {
96
96
  configureGlobalProxyFromEnv
97
- } from "./chunk-TDXNPHY4.js";
97
+ } from "./chunk-4O5XHEIB.js";
98
98
  import "./chunk-LRHXR7JT.js";
99
99
  import {
100
100
  Command,
@@ -432,7 +432,7 @@ function getConfigPath() {
432
432
  return join(os.homedir(), ".vm0", "config.json");
433
433
  }
434
434
  var infoCommand = new Command().name("info").description("Display environment and debug information").action(async () => {
435
- console.log(source_default.bold(`VM0 CLI v${"9.223.21"}`));
435
+ console.log(source_default.bold(`VM0 CLI v${"9.224.0"}`));
436
436
  console.log();
437
437
  const config = await loadConfig();
438
438
  const hasEnvToken = !!process.env.VM0_TOKEN;
@@ -1135,7 +1135,7 @@ var composeCommand = new Command().name("compose").description("Create or update
1135
1135
  options.autoUpdate = false;
1136
1136
  }
1137
1137
  if (options.autoUpdate !== false) {
1138
- await startSilentUpgrade("9.223.21");
1138
+ await startSilentUpgrade("9.224.0");
1139
1139
  }
1140
1140
  try {
1141
1141
  const { config, agentName, agent, basePath } = await loadAndValidateConfig(resolvedConfigFile);
@@ -1232,7 +1232,7 @@ var mainRunCommand = new Command().name("run").description("Run an agent").argum
1232
1232
  withErrorHandler(
1233
1233
  async (identifier, prompt, options) => {
1234
1234
  if (options.autoUpdate !== false) {
1235
- await startSilentUpgrade("9.223.21");
1235
+ await startSilentUpgrade("9.224.0");
1236
1236
  }
1237
1237
  const { name, version } = parseIdentifier(identifier);
1238
1238
  let composeId;
@@ -3091,13 +3091,13 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
3091
3091
  if (latestVersion === null) {
3092
3092
  throw new Error("Could not check for updates. Please try again later.");
3093
3093
  }
3094
- if (latestVersion === "9.223.21") {
3095
- console.log(source_default.green(`\u2713 Already up to date (${"9.223.21"})`));
3094
+ if (latestVersion === "9.224.0") {
3095
+ console.log(source_default.green(`\u2713 Already up to date (${"9.224.0"})`));
3096
3096
  return;
3097
3097
  }
3098
3098
  console.log(
3099
3099
  source_default.yellow(
3100
- `Current version: ${"9.223.21"} -> Latest version: ${latestVersion}`
3100
+ `Current version: ${"9.224.0"} -> Latest version: ${latestVersion}`
3101
3101
  )
3102
3102
  );
3103
3103
  console.log();
@@ -3124,7 +3124,7 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
3124
3124
  const success = await performUpgrade(packageManager);
3125
3125
  if (success) {
3126
3126
  console.log(
3127
- source_default.green(`\u2713 Upgraded from ${"9.223.21"} to ${latestVersion}`)
3127
+ source_default.green(`\u2713 Upgraded from ${"9.224.0"} to ${latestVersion}`)
3128
3128
  );
3129
3129
  return;
3130
3130
  }
@@ -3191,7 +3191,7 @@ var whoamiCommand = new Command().name("whoami").description("Show current ident
3191
3191
 
3192
3192
  // src/index.ts
3193
3193
  var program = new Command();
3194
- program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.223.21");
3194
+ program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.224.0");
3195
3195
  program.addCommand(authCommand);
3196
3196
  program.addCommand(infoCommand);
3197
3197
  program.addCommand(composeCommand);