@duheso/zerocli 1.1.2 → 1.1.3

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 +79 -79
  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.3"}${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,
@@ -402276,7 +402276,7 @@ function getAnthropicEnvMetadata() {
402276
402276
  function getBuildAgeMinutes() {
402277
402277
  if (false)
402278
402278
  ;
402279
- const buildTime = new Date("2026-05-23T19:20:07.267Z").getTime();
402279
+ const buildTime = new Date("2026-05-23T19:24:40.871Z").getTime();
402280
402280
  if (isNaN(buildTime))
402281
402281
  return;
402282
402282
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -429759,7 +429759,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
429759
429759
  const client2 = new Client({
429760
429760
  name: "claude-code",
429761
429761
  title: "ZeroCLI",
429762
- version: "1.1.0",
429762
+ version: "1.1.3",
429763
429763
  description: "Anthropic's agentic coding tool",
429764
429764
  websiteUrl: PRODUCT_URL
429765
429765
  }, {
@@ -430111,7 +430111,7 @@ var init_client7 = __esm(() => {
430111
430111
  const client2 = new Client({
430112
430112
  name: "claude-code",
430113
430113
  title: "ZeroCLI",
430114
- version: "1.1.0",
430114
+ version: "1.1.3",
430115
430115
  description: "Anthropic's agentic coding tool",
430116
430116
  websiteUrl: PRODUCT_URL
430117
430117
  }, {
@@ -440846,7 +440846,7 @@ function Feedback({
440846
440846
  platform: env2.platform,
440847
440847
  gitRepo: envInfo.isGit,
440848
440848
  terminal: env2.terminal,
440849
- version: "1.1.0",
440849
+ version: "1.1.3",
440850
440850
  transcript: normalizeMessagesForAPI(messages),
440851
440851
  errors: sanitizedErrors,
440852
440852
  lastApiRequest: getLastAPIRequest(),
@@ -441039,7 +441039,7 @@ function Feedback({
441039
441039
  ", ",
441040
441040
  env2.terminal,
441041
441041
  ", v",
441042
- "1.1.0"
441042
+ "1.1.3"
441043
441043
  ]
441044
441044
  })
441045
441045
  ]
@@ -441147,7 +441147,7 @@ ${sanitizedDescription}
441147
441147
  ` + `**Environment Info**
441148
441148
  ` + `- Platform: ${env2.platform}
441149
441149
  ` + `- Terminal: ${env2.terminal}
441150
- ` + `- Version: ${"1.1.0"}
441150
+ ` + `- Version: ${"1.1.3"}
441151
441151
  ` + feedbackIdLine + `
441152
441152
  **Errors**
441153
441153
  \`\`\`json
@@ -444300,7 +444300,7 @@ function buildPrimarySection() {
444300
444300
  });
444301
444301
  return [{
444302
444302
  label: "Version",
444303
- value: "1.1.2"
444303
+ value: "1.1.3"
444304
444304
  }, {
444305
444305
  label: "Session name",
444306
444306
  value: nameValue
@@ -449070,7 +449070,7 @@ function Config({
449070
449070
  }
449071
449071
  })
449072
449072
  }) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_runtime183.jsx(ChannelDowngradeDialog, {
449073
- currentVersion: "1.1.0",
449073
+ currentVersion: "1.1.3",
449074
449074
  onChoice: (choice) => {
449075
449075
  setShowSubmenu(null);
449076
449076
  setTabsHidden(false);
@@ -449082,7 +449082,7 @@ function Config({
449082
449082
  autoUpdatesChannel: "stable"
449083
449083
  };
449084
449084
  if (choice === "stay") {
449085
- newSettings.minimumVersion = "1.1.0";
449085
+ newSettings.minimumVersion = "1.1.3";
449086
449086
  }
449087
449087
  updateSettingsForSource("userSettings", newSettings);
449088
449088
  setSettingsData((prev_27) => ({
@@ -456066,7 +456066,7 @@ function UpdateScreen({ onDone }) {
456066
456066
  setState({ type: "dev-build" });
456067
456067
  return;
456068
456068
  }
456069
- const currentVersion = "1.1.0";
456069
+ const currentVersion = "1.1.3";
456070
456070
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
456071
456071
  const latestVersion = await getLatestVersion(channel2);
456072
456072
  if (!latestVersion) {
@@ -458177,7 +458177,7 @@ function HelpV2(t0) {
458177
458177
  let t6;
458178
458178
  if ($2[31] !== tabs) {
458179
458179
  t6 = /* @__PURE__ */ jsx_runtime213.jsx(Tabs, {
458180
- title: `ZeroCLI v${"1.1.0"}`,
458180
+ title: `ZeroCLI v${"1.1.3"}`,
458181
458181
  color: "professionalBlue",
458182
458182
  defaultTab: "general",
458183
458183
  children: tabs
@@ -483021,7 +483021,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
483021
483021
  return [];
483022
483022
  }
483023
483023
  }
483024
- async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.0") {
483024
+ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.3") {
483025
483025
  if (process.env.USER_TYPE === "ant") {
483026
483026
  const changelog = MACRO.VERSION_CHANGELOG;
483027
483027
  if (changelog) {
@@ -512059,7 +512059,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
512059
512059
  smapsRollup,
512060
512060
  platform: process.platform,
512061
512061
  nodeVersion: process.version,
512062
- ccVersion: "1.1.0"
512062
+ ccVersion: "1.1.3"
512063
512063
  };
512064
512064
  }
512065
512065
  async function performHeapDump(trigger = "manual", dumpNumber = 0) {
@@ -512646,7 +512646,7 @@ var init_bridge_kick = __esm(() => {
512646
512646
  var call60 = async () => {
512647
512647
  return {
512648
512648
  type: "text",
512649
- value: `${"1.1.0"} (built ${"2026-05-23T19:20:07.267Z"})`
512649
+ value: `${"1.1.3"} (built ${"2026-05-23T19:24:40.871Z"})`
512650
512650
  };
512651
512651
  }, version2, version_default;
512652
512652
  var init_version = __esm(() => {
@@ -522960,7 +522960,7 @@ function generateHtmlReport(data, insights) {
522960
522960
  function buildExportData(data, insights, facets) {
522961
522961
  let version3;
522962
522962
  try {
522963
- version3 = "1.1.0";
522963
+ version3 = "1.1.3";
522964
522964
  } catch {
522965
522965
  version3 = "unknown";
522966
522966
  }
@@ -527160,7 +527160,7 @@ var init_sessionStorage = __esm(() => {
527160
527160
  init_slowOperations();
527161
527161
  init_uuid();
527162
527162
  try {
527163
- VERSION7 = "1.1.0";
527163
+ VERSION7 = "1.1.3";
527164
527164
  } catch {
527165
527165
  VERSION7 = "unknown";
527166
527166
  }
@@ -528481,7 +528481,7 @@ var init_filesystem = __esm(() => {
528481
528481
  });
528482
528482
  getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
528483
528483
  const nonce = randomBytes17(16).toString("hex");
528484
- return join137(getZeroTempDir(), "bundled-skills", "1.1.0", nonce);
528484
+ return join137(getZeroTempDir(), "bundled-skills", "1.1.3", nonce);
528485
528485
  });
528486
528486
  getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
528487
528487
  });
@@ -539341,7 +539341,7 @@ function buildSystemInitMessage(inputs) {
539341
539341
  slash_commands: inputs.commands.filter((c6) => c6.userInvocable !== false).map((c6) => c6.name),
539342
539342
  apiKeySource: getAnthropicApiKeyWithSource().source,
539343
539343
  betas: getSdkBetas(),
539344
- claude_code_version: "1.1.0",
539344
+ claude_code_version: "1.1.3",
539345
539345
  output_style: outputStyle2,
539346
539346
  agents: inputs.agents.map((agent2) => agent2.agentType),
539347
539347
  skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
@@ -554656,7 +554656,7 @@ var init_useVoiceEnabled = __esm(() => {
554656
554656
  function getSemverPart(version3) {
554657
554657
  return `${import_semver12.major(version3, { loose: true })}.${import_semver12.minor(version3, { loose: true })}.${import_semver12.patch(version3, { loose: true })}`;
554658
554658
  }
554659
- function useUpdateNotification(updatedVersion, initialVersion = "1.1.0") {
554659
+ function useUpdateNotification(updatedVersion, initialVersion = "1.1.3") {
554660
554660
  const [lastNotifiedSemver, setLastNotifiedSemver] = import_react226.useState(() => getSemverPart(initialVersion));
554661
554661
  if (!updatedVersion) {
554662
554662
  return null;
@@ -554699,7 +554699,7 @@ function AutoUpdater({
554699
554699
  return;
554700
554700
  }
554701
554701
  if (false) {}
554702
- const currentVersion = "1.1.0";
554702
+ const currentVersion = "1.1.3";
554703
554703
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
554704
554704
  let latestVersion = await getLatestVersion(channel2);
554705
554705
  const isDisabled = isAutoUpdaterDisabled();
@@ -554920,12 +554920,12 @@ function NativeAutoUpdater({
554920
554920
  logEvent("tengu_native_auto_updater_start", {});
554921
554921
  try {
554922
554922
  const maxVersion = await getMaxVersion();
554923
- if (maxVersion && gt("1.1.0", maxVersion)) {
554923
+ if (maxVersion && gt("1.1.3", maxVersion)) {
554924
554924
  const msg = await getMaxVersionMessage();
554925
554925
  setMaxVersionIssue(msg ?? "affects your version");
554926
554926
  }
554927
554927
  const result = await installLatest(channel2);
554928
- const currentVersion = "1.1.0";
554928
+ const currentVersion = "1.1.3";
554929
554929
  const latencyMs = Date.now() - startTime2;
554930
554930
  if (result.lockFailed) {
554931
554931
  logEvent("tengu_native_auto_updater_lock_contention", {
@@ -555067,17 +555067,17 @@ function PackageManagerAutoUpdater(t0) {
555067
555067
  const maxVersion = await getMaxVersion();
555068
555068
  if (maxVersion && latest && gt(latest, maxVersion)) {
555069
555069
  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`);
555070
+ if (gte("1.1.3", maxVersion)) {
555071
+ logForDebugging(`PackageManagerAutoUpdater: current version ${"1.1.3"} is already at or above maxVersion ${maxVersion}, skipping update`);
555072
555072
  setUpdateAvailable(false);
555073
555073
  return;
555074
555074
  }
555075
555075
  latest = maxVersion;
555076
555076
  }
555077
- const hasUpdate = latest && !gte("1.1.0", latest) && !shouldSkipVersion(latest);
555077
+ const hasUpdate = latest && !gte("1.1.3", latest) && !shouldSkipVersion(latest);
555078
555078
  setUpdateAvailable(!!hasUpdate);
555079
555079
  if (hasUpdate) {
555080
- logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.1.0"} -> ${latest}`);
555080
+ logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.1.3"} -> ${latest}`);
555081
555081
  }
555082
555082
  };
555083
555083
  $2[0] = t1;
@@ -555111,7 +555111,7 @@ function PackageManagerAutoUpdater(t0) {
555111
555111
  wrap: "truncate",
555112
555112
  children: [
555113
555113
  "currentVersion: ",
555114
- "1.1.0"
555114
+ "1.1.3"
555115
555115
  ]
555116
555116
  });
555117
555117
  $2[3] = verbose;
@@ -564167,7 +564167,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
564167
564167
  project_dir: getOriginalCwd(),
564168
564168
  added_dirs: addedDirs
564169
564169
  },
564170
- version: "1.1.0",
564170
+ version: "1.1.3",
564171
564171
  output_style: {
564172
564172
  name: outputStyleName
564173
564173
  },
@@ -588670,7 +588670,7 @@ function WelcomeV2() {
588670
588670
  dimColor: true,
588671
588671
  children: [
588672
588672
  "v",
588673
- "1.1.2",
588673
+ "1.1.3",
588674
588674
  " "
588675
588675
  ]
588676
588676
  })
@@ -588904,7 +588904,7 @@ function WelcomeV2() {
588904
588904
  dimColor: true,
588905
588905
  children: [
588906
588906
  "v",
588907
- "1.1.2",
588907
+ "1.1.3",
588908
588908
  " "
588909
588909
  ]
588910
588910
  })
@@ -589151,7 +589151,7 @@ function AppleTerminalWelcomeV2(t0) {
589151
589151
  dimColor: true,
589152
589152
  children: [
589153
589153
  "v",
589154
- "1.1.2",
589154
+ "1.1.3",
589155
589155
  " "
589156
589156
  ]
589157
589157
  });
