@vm0/cli 9.126.0 → 9.126.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/cli",
3
- "version": "9.126.0",
3
+ "version": "9.126.1",
4
4
  "description": "CLI application",
5
5
  "repository": {
6
6
  "type": "git",
package/zero.js CHANGED
@@ -128,7 +128,7 @@ import {
128
128
  upsertZeroOrgModelProvider,
129
129
  withErrorHandler,
130
130
  zeroAgentCustomSkillNameSchema
131
- } from "./chunk-XRL42LXP.js";
131
+ } from "./chunk-QCBJS3R3.js";
132
132
  import {
133
133
  __toESM,
134
134
  init_esm_shims
@@ -1650,7 +1650,8 @@ function renderConnectedAsCell(connector) {
1650
1650
  }
1651
1651
  return identity;
1652
1652
  }
1653
- var ANSI_PATTERN = /\u001b\[[0-9;]*m/g;
1653
+ var ESC = "\x1B";
1654
+ var ANSI_PATTERN = new RegExp(`${ESC}\\[[0-9;]*m`, "g");
1654
1655
  function stripAnsi(s) {
1655
1656
  return s.replace(ANSI_PATTERN, "");
1656
1657
  }
@@ -2869,7 +2870,7 @@ function showZeroNextSteps(result) {
2869
2870
  var mainRunCommand = new Command().name("run").description("Delegate a task to a teammate agent").argument("<agent-id>", "Agent UUID (from `zero agent list`)").argument("<prompt>", "Task prompt for the agent").option(
2870
2871
  "--model-provider <type>",
2871
2872
  "Override model provider (e.g., anthropic-api-key)"
2872
- ).option("--verbose", "Show full tool inputs and outputs").addHelpText(
2873
+ ).option("--verbose", "Show full tool inputs and outputs").addOption(new Option("--debug-no-mock-claude").hideHelp()).addHelpText(
2873
2874
  "after",
2874
2875
  `
2875
2876
  Examples:
@@ -2893,7 +2894,8 @@ Notes:
2893
2894
  const response = await createZeroRun({
2894
2895
  agentId,
2895
2896
  prompt,
2896
- modelProvider: options.modelProvider
2897
+ modelProvider: options.modelProvider,
2898
+ debugNoMockClaude: options.debugNoMockClaude
2897
2899
  });
2898
2900
  if (response.status === "failed") {
2899
2901
  throw new Error(
@@ -6609,7 +6611,7 @@ function registerZeroCommands(prog, commands) {
6609
6611
  var program = new Command();
6610
6612
  program.name("zero").description(
6611
6613
  "Zero CLI \u2014 interact with the zero platform from inside the sandbox"
6612
- ).version("9.126.0").addHelpText(
6614
+ ).version("9.126.1").addHelpText(
6613
6615
  "after",
6614
6616
  `
6615
6617
  Examples: