@vm0/cli 9.29.4 → 9.29.5

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 +8 -8
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -44,8 +44,8 @@ function isOperationalError(error) {
44
44
  if (DSN) {
45
45
  Sentry.init({
46
46
  dsn: DSN,
47
- environment: process.env.SENTRY_ENVIRONMENT || "production",
48
- release: "9.29.4",
47
+ environment: process.env.SENTRY_ENVIRONMENT ?? "production",
48
+ release: "9.29.5",
49
49
  sendDefaultPii: false,
50
50
  tracesSampleRate: 0,
51
51
  shutdownTimeout: 500,
@@ -64,7 +64,7 @@ if (DSN) {
64
64
  }
65
65
  });
66
66
  Sentry.setContext("cli", {
67
- version: "9.29.4",
67
+ version: "9.29.5",
68
68
  command: process.argv.slice(2).join(" ")
69
69
  });
70
70
  Sentry.setContext("runtime", {
@@ -546,7 +546,7 @@ async function waitForSilentUpgrade(timeout = TIMEOUT_MS) {
546
546
  // src/commands/info/index.ts
547
547
  var CONFIG_PATH = join2(homedir2(), ".vm0", "config.json");
548
548
  var infoCommand = new Command6().name("info").description("Display environment and debug information").action(async () => {
549
- console.log(chalk7.bold(`VM0 CLI v${"9.29.4"}`));
549
+ console.log(chalk7.bold(`VM0 CLI v${"9.29.5"}`));
550
550
  console.log();
551
551
  const config = await loadConfig();
552
552
  const hasEnvToken = !!process.env.VM0_TOKEN;
@@ -6155,7 +6155,7 @@ var composeCommand = new Command7().name("compose").description("Create or updat
6155
6155
  options.autoUpdate = false;
6156
6156
  }
6157
6157
  if (options.autoUpdate !== false) {
6158
- await startSilentUpgrade("9.29.4");
6158
+ await startSilentUpgrade("9.29.5");
6159
6159
  }
6160
6160
  try {
6161
6161
  let result;
@@ -8377,7 +8377,7 @@ var mainRunCommand = new Command8().name("run").description("Run an agent").argu
8377
8377
  async (identifier, prompt, options) => {
8378
8378
  try {
8379
8379
  if (options.autoUpdate !== false) {
8380
- await startSilentUpgrade("9.29.4");
8380
+ await startSilentUpgrade("9.29.5");
8381
8381
  }
8382
8382
  const { scope, name, version } = parseIdentifier(identifier);
8383
8383
  if (scope && !options.experimentalSharedAgent) {
@@ -10044,7 +10044,7 @@ var cookAction = new Command27().name("cook").description("Quick start: prepare,
10044
10044
  ).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(
10045
10045
  async (prompt, options) => {
10046
10046
  if (options.autoUpdate !== false) {
10047
- const shouldExit = await checkAndUpgrade("9.29.4", prompt);
10047
+ const shouldExit = await checkAndUpgrade("9.29.5", prompt);
10048
10048
  if (shouldExit) {
10049
10049
  process.exit(0);
10050
10050
  }
@@ -14473,7 +14473,7 @@ var devToolCommand = new Command75().name("dev-tool").description("Developer too
14473
14473
 
14474
14474
  // src/index.ts
14475
14475
  var program = new Command76();
14476
- program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.29.4");
14476
+ program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.29.5");
14477
14477
  program.addCommand(authCommand);
14478
14478
  program.addCommand(infoCommand);
14479
14479
  program.addCommand(composeCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/cli",
3
- "version": "9.29.4",
3
+ "version": "9.29.5",
4
4
  "description": "CLI application",
5
5
  "repository": {
6
6
  "type": "git",