@duheso/zerocli 1.1.2 → 1.1.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.
Files changed (2) hide show
  1. package/dist/cli.mjs +91 -87
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -119226,7 +119226,7 @@ function buildProviderInfoLines() {
119226
119226
  const sLen = ` ● ${sL} ${sReady}`.length;
119227
119227
  out.push(boxRow(sRow, W2, sLen));
119228
119228
  out.push(`${rgb(...BORDER)}╚${"═".repeat(W2 - 2)}╝${RESET}`);
119229
- out.push(` ${DIM}${rgb(...DIMCOL)}zero ${RESET}${rgb(...ACCENT)}v${"1.1.2"}${RESET}`);
119229
+ out.push(` ${DIM}${rgb(...DIMCOL)}zero ${RESET}${rgb(...ACCENT)}v${"1.1.4"}${RESET}`);
119230
119230
  return out;
119231
119231
  }
119232
119232
  function printStartupScreen() {}
@@ -147417,7 +147417,7 @@ function getAttributionHeader(fingerprint) {
147417
147417
  if (!isAttributionHeaderEnabled()) {
147418
147418
  return "";
147419
147419
  }
147420
- const version2 = `${"1.1.0"}.${fingerprint}`;
147420
+ const version2 = `${"1.1.3"}.${fingerprint}`;
147421
147421
  const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
147422
147422
  const cch = "";
147423
147423
  const workload = getWorkload();
@@ -190435,7 +190435,7 @@ var init_imageValidation = __esm(() => {
190435
190435
 
190436
190436
  // src/utils/userAgent.ts
190437
190437
  function getZeroCodeUserAgent() {
190438
- return `claude-code/${"1.1.0"}`;
190438
+ return `claude-code/${"1.1.3"}`;
190439
190439
  }
190440
190440
 
190441
190441
  // src/utils/http.ts
@@ -190444,7 +190444,7 @@ function getUserAgent() {
190444
190444
  const clientApp = process.env.CLAUDE_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}` : "";
190445
190445
  const workload = getWorkload();
190446
190446
  const workloadSuffix = workload ? `, workload/${workload}` : "";
190447
- return `claude-cli/${"1.1.0"} (${process.env.USER_TYPE}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
190447
+ return `claude-cli/${"1.1.3"} (${process.env.USER_TYPE}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
190448
190448
  }
190449
190449
  function getMCPUserAgent() {
190450
190450
  const parts = [];
@@ -190458,7 +190458,7 @@ function getMCPUserAgent() {
190458
190458
  parts.push(`client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}`);
190459
190459
  }
190460
190460
  const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
190461
- return `claude-code/${"1.1.0"}${suffix}`;
190461
+ return `claude-code/${"1.1.3"}${suffix}`;
190462
190462
  }
190463
190463
  function getWebFetchUserAgent() {
190464
190464
  const supportUrl = getAPIProvider() === "firstParty" ? "https://support.anthropic.com/" : "https://github.com/Duheso/ZeroCLI";
@@ -244944,7 +244944,7 @@ function getTelemetryAttributes() {
244944
244944
  attributes["session.id"] = sessionId;
244945
244945
  }
244946
244946
  if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
244947
- attributes["app.version"] = "1.1.0";
244947
+ attributes["app.version"] = "1.1.3";
244948
244948
  }
244949
244949
  const oauthAccount = getOauthAccountInfo();
244950
244950
  if (oauthAccount) {
@@ -257183,7 +257183,7 @@ function computeFingerprint(messageText, version2) {
257183
257183
  }
257184
257184
  function computeFingerprintFromMessages(messages) {
257185
257185
  const firstMessageText = extractFirstMessageText(messages);
257186
- return computeFingerprint(firstMessageText, "1.1.0");
257186
+ return computeFingerprint(firstMessageText, "1.1.3");
257187
257187
  }
257188
257188
  var FINGERPRINT_SALT = "59cf53e54c78";
257189
257189
  var init_fingerprint = () => {};
@@ -257225,7 +257225,7 @@ async function sideQuery(opts) {
257225
257225
  betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
257226
257226
  }
257227
257227
  const messageText = extractFirstUserMessageText(messages);
257228
- const fingerprint = computeFingerprint(messageText, "1.1.0");
257228
+ const fingerprint = computeFingerprint(messageText, "1.1.3");
257229
257229
  const attributionHeader = getAttributionHeader(fingerprint);
257230
257230
  const systemBlocks = [
257231
257231
  attributionHeader ? { type: "text", text: attributionHeader } : null,
@@ -266127,7 +266127,7 @@ var init_user = __esm(() => {
266127
266127
  deviceId,
266128
266128
  sessionId: getSessionId(),
266129
266129
  email: getEmail(),
266130
- appVersion: "1.1.0",
266130
+ appVersion: "1.1.3",
266131
266131
  platform: getHostPlatformForAnalytics(),
266132
266132
  organizationUuid,
266133
266133
  accountUuid,
@@ -266521,7 +266521,7 @@ async function initializeBetaTracing(resource) {
266521
266521
  });
266522
266522
  logs.setGlobalLoggerProvider(loggerProvider);
266523
266523
  setLoggerProvider(loggerProvider);
266524
- const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.1.0");
266524
+ const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.1.3");
266525
266525
  setEventLogger(eventLogger);
266526
266526
  process.on("beforeExit", async () => {
266527
266527
  await loggerProvider?.forceFlush();
@@ -266561,7 +266561,7 @@ async function initializeTelemetry() {
266561
266561
  const platform3 = getPlatform();
266562
266562
  const baseAttributes = {
266563
266563
  [ATTR_SERVICE_NAME3]: "claude-code",
266564
- [ATTR_SERVICE_VERSION3]: "1.1.0"
266564
+ [ATTR_SERVICE_VERSION3]: "1.1.3"
266565
266565
  };
266566
266566
  if (platform3 === "wsl") {
266567
266567
  const wslVersion = getWslVersion();
@@ -266606,7 +266606,7 @@ async function initializeTelemetry() {
266606
266606
  } catch {}
266607
266607
  };
266608
266608
  registerCleanup(shutdownTelemetry2);
266609
- return meterProvider2.getMeter("com.anthropic.claude_code", "1.1.0");
266609
+ return meterProvider2.getMeter("com.anthropic.claude_code", "1.1.3");
266610
266610
  }
266611
266611
  const meterProvider = new MeterProvider3({
266612
266612
  resource,
@@ -266626,7 +266626,7 @@ async function initializeTelemetry() {
266626
266626
  });
266627
266627
  logs.setGlobalLoggerProvider(loggerProvider);
266628
266628
  setLoggerProvider(loggerProvider);
266629
- const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.1.0");
266629
+ const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.1.3");
266630
266630
  setEventLogger(eventLogger);
266631
266631
  logForDebugging("[3P telemetry] Event logger set successfully");
266632
266632
  process.on("beforeExit", async () => {
@@ -266688,7 +266688,7 @@ Current timeout: ${timeoutMs}ms
266688
266688
  }
266689
266689
  };
266690
266690
  registerCleanup(shutdownTelemetry);
266691
- return meterProvider.getMeter("com.anthropic.claude_code", "1.1.0");
266691
+ return meterProvider.getMeter("com.anthropic.claude_code", "1.1.3");
266692
266692
  }
266693
266693
  async function flushTelemetry() {
266694
266694
  const meterProvider = getMeterProvider();
@@ -267500,9 +267500,9 @@ async function assertMinVersion() {
267500
267500
  }
267501
267501
  try {
267502
267502
  const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
267503
- if (versionConfig.minVersion && lt("1.1.0", versionConfig.minVersion)) {
267503
+ if (versionConfig.minVersion && lt("1.1.3", versionConfig.minVersion)) {
267504
267504
  console.error(`
267505
- It looks like your version of ZeroCLI (${"1.1.0"}) needs an update.
267505
+ It looks like your version of ZeroCLI (${"1.1.3"}) needs an update.
267506
267506
  A newer version (${versionConfig.minVersion} or higher) is required to continue.
267507
267507
 
267508
267508
  To update, please run:
@@ -267718,7 +267718,7 @@ async function installGlobalPackage(specificVersion) {
267718
267718
  logError2(new AutoUpdaterError("Another process is currently installing an update"));
267719
267719
  logEvent("tengu_auto_updater_lock_contention", {
267720
267720
  pid: process.pid,
267721
- currentVersion: "1.1.0"
267721
+ currentVersion: "1.1.3"
267722
267722
  });
267723
267723
  return "in_progress";
267724
267724
  }
@@ -267727,7 +267727,7 @@ async function installGlobalPackage(specificVersion) {
267727
267727
  if (!env2.isRunningWithBun() && env2.isNpmFromWindowsPath()) {
267728
267728
  logError2(new Error("Windows NPM detected in WSL environment"));
267729
267729
  logEvent("tengu_auto_updater_windows_npm_in_wsl", {
267730
- currentVersion: "1.1.0"
267730
+ currentVersion: "1.1.3"
267731
267731
  });
267732
267732
  console.error(`
267733
267733
  Error: Windows NPM detected in WSL
@@ -268281,7 +268281,7 @@ async function getDoctorDiagnostic() {
268281
268281
  const installationType = await getCurrentInstallationType();
268282
268282
  let version2;
268283
268283
  try {
268284
- version2 = "1.1.0";
268284
+ version2 = "1.1.3";
268285
268285
  } catch {
268286
268286
  version2 = "unknown";
268287
268287
  }
@@ -269775,7 +269775,7 @@ function getInstallationEnv() {
269775
269775
  return;
269776
269776
  }
269777
269777
  function getZeroCodeVersion() {
269778
- return "1.1.0";
269778
+ return "1.1.3";
269779
269779
  }
269780
269780
  async function getInstalledVSCodeExtensionVersion(command) {
269781
269781
  const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
@@ -271142,8 +271142,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
271142
271142
  const maxVersion = await getMaxVersion();
271143
271143
  if (maxVersion && gt(version2, maxVersion)) {
271144
271144
  logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
271145
- if (gte("1.1.0", maxVersion)) {
271146
- logForDebugging(`Native installer: current version ${"1.1.0"} is already at or above maxVersion ${maxVersion}, skipping update`);
271145
+ if (gte("1.1.3", maxVersion)) {
271146
+ logForDebugging(`Native installer: current version ${"1.1.3"} is already at or above maxVersion ${maxVersion}, skipping update`);
271147
271147
  logEvent("tengu_native_update_skipped_max_version", {
271148
271148
  latency_ms: Date.now() - startTime2,
271149
271149
  max_version: maxVersion,
@@ -271154,7 +271154,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
271154
271154
  version2 = maxVersion;
271155
271155
  }
271156
271156
  }
271157
- if (!forceReinstall && version2 === "1.1.0" && await versionIsAvailable(version2) && await isPossibleZeroBinary(executablePath)) {
271157
+ if (!forceReinstall && version2 === "1.1.3" && await versionIsAvailable(version2) && await isPossibleZeroBinary(executablePath)) {
271158
271158
  logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
271159
271159
  logEvent("tengu_native_update_complete", {
271160
271160
  latency_ms: Date.now() - startTime2,
@@ -389306,17 +389306,21 @@ var init_WindowsControlTool = __esm(() => {
389306
389306
  if (input.action === "screenshot" && result.success && result.data) {
389307
389307
  const d = result.data;
389308
389308
  return {
389309
- type: "screenshot",
389310
- imageBase64: d.imageBase64,
389311
- width: d.width,
389312
- height: d.height,
389313
- cursor: d.cursor,
389314
- message: result.message || `Screenshot ${d.width}x${d.height}`
389309
+ data: {
389310
+ type: "screenshot",
389311
+ imageBase64: d.imageBase64,
389312
+ width: d.width,
389313
+ height: d.height,
389314
+ cursor: d.cursor,
389315
+ message: result.message || `Screenshot ${d.width}x${d.height}`
389316
+ }
389315
389317
  };
389316
389318
  }
389317
389319
  return {
389318
- type: "text",
389319
- text: JSON.stringify(result, null, 2)
389320
+ data: {
389321
+ type: "text",
389322
+ text: JSON.stringify(result, null, 2)
389323
+ }
389320
389324
  };
389321
389325
  },
389322
389326
  mapToolResultToToolResultBlockParam(data, toolUseID) {
@@ -402276,7 +402280,7 @@ function getAnthropicEnvMetadata() {
402276
402280
  function getBuildAgeMinutes() {
402277
402281
  if (false)
402278
402282
  ;
402279
- const buildTime = new Date("2026-05-23T19:20:07.267Z").getTime();
402283
+ const buildTime = new Date("2026-05-23T19:32:12.653Z").getTime();
402280
402284
  if (isNaN(buildTime))
402281
402285
  return;
402282
402286
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -429759,7 +429763,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
429759
429763
  const client2 = new Client({
429760
429764
  name: "claude-code",
429761
429765
  title: "ZeroCLI",
429762
- version: "1.1.0",
429766
+ version: "1.1.3",
429763
429767
  description: "Anthropic's agentic coding tool",
429764
429768
  websiteUrl: PRODUCT_URL
429765
429769
  }, {
@@ -430111,7 +430115,7 @@ var init_client7 = __esm(() => {
430111
430115
  const client2 = new Client({
430112
430116
  name: "claude-code",
430113
430117
  title: "ZeroCLI",
430114
- version: "1.1.0",
430118
+ version: "1.1.3",
430115
430119
  description: "Anthropic's agentic coding tool",
430116
430120
  websiteUrl: PRODUCT_URL
430117
430121
  }, {
@@ -440846,7 +440850,7 @@ function Feedback({
440846
440850
  platform: env2.platform,
440847
440851
  gitRepo: envInfo.isGit,
440848
440852
  terminal: env2.terminal,
440849
- version: "1.1.0",
440853
+ version: "1.1.3",
440850
440854
  transcript: normalizeMessagesForAPI(messages),
440851
440855
  errors: sanitizedErrors,
440852
440856
  lastApiRequest: getLastAPIRequest(),
@@ -441039,7 +441043,7 @@ function Feedback({
441039
441043
  ", ",
441040
441044
  env2.terminal,
441041
441045
  ", v",
441042
- "1.1.0"
441046
+ "1.1.3"
441043
441047
  ]
441044
441048
  })
441045
441049
  ]
@@ -441147,7 +441151,7 @@ ${sanitizedDescription}
441147
441151
  ` + `**Environment Info**
441148
441152
  ` + `- Platform: ${env2.platform}
441149
441153
  ` + `- Terminal: ${env2.terminal}
441150
- ` + `- Version: ${"1.1.0"}
441154
+ ` + `- Version: ${"1.1.3"}
441151
441155
  ` + feedbackIdLine + `
441152
441156
  **Errors**
441153
441157
  \`\`\`json
@@ -444300,7 +444304,7 @@ function buildPrimarySection() {
444300
444304
  });
444301
444305
  return [{
444302
444306
  label: "Version",
444303
- value: "1.1.2"
444307
+ value: "1.1.4"
444304
444308
  }, {
444305
444309
  label: "Session name",
444306
444310
  value: nameValue
@@ -449070,7 +449074,7 @@ function Config({
449070
449074
  }
449071
449075
  })
449072
449076
  }) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_runtime183.jsx(ChannelDowngradeDialog, {
449073
- currentVersion: "1.1.0",
449077
+ currentVersion: "1.1.3",
449074
449078
  onChoice: (choice) => {
449075
449079
  setShowSubmenu(null);
449076
449080
  setTabsHidden(false);
@@ -449082,7 +449086,7 @@ function Config({
449082
449086
  autoUpdatesChannel: "stable"
449083
449087
  };
449084
449088
  if (choice === "stay") {
449085
- newSettings.minimumVersion = "1.1.0";
449089
+ newSettings.minimumVersion = "1.1.3";
449086
449090
  }
449087
449091
  updateSettingsForSource("userSettings", newSettings);
449088
449092
  setSettingsData((prev_27) => ({
@@ -456066,7 +456070,7 @@ function UpdateScreen({ onDone }) {
456066
456070
  setState({ type: "dev-build" });
456067
456071
  return;
456068
456072
  }
456069
- const currentVersion = "1.1.0";
456073
+ const currentVersion = "1.1.3";
456070
456074
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
456071
456075
  const latestVersion = await getLatestVersion(channel2);
456072
456076
  if (!latestVersion) {
@@ -458177,7 +458181,7 @@ function HelpV2(t0) {
458177
458181
  let t6;
458178
458182
  if ($2[31] !== tabs) {
458179
458183
  t6 = /* @__PURE__ */ jsx_runtime213.jsx(Tabs, {
458180
- title: `ZeroCLI v${"1.1.0"}`,
458184
+ title: `ZeroCLI v${"1.1.3"}`,
458181
458185
  color: "professionalBlue",
458182
458186
  defaultTab: "general",
458183
458187
  children: tabs
@@ -483021,7 +483025,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
483021
483025
  return [];
483022
483026
  }
483023
483027
  }
483024
- async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.0") {
483028
+ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.3") {
483025
483029
  if (process.env.USER_TYPE === "ant") {
483026
483030
  const changelog = MACRO.VERSION_CHANGELOG;
483027
483031
  if (changelog) {
@@ -512059,7 +512063,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
512059
512063
  smapsRollup,
512060
512064
  platform: process.platform,
512061
512065
  nodeVersion: process.version,
512062
- ccVersion: "1.1.0"
512066
+ ccVersion: "1.1.3"
512063
512067
  };
512064
512068
  }
512065
512069
  async function performHeapDump(trigger = "manual", dumpNumber = 0) {
@@ -512646,7 +512650,7 @@ var init_bridge_kick = __esm(() => {
512646
512650
  var call60 = async () => {
512647
512651
  return {
512648
512652
  type: "text",
512649
- value: `${"1.1.0"} (built ${"2026-05-23T19:20:07.267Z"})`
512653
+ value: `${"1.1.3"} (built ${"2026-05-23T19:32:12.653Z"})`
512650
512654
  };
512651
512655
  }, version2, version_default;
512652
512656
  var init_version = __esm(() => {
@@ -522960,7 +522964,7 @@ function generateHtmlReport(data, insights) {
522960
522964
  function buildExportData(data, insights, facets) {
522961
522965
  let version3;
522962
522966
  try {
522963
- version3 = "1.1.0";
522967
+ version3 = "1.1.3";
522964
522968
  } catch {
522965
522969
  version3 = "unknown";
522966
522970
  }
@@ -527160,7 +527164,7 @@ var init_sessionStorage = __esm(() => {
527160
527164
  init_slowOperations();
527161
527165
  init_uuid();
527162
527166
  try {
527163
- VERSION7 = "1.1.0";
527167
+ VERSION7 = "1.1.3";
527164
527168
  } catch {
527165
527169
  VERSION7 = "unknown";
527166
527170
  }
@@ -528481,7 +528485,7 @@ var init_filesystem = __esm(() => {
528481
528485
  });
528482
528486
  getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
528483
528487
  const nonce = randomBytes17(16).toString("hex");
528484
- return join137(getZeroTempDir(), "bundled-skills", "1.1.0", nonce);
528488
+ return join137(getZeroTempDir(), "bundled-skills", "1.1.3", nonce);
528485
528489
  });
528486
528490
  getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
528487
528491
  });
@@ -539341,7 +539345,7 @@ function buildSystemInitMessage(inputs) {
539341
539345
  slash_commands: inputs.commands.filter((c6) => c6.userInvocable !== false).map((c6) => c6.name),
539342
539346
  apiKeySource: getAnthropicApiKeyWithSource().source,
539343
539347
  betas: getSdkBetas(),
539344
- claude_code_version: "1.1.0",
539348
+ claude_code_version: "1.1.3",
539345
539349
  output_style: outputStyle2,
539346
539350
  agents: inputs.agents.map((agent2) => agent2.agentType),
539347
539351
  skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
@@ -554656,7 +554660,7 @@ var init_useVoiceEnabled = __esm(() => {
554656
554660
  function getSemverPart(version3) {
554657
554661
  return `${import_semver12.major(version3, { loose: true })}.${import_semver12.minor(version3, { loose: true })}.${import_semver12.patch(version3, { loose: true })}`;
554658
554662
  }
554659
- function useUpdateNotification(updatedVersion, initialVersion = "1.1.0") {
554663
+ function useUpdateNotification(updatedVersion, initialVersion = "1.1.3") {
554660
554664
  const [lastNotifiedSemver, setLastNotifiedSemver] = import_react226.useState(() => getSemverPart(initialVersion));
554661
554665
  if (!updatedVersion) {
554662
554666
  return null;
@@ -554699,7 +554703,7 @@ function AutoUpdater({
554699
554703
  return;
554700
554704
  }
554701
554705
  if (false) {}
554702
- const currentVersion = "1.1.0";
554706
+ const currentVersion = "1.1.3";
554703
554707
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
554704
554708
  let latestVersion = await getLatestVersion(channel2);
554705
554709
  const isDisabled = isAutoUpdaterDisabled();
@@ -554920,12 +554924,12 @@ function NativeAutoUpdater({
554920
554924
  logEvent("tengu_native_auto_updater_start", {});
554921
554925
  try {
554922
554926
  const maxVersion = await getMaxVersion();
554923
- if (maxVersion && gt("1.1.0", maxVersion)) {
554927
+ if (maxVersion && gt("1.1.3", maxVersion)) {
554924
554928
  const msg = await getMaxVersionMessage();
554925
554929
  setMaxVersionIssue(msg ?? "affects your version");
554926
554930
  }
554927
554931
  const result = await installLatest(channel2);
554928
- const currentVersion = "1.1.0";
554932
+ const currentVersion = "1.1.3";
554929
554933
  const latencyMs = Date.now() - startTime2;
554930
554934
  if (result.lockFailed) {
554931
554935
  logEvent("tengu_native_auto_updater_lock_contention", {
@@ -555067,17 +555071,17 @@ function PackageManagerAutoUpdater(t0) {
555067
555071
  const maxVersion = await getMaxVersion();
555068
555072
  if (maxVersion && latest && gt(latest, maxVersion)) {
555069
555073
  logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
555070
- if (gte("1.1.0", maxVersion)) {
555071
- logForDebugging(`PackageManagerAutoUpdater: current version ${"1.1.0"} is already at or above maxVersion ${maxVersion}, skipping update`);
555074
+ if (gte("1.1.3", maxVersion)) {
555075
+ logForDebugging(`PackageManagerAutoUpdater: current version ${"1.1.3"} is already at or above maxVersion ${maxVersion}, skipping update`);
555072
555076
  setUpdateAvailable(false);
555073
555077
  return;
555074
555078
  }
555075
555079
  latest = maxVersion;
555076
555080
  }
555077
- const hasUpdate = latest && !gte("1.1.0", latest) && !shouldSkipVersion(latest);
555081
+ const hasUpdate = latest && !gte("1.1.3", latest) && !shouldSkipVersion(latest);
555078
555082
  setUpdateAvailable(!!hasUpdate);
555079
555083
  if (hasUpdate) {
555080
- logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.1.0"} -> ${latest}`);
555084
+ logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.1.3"} -> ${latest}`);
555081
555085
  }
555082
555086
  };
555083
555087
  $2[0] = t1;
@@ -555111,7 +555115,7 @@ function PackageManagerAutoUpdater(t0) {
555111
555115
  wrap: "truncate",
555112
555116
  children: [
555113
555117
  "currentVersion: ",
555114
- "1.1.0"
555118
+ "1.1.3"
555115
555119
  ]
555116
555120
  });
555117
555121
  $2[3] = verbose;
@@ -564167,7 +564171,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
564167
564171
  project_dir: getOriginalCwd(),
564168
564172
  added_dirs: addedDirs
564169
564173
  },
564170
- version: "1.1.0",
564174
+ version: "1.1.3",
564171
564175
  output_style: {
564172
564176
  name: outputStyleName
564173
564177
  },
@@ -588670,7 +588674,7 @@ function WelcomeV2() {
588670
588674
  dimColor: true,
588671
588675
  children: [
588672
588676
  "v",
588673
- "1.1.2",
588677
+ "1.1.4",
588674
588678
  " "
588675
588679
  ]
588676
588680
  })