@@ -589424,7 +589424,7 @@ function AppleTerminalWelcomeV2(t0) {
589424
589424
  dimColor: true,
589425
589425
  children: [
589426
589426
  "v",
589427
- "1.1.2",
589427
+ "1.1.3",
589428
589428
  " "
589429
589429
  ]
589430
589430
  });
@@ -590936,7 +590936,7 @@ function completeOnboarding() {
590936
590936
  saveGlobalConfig((current) => ({
590937
590937
  ...current,
590938
590938
  hasCompletedOnboarding: true,
590939
- lastOnboardingVersion: "1.1.0"
590939
+ lastOnboardingVersion: "1.1.3"
590940
590940
  }));
590941
590941
  }
590942
590942
  function showDialog(root2, renderer) {
@@ -595187,7 +595187,7 @@ function appendToLog(path24, message) {
595187
595187
  cwd: getFsImplementation().cwd(),
595188
595188
  userType: process.env.USER_TYPE,
595189
595189
  sessionId: getSessionId(),
595190
- version: "1.1.0"
595190
+ version: "1.1.3"
595191
595191
  };
595192
595192
  getLogWriter(path24).write(messageWithTimestamp);
595193
595193
  }
@@ -595793,7 +595793,7 @@ async function startMCPServer(cwd2, debug, verbose) {
595793
595793
  setCwd(cwd2);
595794
595794
  const server = new Server({
595795
595795
  name: "claude/tengu",
595796
- version: "1.1.0"
595796
+ version: "1.1.3"
595797
595797
  }, {
595798
595798
  capabilities: {
595799
595799
  tools: {}
@@ -600432,8 +600432,8 @@ async function getEnvLessBridgeConfig() {
600432
600432
  }
600433
600433
  async function checkEnvLessBridgeMinVersion() {
600434
600434
  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.
600435
+ if (cfg.min_version && lt("1.1.3", cfg.min_version)) {
600436
+ return `Your version of ZeroCLI (${"1.1.3"}) is too old for Remote Control.
600437
600437
  Version ${cfg.min_version} or higher is required. Run \`zero update\` to update.`;
600438
600438
  }
600439
600439
  return null;
@@ -600908,7 +600908,7 @@ async function initBridgeCore(params) {
600908
600908
  const rawApi = createBridgeApiClient({
600909
600909
  baseUrl,
600910
600910
  getAccessToken,
600911
- runnerVersion: "1.1.0",
600911
+ runnerVersion: "1.1.3",
600912
600912
  onDebug: logForDebugging,
600913
600913
  onAuth401,
600914
600914
  getTrustedDeviceToken
@@ -607196,7 +607196,7 @@ __export(exports_update2, {
607196
607196
  });
607197
607197
  async function update2() {
607198
607198
  logEvent("tengu_update_check", {});
607199
- writeToStdout(`Current version: ${"1.1.0"}
607199
+ writeToStdout(`Current version: ${"1.1.3"}
607200
607200
  `);
607201
607201
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
607202
607202
  writeToStdout(`Checking for updates to ${channel2} version...
@@ -607271,8 +607271,8 @@ async function update2() {
607271
607271
  writeToStdout(`Zero is managed by Homebrew.
607272
607272
  `);
607273
607273
  const latest = await getLatestVersion(channel2);
607274
- if (latest && !gte("1.1.0", latest)) {
607275
- writeToStdout(`Update available: ${"1.1.0"} → ${latest}
607274
+ if (latest && !gte("1.1.3", latest)) {
607275
+ writeToStdout(`Update available: ${"1.1.3"} → ${latest}
607276
607276
  `);
607277
607277
  writeToStdout(`
607278
607278
  `);
@@ -607288,8 +607288,8 @@ async function update2() {
607288
607288
  writeToStdout(`Zero is managed by winget.
607289
607289
  `);
607290
607290
  const latest = await getLatestVersion(channel2);
607291
- if (latest && !gte("1.1.0", latest)) {
607292
- writeToStdout(`Update available: ${"1.1.0"} → ${latest}
607291
+ if (latest && !gte("1.1.3", latest)) {
607292
+ writeToStdout(`Update available: ${"1.1.3"} → ${latest}
607293
607293
  `);
607294
607294
  writeToStdout(`
607295
607295
  `);
@@ -607305,8 +607305,8 @@ async function update2() {
607305
607305
  writeToStdout(`Zero is managed by apk.
607306
607306
  `);
607307
607307
  const latest = await getLatestVersion(channel2);
607308
- if (latest && !gte("1.1.0", latest)) {
607309
- writeToStdout(`Update available: ${"1.1.0"} → ${latest}
607308
+ if (latest && !gte("1.1.3", latest)) {
607309
+ writeToStdout(`Update available: ${"1.1.3"} → ${latest}
607310
607310
  `);
607311
607311
  writeToStdout(`
607312
607312
  `);
@@ -607371,11 +607371,11 @@ async function update2() {
607371
607371
  `);
607372
607372
  await gracefulShutdown(1);
607373
607373
  }
607374
- if (result.latestVersion === "1.1.0") {
607375
- writeToStdout(source_default.green(`Zero CLI is up to date (${"1.1.0"})`) + `
607374
+ if (result.latestVersion === "1.1.3") {
607375
+ writeToStdout(source_default.green(`Zero CLI is up to date (${"1.1.3"})`) + `
607376
607376
  `);
607377
607377
  } else {
607378
- writeToStdout(source_default.green(`Successfully updated from ${"1.1.0"} to version ${result.latestVersion}`) + `
607378
+ writeToStdout(source_default.green(`Successfully updated from ${"1.1.3"} to version ${result.latestVersion}`) + `
607379
607379
  `);
607380
607380
  await regenerateCompletionCache();
607381
607381
  }
@@ -607435,12 +607435,12 @@ async function update2() {
607435
607435
  `);
607436
607436
  await gracefulShutdown(1);
607437
607437
  }
607438
- if (latestVersion === "1.1.0") {
607439
- writeToStdout(source_default.green(`Zero CLI is up to date (${"1.1.0"})`) + `
607438
+ if (latestVersion === "1.1.3") {
607439
+ writeToStdout(source_default.green(`Zero CLI is up to date (${"1.1.3"})`) + `
607440
607440
  `);
607441
607441
  await gracefulShutdown(0);
607442
607442
  }
607443
- writeToStdout(`New version available: ${latestVersion} (current: ${"1.1.0"})
607443
+ writeToStdout(`New version available: ${latestVersion} (current: ${"1.1.3"})
607444
607444
  `);
607445
607445
  writeToStdout(`Installing update...
607446
607446
  `);
@@ -607485,7 +607485,7 @@ async function update2() {
607485
607485
  logForDebugging(`update: Installation status: ${status2}`);
607486
607486
  switch (status2) {
607487
607487
  case "success":
607488
- writeToStdout(source_default.green(`Successfully updated from ${"1.1.0"} to version ${latestVersion}`) + `
607488
+ writeToStdout(source_default.green(`Successfully updated from ${"1.1.3"} to version ${latestVersion}`) + `
607489
607489
  `);
607490
607490
  await regenerateCompletionCache();
607491
607491
  break;
@@ -608786,7 +608786,7 @@ ${customInstructions}` : customInstructions;
608786
608786
  }
608787
608787
  }
608788
608788
  logForDiagnosticsNoPII("info", "started", {
608789
- version: "1.1.0",
608789
+ version: "1.1.3",
608790
608790
  is_native_binary: isInBundledMode()
608791
608791
  });
608792
608792
  registerCleanup(async () => {
@@ -609669,7 +609669,7 @@ Usage: claude --remote "your task description"`, () => gracefulShutdown(1));
609669
609669
  pendingHookMessages
609670
609670
  }, renderAndRun);
609671
609671
  }
609672
- }).version("1.1.2", "-v, --version", "Output the version number");
609672
+ }).version("1.1.3", "-v, --version", "Output the version number");
609673
609673
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
609674
609674
  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
609675
  if (canUserConfigureAdvisor()) {
@@ -610335,7 +610335,7 @@ if (false) {}
610335
610335
  async function main2() {
610336
610336
  const args = process.argv.slice(2);
610337
610337
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
610338
- console.log(`${"1.1.2"} (ZeroCLI)`);
610338
+ console.log(`${"1.1.3"} (ZeroCLI)`);
610339
610339
  return;
610340
610340
  }
610341
610341
  if (args.includes("--provider")) {
@@ -610477,4 +610477,4 @@ async function main2() {
610477
610477
  }
610478
610478
  main2();
610479
610479
 
610480
- //# debugId=051ED0C03B78342F64756E2164756E21
610480
+ //# debugId=167C45783D090C3E64756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duheso/zerocli",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Zero CLI to any LLM \u2014 OpenAI, Gemini, DeepSeek, Ollama, and 200+ models",
5
5
  "type": "module",
6
6
  "bin": {