@duheso/zerocli 1.1.4 → 1.1.5

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.4"}${RESET}`);
119229
+ out.push(` ${DIM}${rgb(...DIMCOL)}zero ${RESET}${rgb(...ACCENT)}v${"1.1.5"}${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.3"}.${fingerprint}`;
147420
+ const version2 = `${"1.1.5"}.${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.3"}`;
190438
+ return `claude-code/${"1.1.5"}`;
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.3"} (${process.env.USER_TYPE}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
190447
+ return `claude-cli/${"1.1.5"} (${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.3"}${suffix}`;
190461
+ return `claude-code/${"1.1.5"}${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.3";
244947
+ attributes["app.version"] = "1.1.5";
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.3");
257186
+ return computeFingerprint(firstMessageText, "1.1.5");
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.3");
257228
+ const fingerprint = computeFingerprint(messageText, "1.1.5");
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.3",
266130
+ appVersion: "1.1.5",
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.3");
266524
+ const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.1.5");
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.3"
266564
+ [ATTR_SERVICE_VERSION3]: "1.1.5"
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.3");
266609
+ return meterProvider2.getMeter("com.anthropic.claude_code", "1.1.5");
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.3");
266629
+ const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.1.5");
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.3");
266691
+ return meterProvider.getMeter("com.anthropic.claude_code", "1.1.5");
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.3", versionConfig.minVersion)) {
267503
+ if (versionConfig.minVersion && lt("1.1.5", versionConfig.minVersion)) {
267504
267504
  console.error(`
267505
- It looks like your version of ZeroCLI (${"1.1.3"}) needs an update.
267505
+ It looks like your version of ZeroCLI (${"1.1.5"}) 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.3"
267721
+ currentVersion: "1.1.5"
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.3"
267730
+ currentVersion: "1.1.5"
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.3";
268284
+ version2 = "1.1.5";
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.3";
269778
+ return "1.1.5";
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.3", maxVersion)) {
271146
- logForDebugging(`Native installer: current version ${"1.1.3"} is already at or above maxVersion ${maxVersion}, skipping update`);
271145
+ if (gte("1.1.5", maxVersion)) {
271146
+ logForDebugging(`Native installer: current version ${"1.1.5"} 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.3" && await versionIsAvailable(version2) && await isPossibleZeroBinary(executablePath)) {
271157
+ if (!forceReinstall && version2 === "1.1.5" && 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,
@@ -402280,7 +402280,7 @@ function getAnthropicEnvMetadata() {
402280
402280
  function getBuildAgeMinutes() {
402281
402281
  if (false)
402282
402282
  ;
402283
- const buildTime = new Date("2026-05-23T19:32:12.653Z").getTime();
402283
+ const buildTime = new Date("2026-05-23T19:36:11.503Z").getTime();
402284
402284
  if (isNaN(buildTime))
402285
402285
  return;
402286
402286
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -429763,7 +429763,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
429763
429763
  const client2 = new Client({
429764
429764
  name: "claude-code",
429765
429765
  title: "ZeroCLI",
429766
- version: "1.1.3",
429766
+ version: "1.1.5",
429767
429767
  description: "Anthropic's agentic coding tool",
429768
429768
  websiteUrl: PRODUCT_URL
429769
429769
  }, {
@@ -430115,7 +430115,7 @@ var init_client7 = __esm(() => {
430115
430115
  const client2 = new Client({
430116
430116
  name: "claude-code",
430117
430117
  title: "ZeroCLI",
430118
- version: "1.1.3",
430118
+ version: "1.1.5",
430119
430119
  description: "Anthropic's agentic coding tool",
430120
430120
  websiteUrl: PRODUCT_URL
430121
430121
  }, {
@@ -440850,7 +440850,7 @@ function Feedback({
440850
440850
  platform: env2.platform,
440851
440851
  gitRepo: envInfo.isGit,
440852
440852
  terminal: env2.terminal,
440853
- version: "1.1.3",
440853
+ version: "1.1.5",
440854
440854
  transcript: normalizeMessagesForAPI(messages),
440855
440855
  errors: sanitizedErrors,
440856
440856
  lastApiRequest: getLastAPIRequest(),
@@ -441043,7 +441043,7 @@ function Feedback({
441043
441043
  ", ",
441044
441044
  env2.terminal,
441045
441045
  ", v",
441046
- "1.1.3"
441046
+ "1.1.5"
441047
441047
  ]
441048
441048
  })
441049
441049
  ]
@@ -441151,7 +441151,7 @@ ${sanitizedDescription}
441151
441151
  ` + `**Environment Info**
441152
441152
  ` + `- Platform: ${env2.platform}
441153
441153
  ` + `- Terminal: ${env2.terminal}
441154
- ` + `- Version: ${"1.1.3"}
441154
+ ` + `- Version: ${"1.1.5"}
441155
441155
  ` + feedbackIdLine + `
441156
441156
  **Errors**
441157
441157
  \`\`\`json
@@ -444304,7 +444304,7 @@ function buildPrimarySection() {
444304
444304
  });
444305
444305
  return [{
444306
444306
  label: "Version",
444307
- value: "1.1.4"
444307
+ value: "1.1.5"
444308
444308
  }, {
444309
444309
  label: "Session name",
444310
444310
  value: nameValue
@@ -449074,7 +449074,7 @@ function Config({
449074
449074
  }
449075
449075
  })
449076
449076
  }) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_runtime183.jsx(ChannelDowngradeDialog, {
449077
- currentVersion: "1.1.3",
449077
+ currentVersion: "1.1.5",
449078
449078
  onChoice: (choice) => {
449079
449079
  setShowSubmenu(null);
449080
449080
  setTabsHidden(false);
@@ -449086,7 +449086,7 @@ function Config({
449086
449086
  autoUpdatesChannel: "stable"
449087
449087
  };
449088
449088
  if (choice === "stay") {
449089
- newSettings.minimumVersion = "1.1.3";
449089
+ newSettings.minimumVersion = "1.1.5";
449090
449090
  }
449091
449091
  updateSettingsForSource("userSettings", newSettings);
449092
449092
  setSettingsData((prev_27) => ({
@@ -456070,7 +456070,7 @@ function UpdateScreen({ onDone }) {
456070
456070
  setState({ type: "dev-build" });
456071
456071
  return;
456072
456072
  }
456073
- const currentVersion = "1.1.3";
456073
+ const currentVersion = "1.1.5";
456074
456074
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
456075
456075
  const latestVersion = await getLatestVersion(channel2);
456076
456076
  if (!latestVersion) {
@@ -458181,7 +458181,7 @@ function HelpV2(t0) {
458181
458181
  let t6;
458182
458182
  if ($2[31] !== tabs) {
458183
458183
  t6 = /* @__PURE__ */ jsx_runtime213.jsx(Tabs, {
458184
- title: `ZeroCLI v${"1.1.3"}`,
458184
+ title: `ZeroCLI v${"1.1.5"}`,
458185
458185
  color: "professionalBlue",
458186
458186
  defaultTab: "general",
458187
458187
  children: tabs
@@ -483025,7 +483025,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
483025
483025
  return [];
483026
483026
  }
483027
483027
  }
483028
- async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.3") {
483028
+ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.5") {
483029
483029
  if (process.env.USER_TYPE === "ant") {
483030
483030
  const changelog = MACRO.VERSION_CHANGELOG;
483031
483031
  if (changelog) {
@@ -512063,7 +512063,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
512063
512063
  smapsRollup,
512064
512064
  platform: process.platform,
512065
512065
  nodeVersion: process.version,
512066
- ccVersion: "1.1.3"
512066
+ ccVersion: "1.1.5"
512067
512067
  };
512068
512068
  }
512069
512069
  async function performHeapDump(trigger = "manual", dumpNumber = 0) {
@@ -512650,7 +512650,7 @@ var init_bridge_kick = __esm(() => {
512650
512650
  var call60 = async () => {
512651
512651
  return {
512652
512652
  type: "text",
512653
- value: `${"1.1.3"} (built ${"2026-05-23T19:32:12.653Z"})`
512653
+ value: `${"1.1.5"} (built ${"2026-05-23T19:36:11.503Z"})`
512654
512654
  };
512655
512655
  }, version2, version_default;
512656
512656
  var init_version = __esm(() => {
@@ -522964,7 +522964,7 @@ function generateHtmlReport(data, insights) {
522964
522964
  function buildExportData(data, insights, facets) {
522965
522965
  let version3;
522966
522966
  try {
522967
- version3 = "1.1.3";
522967
+ version3 = "1.1.5";
522968
522968
  } catch {
522969
522969
  version3 = "unknown";
522970
522970
  }
@@ -527164,7 +527164,7 @@ var init_sessionStorage = __esm(() => {
527164
527164
  init_slowOperations();
527165
527165
  init_uuid();
527166
527166
  try {
527167
- VERSION7 = "1.1.3";
527167
+ VERSION7 = "1.1.5";
527168
527168
  } catch {
527169
527169
  VERSION7 = "unknown";
527170
527170
  }
@@ -528485,7 +528485,7 @@ var init_filesystem = __esm(() => {
528485
528485
  });
528486
528486
  getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
528487
528487
  const nonce = randomBytes17(16).toString("hex");
528488
- return join137(getZeroTempDir(), "bundled-skills", "1.1.3", nonce);
528488
+ return join137(getZeroTempDir(), "bundled-skills", "1.1.5", nonce);
528489
528489
  });
528490
528490
  getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
528491
528491
  });
@@ -539345,7 +539345,7 @@ function buildSystemInitMessage(inputs) {
539345
539345
  slash_commands: inputs.commands.filter((c6) => c6.userInvocable !== false).map((c6) => c6.name),
539346
539346
  apiKeySource: getAnthropicApiKeyWithSource().source,
539347
539347
  betas: getSdkBetas(),
539348
- claude_code_version: "1.1.3",
539348
+ claude_code_version: "1.1.5",
539349
539349
  output_style: outputStyle2,
539350
539350
  agents: inputs.agents.map((agent2) => agent2.agentType),
539351
539351
  skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
@@ -554660,7 +554660,7 @@ var init_useVoiceEnabled = __esm(() => {
554660
554660
  function getSemverPart(version3) {
554661
554661
  return `${import_semver12.major(version3, { loose: true })}.${import_semver12.minor(version3, { loose: true })}.${import_semver12.patch(version3, { loose: true })}`;
554662
554662
  }
554663
- function useUpdateNotification(updatedVersion, initialVersion = "1.1.3") {
554663
+ function useUpdateNotification(updatedVersion, initialVersion = "1.1.5") {
554664
554664
  const [lastNotifiedSemver, setLastNotifiedSemver] = import_react226.useState(() => getSemverPart(initialVersion));
554665
554665
  if (!updatedVersion) {
554666
554666
  return null;
@@ -554703,7 +554703,7 @@ function AutoUpdater({
554703
554703
  return;
554704
554704
  }
554705
554705
  if (false) {}
554706
- const currentVersion = "1.1.3";
554706
+ const currentVersion = "1.1.5";
554707
554707
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
554708
554708
  let latestVersion = await getLatestVersion(channel2);
554709
554709
  const isDisabled = isAutoUpdaterDisabled();
@@ -554924,12 +554924,12 @@ function NativeAutoUpdater({
554924
554924
  logEvent("tengu_native_auto_updater_start", {});
554925
554925
  try {
554926
554926
  const maxVersion = await getMaxVersion();
554927
- if (maxVersion && gt("1.1.3", maxVersion)) {
554927
+ if (maxVersion && gt("1.1.5", maxVersion)) {
554928
554928
  const msg = await getMaxVersionMessage();
554929
554929
  setMaxVersionIssue(msg ?? "affects your version");
554930
554930
  }
554931
554931
  const result = await installLatest(channel2);
554932
- const currentVersion = "1.1.3";
554932
+ const currentVersion = "1.1.5";
554933
554933
  const latencyMs = Date.now() - startTime2;
554934
554934
  if (result.lockFailed) {
554935
554935
  logEvent("tengu_native_auto_updater_lock_contention", {
@@ -555071,17 +555071,17 @@ function PackageManagerAutoUpdater(t0) {
555071
555071
  const maxVersion = await getMaxVersion();
555072
555072
  if (maxVersion && latest && gt(latest, maxVersion)) {
555073
555073
  logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
555074
- if (gte("1.1.3", maxVersion)) {
555075
- logForDebugging(`PackageManagerAutoUpdater: current version ${"1.1.3"} is already at or above maxVersion ${maxVersion}, skipping update`);
555074
+ if (gte("1.1.5", maxVersion)) {
555075
+ logForDebugging(`PackageManagerAutoUpdater: current version ${"1.1.5"} is already at or above maxVersion ${maxVersion}, skipping update`);
555076
555076
  setUpdateAvailable(false);
555077
555077
  return;
555078
555078
  }
555079
555079
  latest = maxVersion;
555080
555080
  }
555081
- const hasUpdate = latest && !gte("1.1.3", latest) && !shouldSkipVersion(latest);
555081
+ const hasUpdate = latest && !gte("1.1.5", latest) && !shouldSkipVersion(latest);
555082
555082
  setUpdateAvailable(!!hasUpdate);
555083
555083
  if (hasUpdate) {
555084
- logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.1.3"} -> ${latest}`);
555084
+ logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.1.5"} -> ${latest}`);
555085
555085
  }
555086
555086
  };