@@ -588904,7 +588908,7 @@ function WelcomeV2() {
588904
588908
  dimColor: true,
588905
588909
  children: [
588906
588910
  "v",
588907
- "1.1.2",
588911
+ "1.1.4",
588908
588912
  " "
588909
588913
  ]
588910
588914
  })
@@ -589151,7 +589155,7 @@ function AppleTerminalWelcomeV2(t0) {
589151
589155
  dimColor: true,
589152
589156
  children: [
589153
589157
  "v",
589154
- "1.1.2",
589158
+ "1.1.4",
589155
589159
  " "
589156
589160
  ]
589157
589161
  });
@@ -589424,7 +589428,7 @@ function AppleTerminalWelcomeV2(t0) {
589424
589428
  dimColor: true,
589425
589429
  children: [
589426
589430
  "v",
589427
- "1.1.2",
589431
+ "1.1.4",
589428
589432
  " "
589429
589433
  ]
589430
589434
  });
@@ -590936,7 +590940,7 @@ function completeOnboarding() {
590936
590940
  saveGlobalConfig((current) => ({
590937
590941
  ...current,
590938
590942
  hasCompletedOnboarding: true,
590939
- lastOnboardingVersion: "1.1.0"
590943
+ lastOnboardingVersion: "1.1.3"
590940
590944
  }));
590941
590945
  }
