@vm0/cli 9.180.3 → 9.180.4

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.
@@ -74083,7 +74083,7 @@ if (DSN) {
74083
74083
  init2({
74084
74084
  dsn: DSN,
74085
74085
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
74086
- release: "9.180.3",
74086
+ release: "9.180.4",
74087
74087
  sendDefaultPii: false,
74088
74088
  tracesSampleRate: 0,
74089
74089
  shutdownTimeout: 500,
@@ -74102,7 +74102,7 @@ if (DSN) {
74102
74102
  }
74103
74103
  });
74104
74104
  setContext("cli", {
74105
- version: "9.180.3",
74105
+ version: "9.180.4",
74106
74106
  command: process.argv.slice(2).join(" ")
74107
74107
  });
74108
74108
  setContext("runtime", {
@@ -135720,4 +135720,4 @@ undici/lib/web/fetch/body.js:
135720
135720
  undici/lib/web/websocket/frame.js:
135721
135721
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
135722
135722
  */
135723
- //# sourceMappingURL=chunk-FKVYVQUG.js.map
135723
+ //# sourceMappingURL=chunk-7XY55Z3Z.js.map
package/index.js CHANGED
@@ -67,7 +67,7 @@ import {
67
67
  source_default,
68
68
  volumeConfigSchema,
69
69
  withErrorHandler
70
- } from "./chunk-FKVYVQUG.js";
70
+ } from "./chunk-7XY55Z3Z.js";
71
71
  import {
72
72
  __toESM,
73
73
  init_esm_shims
@@ -400,7 +400,7 @@ function getConfigPath() {
400
400
  return join(os.homedir(), ".vm0", "config.json");
401
401
  }
402
402
  var infoCommand = new Command().name("info").description("Display environment and debug information").action(async () => {
403
- console.log(source_default.bold(`VM0 CLI v${"9.180.3"}`));
403
+ console.log(source_default.bold(`VM0 CLI v${"9.180.4"}`));
404
404
  console.log();
405
405
  const config = await loadConfig();
406
406
  const hasEnvToken = !!process.env.VM0_TOKEN;
@@ -4293,7 +4293,7 @@ var composeCommand = new Command().name("compose").description("Create or update
4293
4293
  options.autoUpdate = false;
4294
4294
  }
4295
4295
  if (options.autoUpdate !== false) {
4296
- await startSilentUpgrade("9.180.3");
4296
+ await startSilentUpgrade("9.180.4");
4297
4297
  }
4298
4298
  try {
4299
4299
  let result;
@@ -4395,7 +4395,7 @@ var mainRunCommand = new Command().name("run").description("Run an agent").argum
4395
4395
  withErrorHandler(
4396
4396
  async (identifier, prompt, options) => {
4397
4397
  if (options.autoUpdate !== false) {
4398
- await startSilentUpgrade("9.180.3");
4398
+ await startSilentUpgrade("9.180.4");
4399
4399
  }
4400
4400
  const { name, version } = parseIdentifier(identifier);
4401
4401
  let composeId;
@@ -6192,13 +6192,13 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
6192
6192
  if (latestVersion === null) {
6193
6193
  throw new Error("Could not check for updates. Please try again later.");
6194
6194
  }
6195
- if (latestVersion === "9.180.3") {
6196
- console.log(source_default.green(`\u2713 Already up to date (${"9.180.3"})`));
6195
+ if (latestVersion === "9.180.4") {
6196
+ console.log(source_default.green(`\u2713 Already up to date (${"9.180.4"})`));
6197
6197
  return;
6198
6198
  }
6199
6199
  console.log(
6200
6200
  source_default.yellow(
6201
- `Current version: ${"9.180.3"} -> Latest version: ${latestVersion}`
6201
+ `Current version: ${"9.180.4"} -> Latest version: ${latestVersion}`
6202
6202
  )
6203
6203
  );
6204
6204
  console.log();
@@ -6225,7 +6225,7 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
6225
6225
  const success = await performUpgrade(packageManager);
6226
6226
  if (success) {
6227
6227
  console.log(
6228
- source_default.green(`\u2713 Upgraded from ${"9.180.3"} to ${latestVersion}`)
6228
+ source_default.green(`\u2713 Upgraded from ${"9.180.4"} to ${latestVersion}`)
6229
6229
  );
6230
6230
  return;
6231
6231
  }
@@ -6292,7 +6292,7 @@ var whoamiCommand = new Command().name("whoami").description("Show current ident
6292
6292
 
6293
6293
  // src/index.ts
6294
6294
  var program = new Command();
6295
- program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.180.3");
6295
+ program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.180.4");
6296
6296
  program.addCommand(authCommand);
6297
6297
  program.addCommand(infoCommand);
6298
6298
  program.addCommand(composeCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/cli",
3
- "version": "9.180.3",
3
+ "version": "9.180.4",
4
4
  "description": "CLI application",
5
5
  "repository": {
6
6
  "type": "git",
package/zero.js CHANGED
@@ -149,7 +149,7 @@ import {
149
149
  upsertZeroOrgModelProvider,
150
150
  withErrorHandler,
151
151
  zeroAgentCustomSkillNameSchema
152
- } from "./chunk-FKVYVQUG.js";
152
+ } from "./chunk-7XY55Z3Z.js";
153
153
  import {
154
154
  __toESM,
155
155
  init_esm_shims
@@ -7142,6 +7142,9 @@ init_esm_shims();
7142
7142
 
7143
7143
  // src/commands/zero/shared/resource-registry.ts
7144
7144
  init_esm_shims();
7145
+
7146
+ // ../../packages/core/src/resource-registry.ts
7147
+ init_esm_shims();
7145
7148
  var RESOURCE_REGISTRY_REPO = "nexu-io/open-design";
7146
7149
  var RESOURCE_REGISTRY_COMMIT = "3fb620af423534643677c7c6fae76be088fa770a";
7147
7150
  var VM0_SKILLS_REPO = "vm0-ai/vm0-skills";
@@ -13429,7 +13432,7 @@ function registerZeroCommands(prog, commands) {
13429
13432
  var program = new Command();
13430
13433
  program.name("zero").description(
13431
13434
  "Zero CLI \u2014 interact with the zero platform from inside the sandbox"
13432
- ).version("9.180.3").addHelpText("after", () => {
13435
+ ).version("9.180.4").addHelpText("after", () => {
13433
13436
  return buildZeroHelpText();
13434
13437
  });
13435
13438
  if (process.argv[1]?.endsWith("zero.js") || process.argv[1]?.endsWith("zero.ts") || process.argv[1]?.endsWith("zero")) {