555087
555087
  $2[0] = t1;
@@ -555115,7 +555115,7 @@ function PackageManagerAutoUpdater(t0) {
555115
555115
  wrap: "truncate",
555116
555116
  children: [
555117
555117
  "currentVersion: ",
555118
- "1.1.3"
555118
+ "1.1.5"
555119
555119
  ]
555120
555120
  });
555121
555121
  $2[3] = verbose;
@@ -564171,7 +564171,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
564171
564171
  project_dir: getOriginalCwd(),
564172
564172
  added_dirs: addedDirs
564173
564173
  },
564174
- version: "1.1.3",
564174
+ version: "1.1.5",
564175
564175
  output_style: {
564176
564176
  name: outputStyleName
564177
564177
  },
@@ -588674,7 +588674,7 @@ function WelcomeV2() {
588674
588674
  dimColor: true,
588675
588675
  children: [
588676
588676
  "v",
588677
- "1.1.4",
588677
+ "1.1.5",
588678
588678
  " "
588679
588679
  ]
588680
588680
  })
@@ -588908,7 +588908,7 @@ function WelcomeV2() {
588908
588908
  dimColor: true,
588909
588909
  children: [
588910
588910
  "v",
588911
- "1.1.4",
588911
+ "1.1.5",
588912
588912
  " "
588913
588913
  ]
588914
588914
  })
@@ -589155,7 +589155,7 @@ function AppleTerminalWelcomeV2(t0) {
589155
589155
  dimColor: true,
589156
589156
  children: [
589157
589157
  "v",
589158
- "1.1.4",
589158
+ "1.1.5",
589159
589159
  " "
589160
589160
  ]
589161
589161
  });
@@ -589428,7 +589428,7 @@ function AppleTerminalWelcomeV2(t0) {
589428
589428
  dimColor: true,
589429
589429
  children: [
589430
589430
  "v",
589431
- "1.1.4",
589431
+ "1.1.5",
589432
589432
  " "
589433
589433
  ]
589434
589434
  });
@@ -590940,7 +590940,7 @@ function completeOnboarding() {
590940
590940
  saveGlobalConfig((current) => ({
590941
590941
  ...current,
590942
590942
  hasCompletedOnboarding: true,
590943
- lastOnboardingVersion: "1.1.3"
590943
+ lastOnboardingVersion: "1.1.5"
590944
590944
  }));
590945
590945
  }
590946
590946
  function showDialog(root2, renderer) {
@@ -595191,7 +595191,7 @@ function appendToLog(path24, message) {
595191
595191
  cwd: getFsImplementation().cwd(),
595192
595192
  userType: process.env.USER_TYPE,
595193
595193
  sessionId: getSessionId(),
595194
- version: "1.1.3"
595194
+ version: "1.1.5"
595195
595195
  };
595196
595196
  getLogWriter(path24).write(messageWithTimestamp);
595197
595197
  }
@@ -595797,7 +595797,7 @@ async function startMCPServer(cwd2, debug, verbose) {
595797
595797
  setCwd(cwd2);
595798
595798
  const server = new Server({
595799
595799
  name: "claude/tengu",
595800
- version: "1.1.3"
595800
+ version: "1.1.5"
595801
595801
  }, {
595802
595802
  capabilities: {
595803
595803
  tools: {}
@@ -600436,8 +600436,8 @@ async function getEnvLessBridgeConfig() {
600436
600436
  }
600437
600437
  async function checkEnvLessBridgeMinVersion() {
600438
600438
  const cfg = await getEnvLessBridgeConfig();
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.
600439
+ if (cfg.min_version && lt("1.1.5", cfg.min_version)) {
600440
+ return `Your version of ZeroCLI (${"1.1.5"}) is too old for Remote Control.
600441
600441
  Version ${cfg.min_version} or higher is required. Run \`zero update\` to update.`;
600442
600442
  }
600443
600443
  return null;
@@ -600912,7 +600912,7 @@ async function initBridgeCore(params) {
600912
600912
  const rawApi = createBridgeApiClient({
600913
600913
  baseUrl,
600914
600914
  getAccessToken,
600915
- runnerVersion: "1.1.3",
600915
+ runnerVersion: "1.1.5",
600916
600916
  onDebug: logForDebugging,
600917
600917
  onAuth401,
600918
600918
  getTrustedDeviceToken
@@ -607200,7 +607200,7 @@ __export(exports_update2, {
607200
607200
  });
607201
607201
  async function update2() {
607202
607202
  logEvent("tengu_update_check", {});
607203
- writeToStdout(`Current version: ${"1.1.3"}
607203
+ writeToStdout(`Current version: ${"1.1.5"}
607204
607204
  `);
607205
607205
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
607206
607206
  writeToStdout(`Checking for updates to ${channel2} version...
@@ -607275,8 +607275,8 @@ async function update2() {
607275
607275
  writeToStdout(`Zero is managed by Homebrew.
607276
607276
  `);
607277
607277
  const latest = await getLatestVersion(channel2);
607278
- if (latest && !gte("1.1.3", latest)) {
607279
- writeToStdout(`Update available: ${"1.1.3"} → ${latest}
607278
+ if (latest && !gte("1.1.5", latest)) {
607279
+ writeToStdout(`Update available: ${"1.1.5"} → ${latest}
607280
607280
  `);
607281
607281
  writeToStdout(`
607282
607282
  `);
@@ -607292,8 +607292,8 @@ async function update2() {
607292
607292
  writeToStdout(`Zero is managed by winget.
607293
607293
  `);
607294
607294
  const latest = await getLatestVersion(channel2);
607295
- if (latest && !gte("1.1.3", latest)) {
607296
- writeToStdout(`Update available: ${"1.1.3"} → ${latest}
607295
+ if (latest && !gte("1.1.5", latest)) {
607296
+ writeToStdout(`Update available: ${"1.1.5"} → ${latest}
607297
607297
  `);
607298
607298
  writeToStdout(`
607299
607299
  `);
@@ -607309,8 +607309,8 @@ async function update2() {
607309
607309
  writeToStdout(`Zero is managed by apk.
607310
607310
  `);
607311
607311
  const latest = await getLatestVersion(channel2);
607312
- if (latest && !gte("1.1.3", latest)) {
607313
- writeToStdout(`Update available: ${"1.1.3"} → ${latest}
607312
+ if (latest && !gte("1.1.5", latest)) {
607313
+ writeToStdout(`Update available: ${"1.1.5"} → ${latest}
607314
607314
  `);
607315
607315
  writeToStdout(`
607316
607316
  `);
@@ -607375,11 +607375,11 @@ async function update2() {
607375
607375
  `);
607376
607376
  await gracefulShutdown(1);
607377
607377
  }
607378
- if (result.latestVersion === "1.1.3") {
607379
- writeToStdout(source_default.green(`Zero CLI is up to date (${"1.1.3"})`) + `
607378
+ if (result.latestVersion === "1.1.5") {
607379
+ writeToStdout(source_default.green(`Zero CLI is up to date (${"1.1.5"})`) + `
607380
607380
  `);
607381
607381
  } else {
607382
- writeToStdout(source_default.green(`Successfully updated from ${"1.1.3"} to version ${result.latestVersion}`) + `
607382
+ writeToStdout(source_default.green(`Successfully updated from ${"1.1.5"} to version ${result.latestVersion}`) + `
607383
607383
  `);
607384
607384
  await regenerateCompletionCache();
607385
607385
  }
@@ -607439,12 +607439,12 @@ async function update2() {
607439
607439
  `);
607440
607440
  await gracefulShutdown(1);
607441
607441
  }
607442
- if (latestVersion === "1.1.3") {
607443
- writeToStdout(source_default.green(`Zero CLI is up to date (${"1.1.3"})`) + `
607442
+ if (latestVersion === "1.1.5") {
607443
+ writeToStdout(source_default.green(`Zero CLI is up to date (${"1.1.5"})`) + `
607444
607444
  `);
607445
607445
  await gracefulShutdown(0);
607446
607446
  }
607447
- writeToStdout(`New version available: ${latestVersion} (current: ${"1.1.3"})
607447
+ writeToStdout(`New version available: ${latestVersion} (current: ${"1.1.5"})
607448
607448
  `);
607449
607449
  writeToStdout(`Installing update...
607450
607450
  `);
@@ -607489,7 +607489,7 @@ async function update2() {
607489
607489
  logForDebugging(`update: Installation status: ${status2}`);
607490
607490
  switch (status2) {
607491
607491
  case "success":
607492
- writeToStdout(source_default.green(`Successfully updated from ${"1.1.3"} to version ${latestVersion}`) + `
607492
+ writeToStdout(source_default.green(`Successfully updated from ${"1.1.5"} to version ${latestVersion}`) + `
607493
607493
  `);
607494
607494
  await regenerateCompletionCache();
607495
607495
  break;
@@ -608790,7 +608790,7 @@ ${customInstructions}` : customInstructions;
608790
608790
  }
608791
608791
  }
608792
608792
  logForDiagnosticsNoPII("info", "started", {
608793
- version: "1.1.3",
608793
+ version: "1.1.5",
608794
608794
  is_native_binary: isInBundledMode()
608795
608795
  });
608796
608796
  registerCleanup(async () => {
@@ -609673,7 +609673,7 @@ Usage: claude --remote "your task description"`, () => gracefulShutdown(1));
609673
609673
  pendingHookMessages
609674
609674
  }, renderAndRun);
609675
609675
  }
609676
- }).version("1.1.4", "-v, --version", "Output the version number");
609676
+ }).version("1.1.5", "-v, --version", "Output the version number");
609677
609677
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
609678
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.");
609679
609679
  if (canUserConfigureAdvisor()) {
@@ -610339,7 +610339,7 @@ if (false) {}
610339
610339
  async function main2() {
610340
610340
  const args = process.argv.slice(2);
610341
610341
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
610342
- console.log(`${"1.1.4"} (ZeroCLI)`);
610342
+ console.log(`${"1.1.5"} (ZeroCLI)`);
610343
610343
  return;
610344
610344
  }
610345
610345
  if (args.includes("--provider")) {
@@ -610481,4 +610481,4 @@ async function main2() {
610481
610481
  }
610482
610482
  main2();
610483
610483
 
610484
- //# debugId=3D3AFCEAE71526B464756E2164756E21
610484
+ //# debugId=7667F8121E20796E64756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duheso/zerocli",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Zero CLI to any LLM \u2014 OpenAI, Gemini, DeepSeek, Ollama, and 200+ models",
5
5
  "type": "module",
6
6
  "bin": {