590942
590946
  function showDialog(root2, renderer) {
@@ -595187,7 +595191,7 @@ function appendToLog(path24, message) {
595187
595191
  cwd: getFsImplementation().cwd(),
595188
595192
  userType: process.env.USER_TYPE,
595189
595193
  sessionId: getSessionId(),
595190
- version: "1.1.0"
595194
+ version: "1.1.3"
595191
595195
  };
595192
595196
  getLogWriter(path24).write(messageWithTimestamp);
595193
595197
  }
@@ -595793,7 +595797,7 @@ async function startMCPServer(cwd2, debug, verbose) {
595793
595797
  setCwd(cwd2);
595794
595798
  const server = new Server({
595795
595799
  name: "claude/tengu",
595796
- version: "1.1.0"
595800
+ version: "1.1.3"
595797
595801
  }, {
595798
595802
  capabilities: {
595799
595803
  tools: {}
@@ -600432,8 +600436,8 @@ async function getEnvLessBridgeConfig() {
600432
600436
  }
600433
600437
  async function checkEnvLessBridgeMinVersion() {
600434
600438
  const cfg = await getEnvLessBridgeConfig();
600435
- if (cfg.min_version && lt("1.1.0", cfg.min_version)) {
600436
- return `Your version of ZeroCLI (${"1.1.0"}) is too old for Remote Control.
600439
+ if (cfg.min_version && lt("1.1.3", cfg.min_version)) {
600440
+ return `Your version of ZeroCLI (${"1.1.3"}) is too old for Remote Control.
600437
600441
  Version ${cfg.min_version} or higher is required. Run \`zero update\` to update.`;
600438
600442
  }
600439
600443
  return null;
@@ -600908,7 +600912,7 @@ async function initBridgeCore(params) {
600908
600912
  const rawApi = createBridgeApiClient({
600909
600913
  baseUrl,
600910
600914
  getAccessToken,
600911
- runnerVersion: "1.1.0",
600915
+ runnerVersion: "1.1.3",
600912
600916
  onDebug: logForDebugging,
600913
600917
  onAuth401,
600914
600918
  getTrustedDeviceToken
@@ -607196,7 +607200,7 @@ __export(exports_update2, {
607196
607200
  });
607197
607201
  async function update2() {
607198
607202
  logEvent("tengu_update_check", {});
607199
- writeToStdout(`Current version: ${"1.1.0"}
607203
+ writeToStdout(`Current version: ${"1.1.3"}
607200
607204
  `);
607201
607205
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
607202
607206
  writeToStdout(`Checking for updates to ${channel2} version...
@@ -607271,8 +607275,8 @@ async function update2() {
607271
607275
  writeToStdout(`Zero is managed by Homebrew.
607272
607276
  `);
607273
607277
  const latest = await getLatestVersion(channel2);
607274
- if (latest && !gte("1.1.0", latest)) {
607275
- writeToStdout(`Update available: ${"1.1.0"} → ${latest}
607278
+ if (latest && !gte("1.1.3", latest)) {
607279
+ writeToStdout(`Update available: ${"1.1.3"} → ${latest}
607276
607280
  `);
607277
607281
  writeToStdout(`
607278
607282
  `);
@@ -607288,8 +607292,8 @@ async function update2() {
607288
607292
  writeToStdout(`Zero is managed by winget.
607289
607293
  `);
607290
607294
  const latest = await getLatestVersion(channel2);
607291
- if (latest && !gte("1.1.0", latest)) {
607292
- writeToStdout(`Update available: ${"1.1.0"} → ${latest}
607295
+ if (latest && !gte("1.1.3", latest)) {
607296
+ writeToStdout(`Update available: ${"1.1.3"} → ${latest}
607293
607297
  `);
607294
607298
  writeToStdout(`
607295
607299
  `);
@@ -607305,8 +607309,8 @@ async function update2() {
607305
607309
  writeToStdout(`Zero is managed by apk.
607306
607310
  `);
607307
607311
  const latest = await getLatestVersion(channel2);
607308
- if (latest && !gte("1.1.0", latest)) {
607309
- writeToStdout(`Update available: ${"1.1.0"} → ${latest}
607312
+ if (latest && !gte("1.1.3", latest)) {
607313
+ writeToStdout(`Update available: ${"1.1.3"} → ${latest}
607310
607314
  `);
607311
607315
  writeToStdout(`
607312
607316
  `);
@@ -607371,11 +607375,11 @@ async function update2() {
607371
607375
  `);
607372
607376
  await gracefulShutdown(1);
607373
607377
  }
607374
- if (result.latestVersion === "1.1.0") {
607375
- writeToStdout(source_default.green(`Zero CLI is up to date (${"1.1.0"})`) + `
607378
+ if (result.latestVersion === "1.1.3") {
607379
+ writeToStdout(source_default.green(`Zero CLI is up to date (${"1.1.3"})`) + `
607376
607380
  `);
607377
607381
  } else {
607378
- writeToStdout(source_default.green(`Successfully updated from ${"1.1.0"} to version ${result.latestVersion}`) + `
607382
+ writeToStdout(source_default.green(`Successfully updated from ${"1.1.3"} to version ${result.latestVersion}`) + `
607379
607383
  `);
607380
607384
  await regenerateCompletionCache();
607381
607385
  }
@@ -607435,12 +607439,12 @@ async function update2() {
607435
607439
  `);
607436
607440
  await gracefulShutdown(1);
607437
607441
  }
607438
- if (latestVersion === "1.1.0") {
607439
- writeToStdout(source_default.green(`Zero CLI is up to date (${"1.1.0"})`) + `
607442
+ if (latestVersion === "1.1.3") {
607443
+ writeToStdout(source_default.green(`Zero CLI is up to date (${"1.1.3"})`) + `
607440
607444
  `);
607441
607445
  await gracefulShutdown(0);
607442
607446
  }
607443
- writeToStdout(`New version available: ${latestVersion} (current: ${"1.1.0"})
607447
+ writeToStdout(`New version available: ${latestVersion} (current: ${"1.1.3"})
607444
607448
  `);
607445
607449
  writeToStdout(`Installing update...
607446
607450
  `);
@@ -607485,7 +607489,7 @@ async function update2() {
607485
607489
  logForDebugging(`update: Installation status: ${status2}`);
607486
607490
  switch (status2) {
607487
607491
  case "success":
607488
- writeToStdout(source_default.green(`Successfully updated from ${"1.1.0"} to version ${latestVersion}`) + `
607492
+ writeToStdout(source_default.green(`Successfully updated from ${"1.1.3"} to version ${latestVersion}`) + `
607489
607493
  `);
607490
607494
  await regenerateCompletionCache();
607491
607495
  break;
@@ -608786,7 +608790,7 @@ ${customInstructions}` : customInstructions;
608786
608790
  }
608787
608791
  }
608788
608792
  logForDiagnosticsNoPII("info", "started", {
608789
- version: "1.1.0",
608793
+ version: "1.1.3",
608790
608794
  is_native_binary: isInBundledMode()
608791
608795
  });
608792
608796
  registerCleanup(async () => {
@@ -609669,7 +609673,7 @@ Usage: claude --remote "your task description"`, () => gracefulShutdown(1));
609669
609673
  pendingHookMessages
609670
609674
  }, renderAndRun);
609671
609675
  }
609672
- }).version("1.1.2", "-v, --version", "Output the version number");
609676
+ }).version("1.1.4", "-v, --version", "Output the version number");
609673
609677
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
609674
609678
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
609675
609679
  if (canUserConfigureAdvisor()) {
@@ -610335,7 +610339,7 @@ if (false) {}
610335
610339
  async function main2() {
610336
610340
  const args = process.argv.slice(2);
610337
610341
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
610338
- console.log(`${"1.1.2"} (ZeroCLI)`);
610342
+ console.log(`${"1.1.4"} (ZeroCLI)`);
610339
610343
  return;
610340
610344
  }
610341
610345
  if (args.includes("--provider")) {
@@ -610477,4 +610481,4 @@ async function main2() {
610477
610481
  }
610478
610482
  main2();
610479
610483
 
610480
- //# debugId=051ED0C03B78342F64756E2164756E21
610484
+ //# debugId=3D3AFCEAE71526B464756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duheso/zerocli",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "Zero CLI to any LLM \u2014 OpenAI, Gemini, DeepSeek, Ollama, and 200+ models",
5
5
  "type": "module",
6
6
  "bin": {