@vm0/cli 9.132.10 → 9.132.11

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
@@ -62,7 +62,7 @@ import {
62
62
  source_default,
63
63
  volumeConfigSchema,
64
64
  withErrorHandler
65
- } from "./chunk-PUKA5E32.js";
65
+ } from "./chunk-S72CJD3V.js";
66
66
  import {
67
67
  __commonJS,
68
68
  __require,
@@ -7771,7 +7771,7 @@ function getConfigPath() {
7771
7771
  return join(homedir(), ".vm0", "config.json");
7772
7772
  }
7773
7773
  var infoCommand = new Command().name("info").description("Display environment and debug information").action(async () => {
7774
- console.log(source_default.bold(`VM0 CLI v${"9.132.10"}`));
7774
+ console.log(source_default.bold(`VM0 CLI v${"9.132.11"}`));
7775
7775
  console.log();
7776
7776
  const config = await loadConfig();
7777
7777
  const hasEnvToken = !!process.env.VM0_TOKEN;
@@ -11716,7 +11716,7 @@ var composeCommand = new Command().name("compose").description("Create or update
11716
11716
  options.autoUpdate = false;
11717
11717
  }
11718
11718
  if (options.autoUpdate !== false) {
11719
- await startSilentUpgrade("9.132.10");
11719
+ await startSilentUpgrade("9.132.11");
11720
11720
  }
11721
11721
  try {
11722
11722
  let result;
@@ -11808,7 +11808,7 @@ var mainRunCommand = new Command().name("run").description("Run an agent").argum
11808
11808
  withErrorHandler(
11809
11809
  async (identifier, prompt, options) => {
11810
11810
  if (options.autoUpdate !== false) {
11811
- await startSilentUpgrade("9.132.10");
11811
+ await startSilentUpgrade("9.132.11");
11812
11812
  }
11813
11813
  const { name, version } = parseIdentifier(identifier);
11814
11814
  let composeId;
@@ -13581,13 +13581,13 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
13581
13581
  if (latestVersion === null) {
13582
13582
  throw new Error("Could not check for updates. Please try again later.");
13583
13583
  }
13584
- if (latestVersion === "9.132.10") {
13585
- console.log(source_default.green(`\u2713 Already up to date (${"9.132.10"})`));
13584
+ if (latestVersion === "9.132.11") {
13585
+ console.log(source_default.green(`\u2713 Already up to date (${"9.132.11"})`));
13586
13586
  return;
13587
13587
  }
13588
13588
  console.log(
13589
13589
  source_default.yellow(
13590
- `Current version: ${"9.132.10"} -> Latest version: ${latestVersion}`
13590
+ `Current version: ${"9.132.11"} -> Latest version: ${latestVersion}`
13591
13591
  )
13592
13592
  );
13593
13593
  console.log();
@@ -13614,7 +13614,7 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
13614
13614
  const success = await performUpgrade(packageManager);
13615
13615
  if (success) {
13616
13616
  console.log(
13617
- source_default.green(`\u2713 Upgraded from ${"9.132.10"} to ${latestVersion}`)
13617
+ source_default.green(`\u2713 Upgraded from ${"9.132.11"} to ${latestVersion}`)
13618
13618
  );
13619
13619
  return;
13620
13620
  }
@@ -13681,7 +13681,7 @@ var whoamiCommand = new Command().name("whoami").description("Show current ident
13681
13681
 
13682
13682
  // src/index.ts
13683
13683
  var program = new Command();
13684
- program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.132.10");
13684
+ program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.132.11");
13685
13685
  program.addCommand(authCommand);
13686
13686
  program.addCommand(infoCommand);
13687
13687
  program.addCommand(composeCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/cli",
3
- "version": "9.132.10",
3
+ "version": "9.132.11",
4
4
  "description": "CLI application",
5
5
  "repository": {
6
6
  "type": "git",
package/zero.js CHANGED
@@ -112,7 +112,7 @@ import {
112
112
  upsertZeroOrgModelProvider,
113
113
  withErrorHandler,
114
114
  zeroAgentCustomSkillNameSchema
115
- } from "./chunk-PUKA5E32.js";
115
+ } from "./chunk-S72CJD3V.js";
116
116
  import {
117
117
  __toESM,
118
118
  init_esm_shims
@@ -13997,6 +13997,12 @@ var FEATURE_SWITCHES = {
13997
13997
  enabled: false,
13998
13998
  enabledOrgIdHashes: STAFF_ORG_ID_HASHES
13999
13999
  },
14000
+ ["telegramIntegration" /* TelegramIntegration */]: {
14001
+ maintainer: "ethan@vm0.ai",
14002
+ description: "Show the Telegram integration settings UI. The backend Telegram routes do not consult this frontend rollout flag.",
14003
+ enabled: false,
14004
+ enabledOrgIdHashes: STAFF_ORG_ID_HASHES
14005
+ },
14000
14006
  ["trinity" /* Trinity */]: {
14001
14007
  maintainer: "ethan@vm0.ai",
14002
14008
  description: "Embed the voice-chat mic toggle + voice-mode layout into the agent chat page. Gates the mic launcher, composer swap, and status/subtitle/task-card UI.",
@@ -18896,7 +18902,7 @@ function registerZeroCommands(prog, commands) {
18896
18902
  var program = new Command();
18897
18903
  program.name("zero").description(
18898
18904
  "Zero CLI \u2014 interact with the zero platform from inside the sandbox"
18899
- ).version("9.132.10").addHelpText(
18905
+ ).version("9.132.11").addHelpText(
18900
18906
  "after",
18901
18907
  `
18902
18908
  Examples: