@abdoknbgit/tau 0.8.5 → 0.8.6

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 +93 -93
  2. package/package.json +2 -2
package/dist/cli.mjs CHANGED
@@ -38146,7 +38146,7 @@ var init_model = __esm({
38146
38146
 
38147
38147
  // src/utils/userAgent.ts
38148
38148
  function getClaudeCodeUserAgent() {
38149
- return `claude-code/${"0.8.5"}`;
38149
+ return `claude-code/${"0.8.6"}`;
38150
38150
  }
38151
38151
  var init_userAgent = __esm({
38152
38152
  "src/utils/userAgent.ts"() {
@@ -38176,7 +38176,7 @@ function getUserAgent() {
38176
38176
  const clientApp = process.env.CLAUDE_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}` : "";
38177
38177
  const workload = getWorkload();
38178
38178
  const workloadSuffix = workload ? `, workload/${workload}` : "";
38179
- return `claude-cli/${"0.8.5"} (${"external"}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
38179
+ return `claude-cli/${"0.8.6"} (${"external"}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
38180
38180
  }
38181
38181
  function getMCPUserAgent() {
38182
38182
  const parts = [];
@@ -38190,7 +38190,7 @@ function getMCPUserAgent() {
38190
38190
  parts.push(`client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}`);
38191
38191
  }
38192
38192
  const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
38193
- return `claude-code/${"0.8.5"}${suffix}`;
38193
+ return `claude-code/${"0.8.6"}${suffix}`;
38194
38194
  }
38195
38195
  function getWebFetchUserAgent() {
38196
38196
  return `Claude-User (${getClaudeCodeUserAgent()}; +https://support.anthropic.com/)`;
@@ -78965,8 +78965,8 @@ function isCseShimEnabled() {
78965
78965
  function checkBridgeMinVersion() {
78966
78966
  if (feature("BRIDGE_MODE")) {
78967
78967
  const config2 = getDynamicConfig_CACHED_MAY_BE_STALE("tengu_bridge_min_version", { minVersion: "0.0.0" });
78968
- if (config2.minVersion && lt("0.8.5", config2.minVersion)) {
78969
- return `Your version of Tau (${"0.8.5"}) is too old for Remote Control.
78968
+ if (config2.minVersion && lt("0.8.6", config2.minVersion)) {
78969
+ return `Your version of Tau (${"0.8.6"}) is too old for Remote Control.
78970
78970
  Version ${config2.minVersion} or higher is required. Run \`tau update\` to update.`;
78971
78971
  }
78972
78972
  }
@@ -80010,7 +80010,7 @@ var init_user = __esm({
80010
80010
  deviceId,
80011
80011
  sessionId: getSessionId(),
80012
80012
  email: getEmail(),
80013
- appVersion: "0.8.5",
80013
+ appVersion: "0.8.6",
80014
80014
  platform: getHostPlatformForAnalytics(),
80015
80015
  organizationUuid,
80016
80016
  accountUuid,
@@ -81753,7 +81753,7 @@ var init_metadata = __esm({
81753
81753
  COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
81754
81754
  WHITESPACE_REGEX = /\s+/;
81755
81755
  getVersionBase = memoize23(() => {
81756
- const match = "0.8.5".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
81756
+ const match = "0.8.6".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
81757
81757
  return match ? match[0] : void 0;
81758
81758
  });
81759
81759
  buildEnvContext = memoize23(async () => {
@@ -81797,9 +81797,9 @@ var init_metadata = __esm({
81797
81797
  isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
81798
81798
  isClaudeCodeAction: isEnvTruthy(process.env.CLAUDE_CODE_ACTION),
81799
81799
  isClaudeAiAuth: isClaudeAISubscriber(),
81800
- version: "0.8.5",
81800
+ version: "0.8.6",
81801
81801
  versionBase: getVersionBase(),
81802
- buildTime: "2026-05-20T18:37:32.462Z",
81802
+ buildTime: "2026-05-20T20:19:06.656Z",
81803
81803
  deploymentEnvironment: env.detectDeploymentEnvironment(),
81804
81804
  ...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
81805
81805
  githubEventName: process.env.GITHUB_EVENT_NAME,
@@ -82549,7 +82549,7 @@ function initialize1PEventLogging() {
82549
82549
  const platform6 = getPlatform();
82550
82550
  const attributes = {
82551
82551
  [ATTR_SERVICE_NAME]: "claude-code",
82552
- [ATTR_SERVICE_VERSION]: "0.8.5"
82552
+ [ATTR_SERVICE_VERSION]: "0.8.6"
82553
82553
  };
82554
82554
  if (platform6 === "wsl") {
82555
82555
  const wslVersion = getWslVersion();
@@ -82578,7 +82578,7 @@ function initialize1PEventLogging() {
82578
82578
  });
82579
82579
  firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger(
82580
82580
  "com.anthropic.claude_code.events",
82581
- "0.8.5"
82581
+ "0.8.6"
82582
82582
  );
82583
82583
  }
82584
82584
  async function reinitialize1PEventLoggingIfConfigChanged() {
@@ -103589,7 +103589,7 @@ function getAttributionHeader(fingerprint) {
103589
103589
  if (!isAttributionHeaderEnabled()) {
103590
103590
  return "";
103591
103591
  }
103592
- const version2 = `${"0.8.5"}.${fingerprint}`;
103592
+ const version2 = `${"0.8.6"}.${fingerprint}`;
103593
103593
  const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
103594
103594
  const cch = feature("NATIVE_CLIENT_ATTESTATION") ? " cch=00000;" : "";
103595
103595
  const workload = getWorkload();
@@ -108029,7 +108029,7 @@ function getTelemetryAttributes() {
108029
108029
  attributes["session.id"] = sessionId;
108030
108030
  }
108031
108031
  if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
108032
- attributes["app.version"] = "0.8.5";
108032
+ attributes["app.version"] = "0.8.6";
108033
108033
  }
108034
108034
  const oauthAccount = getOauthAccountInfo();
108035
108035
  if (oauthAccount) {
@@ -156687,7 +156687,7 @@ function computeFingerprint(messageText, version2) {
156687
156687
  }
156688
156688
  function computeFingerprintFromMessages(messages) {
156689
156689
  const firstMessageText = extractFirstMessageText(messages);
156690
- return computeFingerprint(firstMessageText, "0.8.5");
156690
+ return computeFingerprint(firstMessageText, "0.8.6");
156691
156691
  }
156692
156692
  var FINGERPRINT_SALT;
156693
156693
  var init_fingerprint = __esm({
@@ -156731,7 +156731,7 @@ async function sideQuery(opts) {
156731
156731
  betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
156732
156732
  }
156733
156733
  const messageText = extractFirstUserMessageText(messages);
156734
- const fingerprint = computeFingerprint(messageText, "0.8.5");
156734
+ const fingerprint = computeFingerprint(messageText, "0.8.6");
156735
156735
  const attributionHeader = getAttributionHeader(fingerprint);
156736
156736
  const systemBlocks = [
156737
156737
  attributionHeader ? { type: "text", text: attributionHeader } : null,
@@ -158245,7 +158245,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
158245
158245
  {
158246
158246
  name: "claude-code",
158247
158247
  title: "Tau",
158248
- version: "0.8.5",
158248
+ version: "0.8.6",
158249
158249
  description: "Anthropic's agentic coding tool",
158250
158250
  websiteUrl: PRODUCT_URL
158251
158251
  },
@@ -158671,7 +158671,7 @@ var init_client4 = __esm({
158671
158671
  {
158672
158672
  name: "claude-code",
158673
158673
  title: "Tau",
158674
- version: "0.8.5",
158674
+ version: "0.8.6",
158675
158675
  description: "Anthropic's agentic coding tool",
158676
158676
  websiteUrl: PRODUCT_URL
158677
158677
  },
@@ -160317,7 +160317,7 @@ function getInstallationEnv() {
160317
160317
  return void 0;
160318
160318
  }
160319
160319
  function getClaudeCodeVersion() {
160320
- return "0.8.5";
160320
+ return "0.8.6";
160321
160321
  }
160322
160322
  async function getInstalledVSCodeExtensionVersion(command9) {
160323
160323
  const { stdout } = await execFileNoThrow(
@@ -173714,7 +173714,7 @@ async function initializeBetaTracing(resource) {
173714
173714
  setLoggerProvider(loggerProvider);
173715
173715
  const eventLogger = logs.getLogger(
173716
173716
  "com.anthropic.claude_code.events",
173717
- "0.8.5"
173717
+ "0.8.6"
173718
173718
  );
173719
173719
  setEventLogger(eventLogger);
173720
173720
  process.on("beforeExit", async () => {
@@ -173757,7 +173757,7 @@ async function initializeTelemetry() {
173757
173757
  const platform6 = getPlatform();
173758
173758
  const baseAttributes = {
173759
173759
  [ATTR_SERVICE_NAME2]: "claude-code",
173760
- [ATTR_SERVICE_VERSION2]: "0.8.5"
173760
+ [ATTR_SERVICE_VERSION2]: "0.8.6"
173761
173761
  };
173762
173762
  if (platform6 === "wsl") {
173763
173763
  const wslVersion = getWslVersion();
@@ -173815,7 +173815,7 @@ async function initializeTelemetry() {
173815
173815
  }
173816
173816
  };
173817
173817
  registerCleanup(shutdownTelemetry2);
173818
- return meterProvider2.getMeter("com.anthropic.claude_code", "0.8.5");
173818
+ return meterProvider2.getMeter("com.anthropic.claude_code", "0.8.6");
173819
173819
  }
173820
173820
  const meterProvider = new MeterProvider({
173821
173821
  resource,
@@ -173844,7 +173844,7 @@ async function initializeTelemetry() {
173844
173844
  setLoggerProvider(loggerProvider);
173845
173845
  const eventLogger = logs.getLogger(
173846
173846
  "com.anthropic.claude_code.events",
173847
- "0.8.5"
173847
+ "0.8.6"
173848
173848
  );
173849
173849
  setEventLogger(eventLogger);
173850
173850
  logForDebugging("[3P telemetry] Event logger set successfully");
@@ -173916,7 +173916,7 @@ Current timeout: ${timeoutMs}ms
173916
173916
  }
173917
173917
  };
173918
173918
  registerCleanup(shutdownTelemetry);
173919
- return meterProvider.getMeter("com.anthropic.claude_code", "0.8.5");
173919
+ return meterProvider.getMeter("com.anthropic.claude_code", "0.8.6");
173920
173920
  }
173921
173921
  async function flushTelemetry() {
173922
173922
  const meterProvider = getMeterProvider();
@@ -175334,7 +175334,7 @@ function detectLinuxGlobPatternWarnings() {
175334
175334
  }
175335
175335
  async function getDoctorDiagnostic() {
175336
175336
  const installationType = await getCurrentInstallationType();
175337
- const version2 = typeof MACRO !== "undefined" && "0.8.5" ? "0.8.5" : "unknown";
175337
+ const version2 = typeof MACRO !== "undefined" && "0.8.6" ? "0.8.6" : "unknown";
175338
175338
  const installationPath = await getInstallationPath();
175339
175339
  const invokedBinary = getInvokedBinary();
175340
175340
  const multipleInstallations = await detectMultipleInstallations();
@@ -176330,9 +176330,9 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
176330
176330
  logForDebugging(
176331
176331
  `Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`
176332
176332
  );
176333
- if (gte("0.8.5", maxVersion)) {
176333
+ if (gte("0.8.6", maxVersion)) {
176334
176334
  logForDebugging(
176335
- `Native installer: current version ${"0.8.5"} is already at or above maxVersion ${maxVersion}, skipping update`
176335
+ `Native installer: current version ${"0.8.6"} is already at or above maxVersion ${maxVersion}, skipping update`
176336
176336
  );
176337
176337
  logEvent("tengu_native_update_skipped_max_version", {
176338
176338
  latency_ms: Date.now() - startTime,
@@ -176344,7 +176344,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
176344
176344
  version2 = maxVersion;
176345
176345
  }
176346
176346
  }
176347
- if (!forceReinstall && version2 === "0.8.5" && await versionIsAvailable(version2) && await isPossibleClaudeBinary(executablePath)) {
176347
+ if (!forceReinstall && version2 === "0.8.6" && await versionIsAvailable(version2) && await isPossibleClaudeBinary(executablePath)) {
176348
176348
  logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
176349
176349
  logEvent("tengu_native_update_complete", {
176350
176350
  latency_ms: Date.now() - startTime,
@@ -237328,7 +237328,7 @@ function getAnthropicEnvMetadata() {
237328
237328
  }
237329
237329
  function getBuildAgeMinutes() {
237330
237330
  if (false) return void 0;
237331
- const buildTime = (/* @__PURE__ */ new Date("2026-05-20T18:37:32.462Z")).getTime();
237331
+ const buildTime = (/* @__PURE__ */ new Date("2026-05-20T20:19:06.656Z")).getTime();
237332
237332
  if (isNaN(buildTime)) return void 0;
237333
237333
  return Math.floor((Date.now() - buildTime) / 6e4);
237334
237334
  }
@@ -274580,7 +274580,7 @@ var init_filesystem = __esm({
274580
274580
  getBundledSkillsRoot = memoize60(
274581
274581
  function getBundledSkillsRoot2() {
274582
274582
  const nonce = randomBytes20(16).toString("hex");
274583
- return join118(getClaudeTempDir(), "bundled-skills", "0.8.5", nonce);
274583
+ return join118(getClaudeTempDir(), "bundled-skills", "0.8.6", nonce);
274584
274584
  }
274585
274585
  );
274586
274586
  getResolvedWorkingDirPaths = memoize60(getPathsForPermissionCheck);
@@ -278052,7 +278052,7 @@ function Feedback({
278052
278052
  platform: env.platform,
278053
278053
  gitRepo: envInfo.isGit,
278054
278054
  terminal: env.terminal,
278055
- version: "0.8.5",
278055
+ version: "0.8.6",
278056
278056
  transcript: normalizeMessagesForAPI(messages),
278057
278057
  errors: sanitizedErrors,
278058
278058
  lastApiRequest: getLastAPIRequest(),
@@ -278177,7 +278177,7 @@ function Feedback({
278177
278177
  ", ",
278178
278178
  env.terminal,
278179
278179
  ", v",
278180
- "0.8.5"
278180
+ "0.8.6"
278181
278181
  ] })
278182
278182
  ] }),
278183
278183
  envInfo.gitState && /* @__PURE__ */ jsxs103(ThemedText, { children: [
@@ -278228,7 +278228,7 @@ ${sanitizedDescription}
278228
278228
  **Environment Info**
278229
278229
  - Platform: ${env.platform}
278230
278230
  - Terminal: ${env.terminal}
278231
- - Version: ${"0.8.5"}
278231
+ - Version: ${"0.8.6"}
278232
278232
  - Feedback ID: ${feedbackId}
278233
278233
 
278234
278234
  **Errors**
@@ -281490,7 +281490,7 @@ function buildPrimarySection() {
281490
281490
  const nameValue = customTitle ?? /* @__PURE__ */ jsx173(ThemedText, { dimColor: true, children: "/rename to add a name" });
281491
281491
  return [{
281492
281492
  label: "Version",
281493
- value: "0.8.5"
281493
+ value: "0.8.6"
281494
281494
  }, {
281495
281495
  label: "Session name",
281496
281496
  value: nameValue
@@ -284720,7 +284720,7 @@ function Config({
284720
284720
  logEvent("tengu_autoupdate_enabled", {
284721
284721
  channel
284722
284722
  });
284723
- } }) }) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx181(ChannelDowngradeDialog, { currentVersion: "0.8.5", onChoice: (choice) => {
284723
+ } }) }) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx181(ChannelDowngradeDialog, { currentVersion: "0.8.6", onChoice: (choice) => {
284724
284724
  setShowSubmenu(null);
284725
284725
  setTabsHidden(false);
284726
284726
  if (choice === "cancel") {
@@ -284731,7 +284731,7 @@ function Config({
284731
284731
  autoUpdatesChannel: "stable"
284732
284732
  };
284733
284733
  if (choice === "stay") {
284734
- newSettings.minimumVersion = "0.8.5";
284734
+ newSettings.minimumVersion = "0.8.6";
284735
284735
  }
284736
284736
  updateSettingsForSource("userSettings", newSettings);
284737
284737
  setSettingsData((prev_27) => ({
@@ -291643,7 +291643,7 @@ function HelpV2(t0) {
291643
291643
  const t5 = insideModal ? void 0 : maxHeight;
291644
291644
  let t6;
291645
291645
  if ($[31] !== tabs) {
291646
- t6 = /* @__PURE__ */ jsx207(Tabs, { title: false ? "/help" : `Tau v${"0.8.5"}`, color: "professionalBlue", defaultTab: "general", children: tabs });
291646
+ t6 = /* @__PURE__ */ jsx207(Tabs, { title: false ? "/help" : `Tau v${"0.8.6"}`, color: "professionalBlue", defaultTab: "general", children: tabs });
291647
291647
  $[31] = tabs;
291648
291648
  $[32] = t6;
291649
291649
  } else {
@@ -309785,7 +309785,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
309785
309785
  return [];
309786
309786
  }
309787
309787
  }
309788
- async function checkForReleaseNotes(lastSeenVersion, currentVersion = "0.8.5") {
309788
+ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "0.8.6") {
309789
309789
  if (false) {
309790
309790
  const changelog = MACRO.VERSION_CHANGELOG;
309791
309791
  if (changelog) {
@@ -311429,7 +311429,7 @@ async function getRecentActivity() {
311429
311429
  return cachePromise;
311430
311430
  }
311431
311431
  function getLogoDisplayData() {
311432
- const version2 = process.env.DEMO_VERSION ?? "0.8.5";
311432
+ const version2 = process.env.DEMO_VERSION ?? "0.8.6";
311433
311433
  const serverUrl = getDirectConnectServerUrl();
311434
311434
  const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
311435
311435
  const cwd5 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
@@ -361481,7 +361481,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
361481
361481
  smapsRollup,
361482
361482
  platform: process.platform,
361483
361483
  nodeVersion: process.version,
361484
- ccVersion: "0.8.5"
361484
+ ccVersion: "0.8.6"
361485
361485
  };
361486
361486
  }
361487
361487
  async function performHeapDump(trigger = "manual", dumpNumber = 0) {
@@ -362138,7 +362138,7 @@ var init_version = __esm({
362138
362138
  call65 = async () => {
362139
362139
  return {
362140
362140
  type: "text",
362141
- value: "2026-05-20T18:37:32.462Z" ? `${"0.8.5"} (built ${"2026-05-20T18:37:32.462Z"})` : "0.8.5"
362141
+ value: "2026-05-20T20:19:06.656Z" ? `${"0.8.6"} (built ${"2026-05-20T20:19:06.656Z"})` : "0.8.6"
362142
362142
  };
362143
362143
  };
362144
362144
  version = {
@@ -372379,8 +372379,8 @@ async function getEnvLessBridgeConfig() {
372379
372379
  }
372380
372380
  async function checkEnvLessBridgeMinVersion() {
372381
372381
  const cfg = await getEnvLessBridgeConfig();
372382
- if (cfg.min_version && lt("0.8.5", cfg.min_version)) {
372383
- return `Your version of Tau (${"0.8.5"}) is too old for Remote Control.
372382
+ if (cfg.min_version && lt("0.8.6", cfg.min_version)) {
372383
+ return `Your version of Tau (${"0.8.6"}) is too old for Remote Control.
372384
372384
  Version ${cfg.min_version} or higher is required. Run \`tau update\` to update.`;
372385
372385
  }
372386
372386
  return null;
@@ -376521,7 +376521,7 @@ function generateHtmlReport(data2, insights) {
376521
376521
  </html>`;
376522
376522
  }
376523
376523
  function buildExportData(data2, insights, facets, remoteStats) {
376524
- const version2 = typeof MACRO !== "undefined" ? "0.8.5" : "unknown";
376524
+ const version2 = typeof MACRO !== "undefined" ? "0.8.6" : "unknown";
376525
376525
  const remote_hosts_collected = remoteStats?.hosts.filter((h5) => h5.sessionCount > 0).map((h5) => h5.name);
376526
376526
  const facets_summary = {
376527
376527
  total: facets.size,
@@ -380224,7 +380224,7 @@ var init_sessionStorage = __esm({
380224
380224
  init_settings2();
380225
380225
  init_slowOperations();
380226
380226
  init_uuid();
380227
- VERSION2 = typeof MACRO !== "undefined" ? "0.8.5" : "unknown";
380227
+ VERSION2 = typeof MACRO !== "undefined" ? "0.8.6" : "unknown";
380228
380228
  MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
380229
380229
  SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
380230
380230
  EPHEMERAL_PROGRESS_TYPES = /* @__PURE__ */ new Set([
@@ -381175,9 +381175,9 @@ async function assertMinVersion() { return;
381175
381175
  }
381176
381176
  try {
381177
381177
  const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
381178
- if (versionConfig.minVersion && lt("0.8.5", versionConfig.minVersion)) {
381178
+ if (versionConfig.minVersion && lt("0.8.6", versionConfig.minVersion)) {
381179
381179
  console.error(`
381180
- It looks like your version of Tau (${"0.8.5"}) needs an update.
381180
+ It looks like your version of Tau (${"0.8.6"}) needs an update.
381181
381181
  A newer version (${versionConfig.minVersion} or higher) is required to continue.
381182
381182
 
381183
381183
  To update, please run:
@@ -381418,7 +381418,7 @@ async function installGlobalPackage(specificVersion) {
381418
381418
  );
381419
381419
  logEvent("tengu_auto_updater_lock_contention", {
381420
381420
  pid: process.pid,
381421
- currentVersion: "0.8.5"
381421
+ currentVersion: "0.8.6"
381422
381422
  });
381423
381423
  return "in_progress";
381424
381424
  }
@@ -381429,7 +381429,7 @@ async function installGlobalPackage(specificVersion) {
381429
381429
  if (!env.isRunningWithBun() && env.isNpmFromWindowsPath()) {
381430
381430
  logError(new Error("Windows NPM detected in WSL environment"));
381431
381431
  logEvent("tengu_auto_updater_windows_npm_in_wsl", {
381432
- currentVersion: "0.8.5"
381432
+ currentVersion: "0.8.6"
381433
381433
  });
381434
381434
  console.error(`
381435
381435
  Error: Windows NPM detected in WSL
@@ -381541,14 +381541,14 @@ async function updateTauFromNpm() {
381541
381541
  );
381542
381542
  await gracefulShutdown(1);
381543
381543
  }
381544
- if (latestVersion === "0.8.5" || gte("0.8.5", latestVersion)) {
381544
+ if (latestVersion === "0.8.6" || gte("0.8.6", latestVersion)) {
381545
381545
  writeToStdout(
381546
- chalk49.green(`Tau is up to date (${"0.8.5"})`) + "\n"
381546
+ chalk49.green(`Tau is up to date (${"0.8.6"})`) + "\n"
381547
381547
  );
381548
381548
  await gracefulShutdown(0);
381549
381549
  }
381550
381550
  writeToStdout(
381551
- `New Tau version available: ${latestVersion} (current: ${"0.8.5"}) - run tau update
381551
+ `New Tau version available: ${latestVersion} (current: ${"0.8.6"}) - run tau update
381552
381552
  `
381553
381553
  );
381554
381554
  writeToStdout(`Installing ${"@abdoknbgit/tau"}@${latestVersion} globally...
@@ -381559,7 +381559,7 @@ async function updateTauFromNpm() {
381559
381559
  case "success":
381560
381560
  writeToStdout(
381561
381561
  chalk49.green(
381562
- `Successfully updated Tau from ${"0.8.5"} to ${latestVersion}`
381562
+ `Successfully updated Tau from ${"0.8.6"} to ${latestVersion}`
381563
381563
  ) + "\n"
381564
381564
  );
381565
381565
  await regenerateCompletionCache();
@@ -381592,7 +381592,7 @@ async function updateTauFromNpm() {
381592
381592
  }
381593
381593
  async function update() {
381594
381594
  logEvent("tengu_update_check", {});
381595
- writeToStdout(`Current version: ${"0.8.5"}
381595
+ writeToStdout(`Current version: ${"0.8.6"}
381596
381596
  `);
381597
381597
  if (isTauNpmPackage()) {
381598
381598
  await updateTauFromNpm();
@@ -381666,8 +381666,8 @@ async function update() {
381666
381666
  if (packageManager === "homebrew") {
381667
381667
  writeToStdout("Tau is managed by Homebrew.\n");
381668
381668
  const latest = await getLatestVersion2(channel);
381669
- if (latest && !gte("0.8.5", latest)) {
381670
- writeToStdout(`Update available: ${"0.8.5"} \u2192 ${latest}
381669
+ if (latest && !gte("0.8.6", latest)) {
381670
+ writeToStdout(`Update available: ${"0.8.6"} \u2192 ${latest}
381671
381671
  `);
381672
381672
  writeToStdout("\n");
381673
381673
  writeToStdout("To update, run:\n");
@@ -381678,8 +381678,8 @@ async function update() {
381678
381678
  } else if (packageManager === "winget") {
381679
381679
  writeToStdout("Tau is managed by winget.\n");
381680
381680
  const latest = await getLatestVersion2(channel);
381681
- if (latest && !gte("0.8.5", latest)) {
381682
- writeToStdout(`Update available: ${"0.8.5"} \u2192 ${latest}
381681
+ if (latest && !gte("0.8.6", latest)) {
381682
+ writeToStdout(`Update available: ${"0.8.6"} \u2192 ${latest}
381683
381683
  `);
381684
381684
  writeToStdout("\n");
381685
381685
  writeToStdout("To update, run:\n");
@@ -381692,8 +381692,8 @@ async function update() {
381692
381692
  } else if (packageManager === "apk") {
381693
381693
  writeToStdout("Tau is managed by apk.\n");
381694
381694
  const latest = await getLatestVersion2(channel);
381695
- if (latest && !gte("0.8.5", latest)) {
381696
- writeToStdout(`Update available: ${"0.8.5"} \u2192 ${latest}
381695
+ if (latest && !gte("0.8.6", latest)) {
381696
+ writeToStdout(`Update available: ${"0.8.6"} \u2192 ${latest}
381697
381697
  `);
381698
381698
  writeToStdout("\n");
381699
381699
  writeToStdout("To update, run:\n");
@@ -381759,14 +381759,14 @@ async function update() {
381759
381759
  process.stderr.write("Failed to check for updates\n");
381760
381760
  await gracefulShutdown(1);
381761
381761
  }
381762
- if (result.latestVersion === "0.8.5") {
381762
+ if (result.latestVersion === "0.8.6") {
381763
381763
  writeToStdout(
381764
- chalk49.green(`Tau is up to date (${"0.8.5"})`) + "\n"
381764
+ chalk49.green(`Tau is up to date (${"0.8.6"})`) + "\n"
381765
381765
  );
381766
381766
  } else {
381767
381767
  writeToStdout(
381768
381768
  chalk49.green(
381769
- `Successfully updated from ${"0.8.5"} to version ${result.latestVersion}`
381769
+ `Successfully updated from ${"0.8.6"} to version ${result.latestVersion}`
381770
381770
  ) + "\n"
381771
381771
  );
381772
381772
  await regenerateCompletionCache();
@@ -381817,14 +381817,14 @@ async function update() {
381817
381817
  process.stderr.write(" \u2022 Check if you need to login: npm whoami\n");
381818
381818
  await gracefulShutdown(1);
381819
381819
  }
381820
- if (latestVersion === "0.8.5") {
381820
+ if (latestVersion === "0.8.6") {
381821
381821
  writeToStdout(
381822
- chalk49.green(`Tau is up to date (${"0.8.5"})`) + "\n"
381822
+ chalk49.green(`Tau is up to date (${"0.8.6"})`) + "\n"
381823
381823
  );
381824
381824
  await gracefulShutdown(0);
381825
381825
  }
381826
381826
  writeToStdout(
381827
- `New version available: ${latestVersion} (current: ${"0.8.5"}) - run tau update
381827
+ `New version available: ${latestVersion} (current: ${"0.8.6"}) - run tau update
381828
381828
  `
381829
381829
  );
381830
381830
  writeToStdout("Installing update...\n");
@@ -381878,7 +381878,7 @@ async function update() {
381878
381878
  case "success":
381879
381879
  writeToStdout(
381880
381880
  chalk49.green(
381881
- `Successfully updated from ${"0.8.5"} to version ${latestVersion}`
381881
+ `Successfully updated from ${"0.8.6"} to version ${latestVersion}`
381882
381882
  ) + "\n"
381883
381883
  );
381884
381884
  await regenerateCompletionCache();
@@ -382514,7 +382514,7 @@ function createBridgeLogger(options) {
382514
382514
  connectUrl = buildBridgeConnectUrl(environmentId, cachedIngressUrl);
382515
382515
  regenerateQr(connectUrl);
382516
382516
  if (verbose) {
382517
- write(chalk50.dim(`Remote Control`) + ` v${"0.8.5"}
382517
+ write(chalk50.dim(`Remote Control`) + ` v${"0.8.6"}
382518
382518
  `);
382519
382519
  }
382520
382520
  if (verbose) {
@@ -383654,7 +383654,7 @@ function appendToLog(path21, message) {
383654
383654
  cwd: getFsImplementation().cwd(),
383655
383655
  userType: "external",
383656
383656
  sessionId: getSessionId(),
383657
- version: "0.8.5"
383657
+ version: "0.8.6"
383658
383658
  };
383659
383659
  getLogWriter(path21).write(messageWithTimestamp);
383660
383660
  }
@@ -385248,7 +385248,7 @@ This can be changed later or explicitly set with --spawn=same-dir or --spawn=wor
385248
385248
  const api = createBridgeApiClient({
385249
385249
  baseUrl,
385250
385250
  getAccessToken: getBridgeAccessToken2,
385251
- runnerVersion: "0.8.5",
385251
+ runnerVersion: "0.8.6",
385252
385252
  onDebug: logForDebugging,
385253
385253
  onAuth401: handleOAuth401Error2,
385254
385254
  getTrustedDeviceToken
@@ -385611,7 +385611,7 @@ async function runBridgeHeadless(opts, signal) {
385611
385611
  const api = createBridgeApiClient({
385612
385612
  baseUrl,
385613
385613
  getAccessToken: opts.getAccessToken,
385614
- runnerVersion: "0.8.5",
385614
+ runnerVersion: "0.8.6",
385615
385615
  onDebug: log3,
385616
385616
  onAuth401: opts.onAuth401,
385617
385617
  getTrustedDeviceToken
@@ -389556,7 +389556,7 @@ function completeOnboarding() {
389556
389556
  saveGlobalConfig((current) => ({
389557
389557
  ...current,
389558
389558
  hasCompletedOnboarding: true,
389559
- lastOnboardingVersion: "0.8.5"
389559
+ lastOnboardingVersion: "0.8.6"
389560
389560
  }));
389561
389561
  }
389562
389562
  function assertTerminalWritable() {
@@ -391666,7 +391666,7 @@ function buildSystemInitMessage(inputs) {
391666
391666
  slash_commands: inputs.commands.filter((c6) => c6.userInvocable !== false).map((c6) => c6.name),
391667
391667
  apiKeySource: getAnthropicApiKeyWithSource().source,
391668
391668
  betas: getSdkBetas(),
391669
- claude_code_version: "0.8.5",
391669
+ claude_code_version: "0.8.6",
391670
391670
  output_style: outputStyle2,
391671
391671
  agents: inputs.agents.map((agent) => agent.agentType),
391672
391672
  skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
@@ -394517,7 +394517,7 @@ async function initBridgeCore(params) {
394517
394517
  const rawApi = createBridgeApiClient({
394518
394518
  baseUrl,
394519
394519
  getAccessToken,
394520
- runnerVersion: "0.8.5",
394520
+ runnerVersion: "0.8.6",
394521
394521
  onDebug: logForDebugging,
394522
394522
  onAuth401,
394523
394523
  getTrustedDeviceToken
@@ -410928,7 +410928,7 @@ import __cjs976 from "semver"; const { major, minor, patch } = __cjs976;
410928
410928
  function getSemverPart(version2) {
410929
410929
  return `${major(version2, { loose: true })}.${minor(version2, { loose: true })}.${patch(version2, { loose: true })}`;
410930
410930
  }
410931
- function useUpdateNotification(updatedVersion, initialVersion = "0.8.5") {
410931
+ function useUpdateNotification(updatedVersion, initialVersion = "0.8.6") {
410932
410932
  const [lastNotifiedSemver, setLastNotifiedSemver] = useState144(
410933
410933
  () => getSemverPart(initialVersion)
410934
410934
  );
@@ -410976,7 +410976,7 @@ function AutoUpdater({
410976
410976
  logForDebugging("AutoUpdater: Skipping update check in test/dev environment");
410977
410977
  return;
410978
410978
  }
410979
- const currentVersion = "0.8.5";
410979
+ const currentVersion = "0.8.6";
410980
410980
  const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
410981
410981
  let latestVersion = await getLatestVersion2(channel);
410982
410982
  const isDisabled = isAutoUpdaterDisabled();
@@ -411168,12 +411168,12 @@ function NativeAutoUpdater({
411168
411168
  logEvent("tengu_native_auto_updater_start", {});
411169
411169
  try {
411170
411170
  const maxVersion = await getMaxVersion();
411171
- if (maxVersion && gt("0.8.5", maxVersion)) {
411171
+ if (maxVersion && gt("0.8.6", maxVersion)) {
411172
411172
  const msg = await getMaxVersionMessage();
411173
411173
  setMaxVersionIssue(msg ?? "affects your version");
411174
411174
  }
411175
411175
  const result = await installLatest(channel);
411176
- const currentVersion = "0.8.5";
411176
+ const currentVersion = "0.8.6";
411177
411177
  const latencyMs = Date.now() - startTime;
411178
411178
  if (result.lockFailed) {
411179
411179
  logEvent("tengu_native_auto_updater_lock_contention", {
@@ -411288,17 +411288,17 @@ function PackageManagerAutoUpdater(t0) {
411288
411288
  const maxVersion = await getMaxVersion();
411289
411289
  if (maxVersion && latest && gt(latest, maxVersion)) {
411290
411290
  logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
411291
- if (gte("0.8.5", maxVersion)) {
411292
- logForDebugging(`PackageManagerAutoUpdater: current version ${"0.8.5"} is already at or above maxVersion ${maxVersion}, skipping update`);
411291
+ if (gte("0.8.6", maxVersion)) {
411292
+ logForDebugging(`PackageManagerAutoUpdater: current version ${"0.8.6"} is already at or above maxVersion ${maxVersion}, skipping update`);
411293
411293
  setUpdateAvailable(false);
411294
411294
  return;
411295
411295
  }
411296
411296
  latest = maxVersion;
411297
411297
  }
411298
- const hasUpdate = latest && !gte("0.8.5", latest) && !shouldSkipVersion(latest);
411298
+ const hasUpdate = latest && !gte("0.8.6", latest) && !shouldSkipVersion(latest);
411299
411299
  setUpdateAvailable(!!hasUpdate);
411300
411300
  if (hasUpdate) {
411301
- logForDebugging(`PackageManagerAutoUpdater: Update available ${"0.8.5"} -> ${latest}`);
411301
+ logForDebugging(`PackageManagerAutoUpdater: Update available ${"0.8.6"} -> ${latest}`);
411302
411302
  }
411303
411303
  };
411304
411304
  $[0] = t1;
@@ -411329,7 +411329,7 @@ function PackageManagerAutoUpdater(t0) {
411329
411329
  if ($[3] !== verbose) {
411330
411330
  t4 = verbose && /* @__PURE__ */ jsxs306(ThemedText, { dimColor: true, wrap: "truncate", children: [
411331
411331
  "currentVersion: ",
411332
- "0.8.5"
411332
+ "0.8.6"
411333
411333
  ] });
411334
411334
  $[3] = verbose;
411335
411335
  $[4] = t4;
@@ -418508,7 +418508,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
418508
418508
  project_dir: getOriginalCwd(),
418509
418509
  added_dirs: addedDirs
418510
418510
  },
418511
- version: "0.8.5",
418511
+ version: "0.8.6",
418512
418512
  output_style: {
418513
418513
  name: outputStyleName
418514
418514
  },
@@ -431080,7 +431080,7 @@ async function submitTranscriptShare(messages, trigger, appearanceId) {
431080
431080
  }
431081
431081
  const data2 = {
431082
431082
  trigger,
431083
- version: "0.8.5",
431083
+ version: "0.8.6",
431084
431084
  platform: process.platform,
431085
431085
  transcript,
431086
431086
  subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : void 0,
@@ -455620,7 +455620,7 @@ async function startMCPServer(cwd5, debug3, verbose) {
455620
455620
  const server = new Server(
455621
455621
  {
455622
455622
  name: "claude/tengu",
455623
- version: "0.8.5"
455623
+ version: "0.8.6"
455624
455624
  },
455625
455625
  {
455626
455626
  capabilities: {
@@ -456799,7 +456799,7 @@ function WelcomeV2() {
456799
456799
  ] }),
456800
456800
  /* @__PURE__ */ jsxs357(ThemedText, { dimColor: true, children: [
456801
456801
  "v",
456802
- "0.8.5",
456802
+ "0.8.6",
456803
456803
  " "
456804
456804
  ] })
456805
456805
  ] });
@@ -456933,7 +456933,7 @@ function WelcomeV2() {
456933
456933
  ] }),
456934
456934
  /* @__PURE__ */ jsxs357(ThemedText, { dimColor: true, children: [
456935
456935
  "v",
456936
- "0.8.5",
456936
+ "0.8.6",
456937
456937
  " "
456938
456938
  ] })
456939
456939
  ] });
@@ -457083,7 +457083,7 @@ function AppleTerminalWelcomeV2(t0) {
457083
457083
  if ($[2] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
457084
457084
  t22 = /* @__PURE__ */ jsxs357(ThemedText, { dimColor: true, children: [
457085
457085
  "v",
457086
- "0.8.5",
457086
+ "0.8.6",
457087
457087
  " "
457088
457088
  ] });
457089
457089
  $[2] = t22;
@@ -457253,7 +457253,7 @@ function AppleTerminalWelcomeV2(t0) {
457253
457253
  if ($[24] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
457254
457254
  t2 = /* @__PURE__ */ jsxs357(ThemedText, { dimColor: true, children: [
457255
457255
  "v",
457256
- "0.8.5",
457256
+ "0.8.6",
457257
457257
  " "
457258
457258
  ] });
457259
457259
  $[24] = t2;
@@ -459476,7 +459476,7 @@ ${inputPrompt}` : mergePrompt;
459476
459476
  }
459477
459477
  }
459478
459478
  logForDiagnosticsNoPII("info", "started", {
459479
- version: "0.8.5",
459479
+ version: "0.8.6",
459480
459480
  is_native_binary: isInBundledMode()
459481
459481
  });
459482
459482
  registerCleanup(async () => {
@@ -460071,7 +460071,7 @@ Session: ${directConnectConfig.sessionId}`, "info");
460071
460071
  sshSession = await createSSHSession({
460072
460072
  host: _pendingSSH.host,
460073
460073
  cwd: _pendingSSH.cwd,
460074
- localVersion: "0.8.5",
460074
+ localVersion: "0.8.6",
460075
460075
  permissionMode: _pendingSSH.permissionMode,
460076
460076
  dangerouslySkipPermissions: _pendingSSH.dangerouslySkipPermissions,
460077
460077
  extraCliArgs: _pendingSSH.extraCliArgs
@@ -460583,7 +460583,7 @@ Auth: unix socket -R \u2192 local proxy`, "info");
460583
460583
  pendingHookMessages
460584
460584
  }, renderAndRun);
460585
460585
  }
460586
- }).version(`${"0.8.5"} (Tau)`, "-v, --version", "Output the version number");
460586
+ }).version(`${"0.8.6"} (Tau)`, "-v, --version", "Output the version number");
460587
460587
  program.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
460588
460588
  program.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
460589
460589
  if (canUserConfigureAdvisor()) {
@@ -461546,7 +461546,7 @@ async function main2() {
461546
461546
  trace5("main() started");
461547
461547
  const args = process.argv.slice(2);
461548
461548
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
461549
- console.log(`${"0.8.5"} (Tau)`);
461549
+ console.log(`${"0.8.6"} (Tau)`);
461550
461550
  return;
461551
461551
  }
461552
461552
  if (args.length === 1 && (args[0] === "update" || args[0] === "upgrade")) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abdoknbgit/tau",
3
- "version": "0.8.5",
3
+ "version": "0.8.6",
4
4
  "description": "Tau - multi-provider AI coding CLI with Firecrawl-hosted WebSearch. Firecrawl offers 1k searches/month on free trials; just enter your API key.",
5
5
  "author": "AbdoKnbGit",
6
6
  "repository": {
@@ -63,7 +63,7 @@
63
63
  "@opentelemetry/sdk-metrics": "^2.0.0",
64
64
  "@opentelemetry/sdk-trace-base": "^2.0.0",
65
65
  "@opentelemetry/semantic-conventions": "^1.30.0",
66
- "@whiskeysockets/baileys": "7.0.0-rc.9",
66
+ "@whiskeysockets/baileys": "7.0.0-rc12",
67
67
  "ajv": "^8.17.1",
68
68
  "asciichart": "^1.5.25",
69
69
  "auto-bind": "^5.0.1",