@abdoknbgit/tau 0.9.96 → 0.9.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.mjs +94 -94
- package/package.json +8 -1
package/dist/cli.mjs
CHANGED
|
@@ -49786,7 +49786,7 @@ var init_opencode = __esm({
|
|
|
49786
49786
|
const sessionId = ctx?.sessionId ?? getProcessSessionId();
|
|
49787
49787
|
const headers = {
|
|
49788
49788
|
"User-Agent": `opencode/${OPENCODE_UA_VERSION}`,
|
|
49789
|
-
"x-opencode-client": process.env.OPENCODE_CLIENT ?? `opencode-tau/${"0.9.
|
|
49789
|
+
"x-opencode-client": process.env.OPENCODE_CLIENT ?? `opencode-tau/${"0.9.97"}`,
|
|
49790
49790
|
"x-opencode-session": sessionId,
|
|
49791
49791
|
"x-opencode-request": sessionId
|
|
49792
49792
|
};
|
|
@@ -62058,7 +62058,7 @@ var init_betas = __esm({
|
|
|
62058
62058
|
|
|
62059
62059
|
// src/utils/userAgent.ts
|
|
62060
62060
|
function getClaudeCodeUserAgent() {
|
|
62061
|
-
return `claude-code/${"0.9.
|
|
62061
|
+
return `claude-code/${"0.9.97"}`;
|
|
62062
62062
|
}
|
|
62063
62063
|
var init_userAgent = __esm({
|
|
62064
62064
|
"src/utils/userAgent.ts"() {
|
|
@@ -62088,7 +62088,7 @@ function getUserAgent() {
|
|
|
62088
62088
|
const clientApp = process.env.CLAUDE_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}` : "";
|
|
62089
62089
|
const workload = getWorkload();
|
|
62090
62090
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
62091
|
-
return `claude-cli/${"0.9.
|
|
62091
|
+
return `claude-cli/${"0.9.97"} (${"external"}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
62092
62092
|
}
|
|
62093
62093
|
function getMCPUserAgent() {
|
|
62094
62094
|
const parts = [];
|
|
@@ -62102,7 +62102,7 @@ function getMCPUserAgent() {
|
|
|
62102
62102
|
parts.push(`client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}`);
|
|
62103
62103
|
}
|
|
62104
62104
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
62105
|
-
return `claude-code/${"0.9.
|
|
62105
|
+
return `claude-code/${"0.9.97"}${suffix}`;
|
|
62106
62106
|
}
|
|
62107
62107
|
function getWebFetchUserAgent() {
|
|
62108
62108
|
return `Claude-User (${getClaudeCodeUserAgent()}; +https://support.anthropic.com/)`;
|
|
@@ -80938,8 +80938,8 @@ function isCseShimEnabled() {
|
|
|
80938
80938
|
function checkBridgeMinVersion() {
|
|
80939
80939
|
if (feature("BRIDGE_MODE")) {
|
|
80940
80940
|
const config2 = getDynamicConfig_CACHED_MAY_BE_STALE("tengu_bridge_min_version", { minVersion: "0.0.0" });
|
|
80941
|
-
if (config2.minVersion && lt("0.9.
|
|
80942
|
-
return `Your version of Tau (${"0.9.
|
|
80941
|
+
if (config2.minVersion && lt("0.9.97", config2.minVersion)) {
|
|
80942
|
+
return `Your version of Tau (${"0.9.97"}) is too old for Remote Control.
|
|
80943
80943
|
Version ${config2.minVersion} or higher is required. Run \`tau update\` to update.`;
|
|
80944
80944
|
}
|
|
80945
80945
|
}
|
|
@@ -81987,7 +81987,7 @@ var init_user = __esm({
|
|
|
81987
81987
|
deviceId,
|
|
81988
81988
|
sessionId: getSessionId(),
|
|
81989
81989
|
email: getEmail(),
|
|
81990
|
-
appVersion: "0.9.
|
|
81990
|
+
appVersion: "0.9.97",
|
|
81991
81991
|
platform: getHostPlatformForAnalytics(),
|
|
81992
81992
|
organizationUuid,
|
|
81993
81993
|
accountUuid,
|
|
@@ -83730,7 +83730,7 @@ var init_metadata = __esm({
|
|
|
83730
83730
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
83731
83731
|
WHITESPACE_REGEX = /\s+/;
|
|
83732
83732
|
getVersionBase = memoize23(() => {
|
|
83733
|
-
const match = "0.9.
|
|
83733
|
+
const match = "0.9.97".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
83734
83734
|
return match ? match[0] : void 0;
|
|
83735
83735
|
});
|
|
83736
83736
|
buildEnvContext = memoize23(async () => {
|
|
@@ -83774,9 +83774,9 @@ var init_metadata = __esm({
|
|
|
83774
83774
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
83775
83775
|
isClaudeCodeAction: isEnvTruthy(process.env.CLAUDE_CODE_ACTION),
|
|
83776
83776
|
isClaudeAiAuth: isClaudeAISubscriber(),
|
|
83777
|
-
version: "0.9.
|
|
83777
|
+
version: "0.9.97",
|
|
83778
83778
|
versionBase: getVersionBase(),
|
|
83779
|
-
buildTime: "2026-06-03T19:
|
|
83779
|
+
buildTime: "2026-06-03T19:49:50.045Z",
|
|
83780
83780
|
deploymentEnvironment: env.detectDeploymentEnvironment(),
|
|
83781
83781
|
...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
|
|
83782
83782
|
githubEventName: process.env.GITHUB_EVENT_NAME,
|
|
@@ -84526,7 +84526,7 @@ function initialize1PEventLogging() {
|
|
|
84526
84526
|
const platform6 = getPlatform();
|
|
84527
84527
|
const attributes = {
|
|
84528
84528
|
[ATTR_SERVICE_NAME]: "claude-code",
|
|
84529
|
-
[ATTR_SERVICE_VERSION]: "0.9.
|
|
84529
|
+
[ATTR_SERVICE_VERSION]: "0.9.97"
|
|
84530
84530
|
};
|
|
84531
84531
|
if (platform6 === "wsl") {
|
|
84532
84532
|
const wslVersion = getWslVersion();
|
|
@@ -84555,7 +84555,7 @@ function initialize1PEventLogging() {
|
|
|
84555
84555
|
});
|
|
84556
84556
|
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger(
|
|
84557
84557
|
"com.anthropic.claude_code.events",
|
|
84558
|
-
"0.9.
|
|
84558
|
+
"0.9.97"
|
|
84559
84559
|
);
|
|
84560
84560
|
}
|
|
84561
84561
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
@@ -105624,7 +105624,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
105624
105624
|
if (!isAttributionHeaderEnabled()) {
|
|
105625
105625
|
return "";
|
|
105626
105626
|
}
|
|
105627
|
-
const version2 = `${"0.9.
|
|
105627
|
+
const version2 = `${"0.9.97"}.${fingerprint}`;
|
|
105628
105628
|
const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
|
|
105629
105629
|
const cch = feature("NATIVE_CLIENT_ATTESTATION") ? " cch=00000;" : "";
|
|
105630
105630
|
const workload = getWorkload();
|
|
@@ -110014,7 +110014,7 @@ function getTelemetryAttributes() {
|
|
|
110014
110014
|
attributes["session.id"] = sessionId;
|
|
110015
110015
|
}
|
|
110016
110016
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
110017
|
-
attributes["app.version"] = "0.9.
|
|
110017
|
+
attributes["app.version"] = "0.9.97";
|
|
110018
110018
|
}
|
|
110019
110019
|
const oauthAccount = getOauthAccountInfo();
|
|
110020
110020
|
if (oauthAccount) {
|
|
@@ -158648,7 +158648,7 @@ function computeFingerprint(messageText, version2) {
|
|
|
158648
158648
|
}
|
|
158649
158649
|
function computeFingerprintFromMessages(messages) {
|
|
158650
158650
|
const firstMessageText = extractFirstMessageText(messages);
|
|
158651
|
-
return computeFingerprint(firstMessageText, "0.9.
|
|
158651
|
+
return computeFingerprint(firstMessageText, "0.9.97");
|
|
158652
158652
|
}
|
|
158653
158653
|
var FINGERPRINT_SALT;
|
|
158654
158654
|
var init_fingerprint = __esm({
|
|
@@ -158692,7 +158692,7 @@ async function sideQuery(opts) {
|
|
|
158692
158692
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
158693
158693
|
}
|
|
158694
158694
|
const messageText = extractFirstUserMessageText(messages);
|
|
158695
|
-
const fingerprint = computeFingerprint(messageText, "0.9.
|
|
158695
|
+
const fingerprint = computeFingerprint(messageText, "0.9.97");
|
|
158696
158696
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
158697
158697
|
const systemBlocks = [
|
|
158698
158698
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -160206,7 +160206,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
160206
160206
|
{
|
|
160207
160207
|
name: "claude-code",
|
|
160208
160208
|
title: "Tau",
|
|
160209
|
-
version: "0.9.
|
|
160209
|
+
version: "0.9.97",
|
|
160210
160210
|
description: "Anthropic's agentic coding tool",
|
|
160211
160211
|
websiteUrl: PRODUCT_URL
|
|
160212
160212
|
},
|
|
@@ -160632,7 +160632,7 @@ var init_client4 = __esm({
|
|
|
160632
160632
|
{
|
|
160633
160633
|
name: "claude-code",
|
|
160634
160634
|
title: "Tau",
|
|
160635
|
-
version: "0.9.
|
|
160635
|
+
version: "0.9.97",
|
|
160636
160636
|
description: "Anthropic's agentic coding tool",
|
|
160637
160637
|
websiteUrl: PRODUCT_URL
|
|
160638
160638
|
},
|
|
@@ -162278,7 +162278,7 @@ function getInstallationEnv() {
|
|
|
162278
162278
|
return void 0;
|
|
162279
162279
|
}
|
|
162280
162280
|
function getClaudeCodeVersion() {
|
|
162281
|
-
return "0.9.
|
|
162281
|
+
return "0.9.97";
|
|
162282
162282
|
}
|
|
162283
162283
|
async function getInstalledVSCodeExtensionVersion(command10) {
|
|
162284
162284
|
const { stdout } = await execFileNoThrow(
|
|
@@ -175773,7 +175773,7 @@ async function initializeBetaTracing(resource) {
|
|
|
175773
175773
|
setLoggerProvider(loggerProvider);
|
|
175774
175774
|
const eventLogger = logs.getLogger(
|
|
175775
175775
|
"com.anthropic.claude_code.events",
|
|
175776
|
-
"0.9.
|
|
175776
|
+
"0.9.97"
|
|
175777
175777
|
);
|
|
175778
175778
|
setEventLogger(eventLogger);
|
|
175779
175779
|
process.on("beforeExit", async () => {
|
|
@@ -175816,7 +175816,7 @@ async function initializeTelemetry() {
|
|
|
175816
175816
|
const platform6 = getPlatform();
|
|
175817
175817
|
const baseAttributes = {
|
|
175818
175818
|
[ATTR_SERVICE_NAME2]: "claude-code",
|
|
175819
|
-
[ATTR_SERVICE_VERSION2]: "0.9.
|
|
175819
|
+
[ATTR_SERVICE_VERSION2]: "0.9.97"
|
|
175820
175820
|
};
|
|
175821
175821
|
if (platform6 === "wsl") {
|
|
175822
175822
|
const wslVersion = getWslVersion();
|
|
@@ -175874,7 +175874,7 @@ async function initializeTelemetry() {
|
|
|
175874
175874
|
}
|
|
175875
175875
|
};
|
|
175876
175876
|
registerCleanup(shutdownTelemetry2);
|
|
175877
|
-
return meterProvider2.getMeter("com.anthropic.claude_code", "0.9.
|
|
175877
|
+
return meterProvider2.getMeter("com.anthropic.claude_code", "0.9.97");
|
|
175878
175878
|
}
|
|
175879
175879
|
const meterProvider = new MeterProvider({
|
|
175880
175880
|
resource,
|
|
@@ -175903,7 +175903,7 @@ async function initializeTelemetry() {
|
|
|
175903
175903
|
setLoggerProvider(loggerProvider);
|
|
175904
175904
|
const eventLogger = logs.getLogger(
|
|
175905
175905
|
"com.anthropic.claude_code.events",
|
|
175906
|
-
"0.9.
|
|
175906
|
+
"0.9.97"
|
|
175907
175907
|
);
|
|
175908
175908
|
setEventLogger(eventLogger);
|
|
175909
175909
|
logForDebugging("[3P telemetry] Event logger set successfully");
|
|
@@ -175975,7 +175975,7 @@ Current timeout: ${timeoutMs}ms
|
|
|
175975
175975
|
}
|
|
175976
175976
|
};
|
|
175977
175977
|
registerCleanup(shutdownTelemetry);
|
|
175978
|
-
return meterProvider.getMeter("com.anthropic.claude_code", "0.9.
|
|
175978
|
+
return meterProvider.getMeter("com.anthropic.claude_code", "0.9.97");
|
|
175979
175979
|
}
|
|
175980
175980
|
async function flushTelemetry() {
|
|
175981
175981
|
const meterProvider = getMeterProvider();
|
|
@@ -177393,7 +177393,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
177393
177393
|
}
|
|
177394
177394
|
async function getDoctorDiagnostic() {
|
|
177395
177395
|
const installationType = await getCurrentInstallationType();
|
|
177396
|
-
const version2 = typeof MACRO !== "undefined" && "0.9.
|
|
177396
|
+
const version2 = typeof MACRO !== "undefined" && "0.9.97" ? "0.9.97" : "unknown";
|
|
177397
177397
|
const installationPath = await getInstallationPath();
|
|
177398
177398
|
const invokedBinary = getInvokedBinary();
|
|
177399
177399
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -178322,9 +178322,9 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
178322
178322
|
logForDebugging(
|
|
178323
178323
|
`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`
|
|
178324
178324
|
);
|
|
178325
|
-
if (gte("0.9.
|
|
178325
|
+
if (gte("0.9.97", maxVersion)) {
|
|
178326
178326
|
logForDebugging(
|
|
178327
|
-
`Native installer: current version ${"0.9.
|
|
178327
|
+
`Native installer: current version ${"0.9.97"} is already at or above maxVersion ${maxVersion}, skipping update`
|
|
178328
178328
|
);
|
|
178329
178329
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
178330
178330
|
latency_ms: Date.now() - startTime,
|
|
@@ -178336,7 +178336,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
178336
178336
|
version2 = maxVersion;
|
|
178337
178337
|
}
|
|
178338
178338
|
}
|
|
178339
|
-
if (!forceReinstall && version2 === "0.9.
|
|
178339
|
+
if (!forceReinstall && version2 === "0.9.97" && await versionIsAvailable(version2) && await isPossibleClaudeBinary(executablePath)) {
|
|
178340
178340
|
logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
|
|
178341
178341
|
logEvent("tengu_native_update_complete", {
|
|
178342
178342
|
latency_ms: Date.now() - startTime,
|
|
@@ -241092,7 +241092,7 @@ function getAnthropicEnvMetadata() {
|
|
|
241092
241092
|
}
|
|
241093
241093
|
function getBuildAgeMinutes() {
|
|
241094
241094
|
if (false) return void 0;
|
|
241095
|
-
const buildTime = (/* @__PURE__ */ new Date("2026-06-03T19:
|
|
241095
|
+
const buildTime = (/* @__PURE__ */ new Date("2026-06-03T19:49:50.045Z")).getTime();
|
|
241096
241096
|
if (isNaN(buildTime)) return void 0;
|
|
241097
241097
|
return Math.floor((Date.now() - buildTime) / 6e4);
|
|
241098
241098
|
}
|
|
@@ -281091,7 +281091,7 @@ var init_filesystem = __esm({
|
|
|
281091
281091
|
getBundledSkillsRoot = memoize60(
|
|
281092
281092
|
function getBundledSkillsRoot2() {
|
|
281093
281093
|
const nonce = randomBytes20(16).toString("hex");
|
|
281094
|
-
return join126(getClaudeTempDir(), "bundled-skills", "0.9.
|
|
281094
|
+
return join126(getClaudeTempDir(), "bundled-skills", "0.9.97", nonce);
|
|
281095
281095
|
}
|
|
281096
281096
|
);
|
|
281097
281097
|
getResolvedWorkingDirPaths = memoize60(getPathsForPermissionCheck);
|
|
@@ -284563,7 +284563,7 @@ function Feedback({
|
|
|
284563
284563
|
platform: env.platform,
|
|
284564
284564
|
gitRepo: envInfo.isGit,
|
|
284565
284565
|
terminal: env.terminal,
|
|
284566
|
-
version: "0.9.
|
|
284566
|
+
version: "0.9.97",
|
|
284567
284567
|
transcript: normalizeMessagesForAPI(messages),
|
|
284568
284568
|
errors: sanitizedErrors,
|
|
284569
284569
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -284688,7 +284688,7 @@ function Feedback({
|
|
|
284688
284688
|
", ",
|
|
284689
284689
|
env.terminal,
|
|
284690
284690
|
", v",
|
|
284691
|
-
"0.9.
|
|
284691
|
+
"0.9.97"
|
|
284692
284692
|
] })
|
|
284693
284693
|
] }),
|
|
284694
284694
|
envInfo.gitState && /* @__PURE__ */ jsxs105(ThemedText, { children: [
|
|
@@ -284739,7 +284739,7 @@ ${sanitizedDescription}
|
|
|
284739
284739
|
**Environment Info**
|
|
284740
284740
|
- Platform: ${env.platform}
|
|
284741
284741
|
- Terminal: ${env.terminal}
|
|
284742
|
-
- Version: ${"0.9.
|
|
284742
|
+
- Version: ${"0.9.97"}
|
|
284743
284743
|
- Feedback ID: ${feedbackId}
|
|
284744
284744
|
|
|
284745
284745
|
**Errors**
|
|
@@ -288001,7 +288001,7 @@ function buildPrimarySection() {
|
|
|
288001
288001
|
const nameValue = customTitle ?? /* @__PURE__ */ jsx176(ThemedText, { dimColor: true, children: "/rename to add a name" });
|
|
288002
288002
|
return [{
|
|
288003
288003
|
label: "Version",
|
|
288004
|
-
value: "0.9.
|
|
288004
|
+
value: "0.9.97"
|
|
288005
288005
|
}, {
|
|
288006
288006
|
label: "Session name",
|
|
288007
288007
|
value: nameValue
|
|
@@ -291231,7 +291231,7 @@ function Config({
|
|
|
291231
291231
|
logEvent("tengu_autoupdate_enabled", {
|
|
291232
291232
|
channel
|
|
291233
291233
|
});
|
|
291234
|
-
} }) }) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx184(ChannelDowngradeDialog, { currentVersion: "0.9.
|
|
291234
|
+
} }) }) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx184(ChannelDowngradeDialog, { currentVersion: "0.9.97", onChoice: (choice) => {
|
|
291235
291235
|
setShowSubmenu(null);
|
|
291236
291236
|
setTabsHidden(false);
|
|
291237
291237
|
if (choice === "cancel") {
|
|
@@ -291242,7 +291242,7 @@ function Config({
|
|
|
291242
291242
|
autoUpdatesChannel: "stable"
|
|
291243
291243
|
};
|
|
291244
291244
|
if (choice === "stay") {
|
|
291245
|
-
newSettings.minimumVersion = "0.9.
|
|
291245
|
+
newSettings.minimumVersion = "0.9.97";
|
|
291246
291246
|
}
|
|
291247
291247
|
updateSettingsForSource("userSettings", newSettings);
|
|
291248
291248
|
setSettingsData((prev_27) => ({
|
|
@@ -298154,7 +298154,7 @@ function HelpV2(t0) {
|
|
|
298154
298154
|
const t5 = insideModal ? void 0 : maxHeight;
|
|
298155
298155
|
let t6;
|
|
298156
298156
|
if ($[31] !== tabs) {
|
|
298157
|
-
t6 = /* @__PURE__ */ jsx210(Tabs, { title: false ? "/help" : `Tau v${"0.9.
|
|
298157
|
+
t6 = /* @__PURE__ */ jsx210(Tabs, { title: false ? "/help" : `Tau v${"0.9.97"}`, color: "professionalBlue", defaultTab: "general", children: tabs });
|
|
298158
298158
|
$[31] = tabs;
|
|
298159
298159
|
$[32] = t6;
|
|
298160
298160
|
} else {
|
|
@@ -316616,7 +316616,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
316616
316616
|
return [];
|
|
316617
316617
|
}
|
|
316618
316618
|
}
|
|
316619
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "0.9.
|
|
316619
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "0.9.97") {
|
|
316620
316620
|
if (false) {
|
|
316621
316621
|
const changelog = MACRO.VERSION_CHANGELOG;
|
|
316622
316622
|
if (changelog) {
|
|
@@ -318260,7 +318260,7 @@ async function getRecentActivity() {
|
|
|
318260
318260
|
return cachePromise;
|
|
318261
318261
|
}
|
|
318262
318262
|
function getLogoDisplayData() {
|
|
318263
|
-
const version2 = process.env.DEMO_VERSION ?? "0.9.
|
|
318263
|
+
const version2 = process.env.DEMO_VERSION ?? "0.9.97";
|
|
318264
318264
|
const serverUrl = getDirectConnectServerUrl();
|
|
318265
318265
|
const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
|
|
318266
318266
|
const cwd5 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -368681,7 +368681,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
|
|
|
368681
368681
|
smapsRollup,
|
|
368682
368682
|
platform: process.platform,
|
|
368683
368683
|
nodeVersion: process.version,
|
|
368684
|
-
ccVersion: "0.9.
|
|
368684
|
+
ccVersion: "0.9.97"
|
|
368685
368685
|
};
|
|
368686
368686
|
}
|
|
368687
368687
|
async function performHeapDump(trigger = "manual", dumpNumber = 0) {
|
|
@@ -369338,7 +369338,7 @@ var init_version = __esm({
|
|
|
369338
369338
|
call66 = async () => {
|
|
369339
369339
|
return {
|
|
369340
369340
|
type: "text",
|
|
369341
|
-
value: "2026-06-03T19:
|
|
369341
|
+
value: "2026-06-03T19:49:50.045Z" ? `${"0.9.97"} (built ${"2026-06-03T19:49:50.045Z"})` : "0.9.97"
|
|
369342
369342
|
};
|
|
369343
369343
|
};
|
|
369344
369344
|
version = {
|
|
@@ -380599,8 +380599,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
380599
380599
|
}
|
|
380600
380600
|
async function checkEnvLessBridgeMinVersion() {
|
|
380601
380601
|
const cfg = await getEnvLessBridgeConfig();
|
|
380602
|
-
if (cfg.min_version && lt("0.9.
|
|
380603
|
-
return `Your version of Tau (${"0.9.
|
|
380602
|
+
if (cfg.min_version && lt("0.9.97", cfg.min_version)) {
|
|
380603
|
+
return `Your version of Tau (${"0.9.97"}) is too old for Remote Control.
|
|
380604
380604
|
Version ${cfg.min_version} or higher is required. Run \`tau update\` to update.`;
|
|
380605
380605
|
}
|
|
380606
380606
|
return null;
|
|
@@ -384741,7 +384741,7 @@ function generateHtmlReport(data2, insights) {
|
|
|
384741
384741
|
</html>`;
|
|
384742
384742
|
}
|
|
384743
384743
|
function buildExportData(data2, insights, facets, remoteStats) {
|
|
384744
|
-
const version2 = typeof MACRO !== "undefined" ? "0.9.
|
|
384744
|
+
const version2 = typeof MACRO !== "undefined" ? "0.9.97" : "unknown";
|
|
384745
384745
|
const remote_hosts_collected = remoteStats?.hosts.filter((h5) => h5.sessionCount > 0).map((h5) => h5.name);
|
|
384746
384746
|
const facets_summary = {
|
|
384747
384747
|
total: facets.size,
|
|
@@ -388450,7 +388450,7 @@ var init_sessionStorage = __esm({
|
|
|
388450
388450
|
init_settings2();
|
|
388451
388451
|
init_slowOperations();
|
|
388452
388452
|
init_uuid();
|
|
388453
|
-
VERSION2 = typeof MACRO !== "undefined" ? "0.9.
|
|
388453
|
+
VERSION2 = typeof MACRO !== "undefined" ? "0.9.97" : "unknown";
|
|
388454
388454
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
388455
388455
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
388456
388456
|
EPHEMERAL_PROGRESS_TYPES = /* @__PURE__ */ new Set([
|
|
@@ -389401,9 +389401,9 @@ async function assertMinVersion() { return;
|
|
|
389401
389401
|
}
|
|
389402
389402
|
try {
|
|
389403
389403
|
const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
|
|
389404
|
-
if (versionConfig.minVersion && lt("0.9.
|
|
389404
|
+
if (versionConfig.minVersion && lt("0.9.97", versionConfig.minVersion)) {
|
|
389405
389405
|
console.error(`
|
|
389406
|
-
It looks like your version of Tau (${"0.9.
|
|
389406
|
+
It looks like your version of Tau (${"0.9.97"}) needs an update.
|
|
389407
389407
|
A newer version (${versionConfig.minVersion} or higher) is required to continue.
|
|
389408
389408
|
|
|
389409
389409
|
To update, please run:
|
|
@@ -389644,7 +389644,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
389644
389644
|
);
|
|
389645
389645
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
389646
389646
|
pid: process.pid,
|
|
389647
|
-
currentVersion: "0.9.
|
|
389647
|
+
currentVersion: "0.9.97"
|
|
389648
389648
|
});
|
|
389649
389649
|
return "in_progress";
|
|
389650
389650
|
}
|
|
@@ -389655,7 +389655,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
389655
389655
|
if (!env.isRunningWithBun() && env.isNpmFromWindowsPath()) {
|
|
389656
389656
|
logError(new Error("Windows NPM detected in WSL environment"));
|
|
389657
389657
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
389658
|
-
currentVersion: "0.9.
|
|
389658
|
+
currentVersion: "0.9.97"
|
|
389659
389659
|
});
|
|
389660
389660
|
console.error(`
|
|
389661
389661
|
Error: Windows NPM detected in WSL
|
|
@@ -389767,14 +389767,14 @@ async function updateTauFromNpm() {
|
|
|
389767
389767
|
);
|
|
389768
389768
|
await gracefulShutdown(1);
|
|
389769
389769
|
}
|
|
389770
|
-
if (latestVersion === "0.9.
|
|
389770
|
+
if (latestVersion === "0.9.97" || gte("0.9.97", latestVersion)) {
|
|
389771
389771
|
writeToStdout(
|
|
389772
|
-
chalk51.green(`Tau is up to date (${"0.9.
|
|
389772
|
+
chalk51.green(`Tau is up to date (${"0.9.97"})`) + "\n"
|
|
389773
389773
|
);
|
|
389774
389774
|
await gracefulShutdown(0);
|
|
389775
389775
|
}
|
|
389776
389776
|
writeToStdout(
|
|
389777
|
-
`New Tau version available: ${latestVersion} (current: ${"0.9.
|
|
389777
|
+
`New Tau version available: ${latestVersion} (current: ${"0.9.97"}) - run tau update
|
|
389778
389778
|
`
|
|
389779
389779
|
);
|
|
389780
389780
|
writeToStdout(`Installing ${"@abdoknbgit/tau"}@${latestVersion} globally...
|
|
@@ -389785,7 +389785,7 @@ async function updateTauFromNpm() {
|
|
|
389785
389785
|
case "success":
|
|
389786
389786
|
writeToStdout(
|
|
389787
389787
|
chalk51.green(
|
|
389788
|
-
`Successfully updated Tau from ${"0.9.
|
|
389788
|
+
`Successfully updated Tau from ${"0.9.97"} to ${latestVersion}`
|
|
389789
389789
|
) + "\n"
|
|
389790
389790
|
);
|
|
389791
389791
|
await regenerateCompletionCache();
|
|
@@ -389818,7 +389818,7 @@ async function updateTauFromNpm() {
|
|
|
389818
389818
|
}
|
|
389819
389819
|
async function update() {
|
|
389820
389820
|
logEvent("tengu_update_check", {});
|
|
389821
|
-
writeToStdout(`Current version: ${"0.9.
|
|
389821
|
+
writeToStdout(`Current version: ${"0.9.97"}
|
|
389822
389822
|
`);
|
|
389823
389823
|
if (isTauNpmPackage()) {
|
|
389824
389824
|
await updateTauFromNpm();
|
|
@@ -389892,8 +389892,8 @@ async function update() {
|
|
|
389892
389892
|
if (packageManager === "homebrew") {
|
|
389893
389893
|
writeToStdout("Tau is managed by Homebrew.\n");
|
|
389894
389894
|
const latest = await getLatestVersion2(channel);
|
|
389895
|
-
if (latest && !gte("0.9.
|
|
389896
|
-
writeToStdout(`Update available: ${"0.9.
|
|
389895
|
+
if (latest && !gte("0.9.97", latest)) {
|
|
389896
|
+
writeToStdout(`Update available: ${"0.9.97"} \u2192 ${latest}
|
|
389897
389897
|
`);
|
|
389898
389898
|
writeToStdout("\n");
|
|
389899
389899
|
writeToStdout("To update, run:\n");
|
|
@@ -389904,8 +389904,8 @@ async function update() {
|
|
|
389904
389904
|
} else if (packageManager === "winget") {
|
|
389905
389905
|
writeToStdout("Tau is managed by winget.\n");
|
|
389906
389906
|
const latest = await getLatestVersion2(channel);
|
|
389907
|
-
if (latest && !gte("0.9.
|
|
389908
|
-
writeToStdout(`Update available: ${"0.9.
|
|
389907
|
+
if (latest && !gte("0.9.97", latest)) {
|
|
389908
|
+
writeToStdout(`Update available: ${"0.9.97"} \u2192 ${latest}
|
|
389909
389909
|
`);
|
|
389910
389910
|
writeToStdout("\n");
|
|
389911
389911
|
writeToStdout("To update, run:\n");
|
|
@@ -389918,8 +389918,8 @@ async function update() {
|
|
|
389918
389918
|
} else if (packageManager === "apk") {
|
|
389919
389919
|
writeToStdout("Tau is managed by apk.\n");
|
|
389920
389920
|
const latest = await getLatestVersion2(channel);
|
|
389921
|
-
if (latest && !gte("0.9.
|
|
389922
|
-
writeToStdout(`Update available: ${"0.9.
|
|
389921
|
+
if (latest && !gte("0.9.97", latest)) {
|
|
389922
|
+
writeToStdout(`Update available: ${"0.9.97"} \u2192 ${latest}
|
|
389923
389923
|
`);
|
|
389924
389924
|
writeToStdout("\n");
|
|
389925
389925
|
writeToStdout("To update, run:\n");
|
|
@@ -389985,14 +389985,14 @@ async function update() {
|
|
|
389985
389985
|
process.stderr.write("Failed to check for updates\n");
|
|
389986
389986
|
await gracefulShutdown(1);
|
|
389987
389987
|
}
|
|
389988
|
-
if (result.latestVersion === "0.9.
|
|
389988
|
+
if (result.latestVersion === "0.9.97") {
|
|
389989
389989
|
writeToStdout(
|
|
389990
|
-
chalk51.green(`Tau is up to date (${"0.9.
|
|
389990
|
+
chalk51.green(`Tau is up to date (${"0.9.97"})`) + "\n"
|
|
389991
389991
|
);
|
|
389992
389992
|
} else {
|
|
389993
389993
|
writeToStdout(
|
|
389994
389994
|
chalk51.green(
|
|
389995
|
-
`Successfully updated from ${"0.9.
|
|
389995
|
+
`Successfully updated from ${"0.9.97"} to version ${result.latestVersion}`
|
|
389996
389996
|
) + "\n"
|
|
389997
389997
|
);
|
|
389998
389998
|
await regenerateCompletionCache();
|
|
@@ -390043,14 +390043,14 @@ async function update() {
|
|
|
390043
390043
|
process.stderr.write(" \u2022 Check if you need to login: npm whoami\n");
|
|
390044
390044
|
await gracefulShutdown(1);
|
|
390045
390045
|
}
|
|
390046
|
-
if (latestVersion === "0.9.
|
|
390046
|
+
if (latestVersion === "0.9.97") {
|
|
390047
390047
|
writeToStdout(
|
|
390048
|
-
chalk51.green(`Tau is up to date (${"0.9.
|
|
390048
|
+
chalk51.green(`Tau is up to date (${"0.9.97"})`) + "\n"
|
|
390049
390049
|
);
|
|
390050
390050
|
await gracefulShutdown(0);
|
|
390051
390051
|
}
|
|
390052
390052
|
writeToStdout(
|
|
390053
|
-
`New version available: ${latestVersion} (current: ${"0.9.
|
|
390053
|
+
`New version available: ${latestVersion} (current: ${"0.9.97"}) - run tau update
|
|
390054
390054
|
`
|
|
390055
390055
|
);
|
|
390056
390056
|
writeToStdout("Installing update...\n");
|
|
@@ -390104,7 +390104,7 @@ async function update() {
|
|
|
390104
390104
|
case "success":
|
|
390105
390105
|
writeToStdout(
|
|
390106
390106
|
chalk51.green(
|
|
390107
|
-
`Successfully updated from ${"0.9.
|
|
390107
|
+
`Successfully updated from ${"0.9.97"} to version ${latestVersion}`
|
|
390108
390108
|
) + "\n"
|
|
390109
390109
|
);
|
|
390110
390110
|
await regenerateCompletionCache();
|
|
@@ -390740,7 +390740,7 @@ function createBridgeLogger(options) {
|
|
|
390740
390740
|
connectUrl = buildBridgeConnectUrl(environmentId, cachedIngressUrl);
|
|
390741
390741
|
regenerateQr(connectUrl);
|
|
390742
390742
|
if (verbose) {
|
|
390743
|
-
write(chalk52.dim(`Remote Control`) + ` v${"0.9.
|
|
390743
|
+
write(chalk52.dim(`Remote Control`) + ` v${"0.9.97"}
|
|
390744
390744
|
`);
|
|
390745
390745
|
}
|
|
390746
390746
|
if (verbose) {
|
|
@@ -391880,7 +391880,7 @@ function appendToLog(path21, message) {
|
|
|
391880
391880
|
cwd: getFsImplementation().cwd(),
|
|
391881
391881
|
userType: "external",
|
|
391882
391882
|
sessionId: getSessionId(),
|
|
391883
|
-
version: "0.9.
|
|
391883
|
+
version: "0.9.97"
|
|
391884
391884
|
};
|
|
391885
391885
|
getLogWriter(path21).write(messageWithTimestamp);
|
|
391886
391886
|
}
|
|
@@ -393474,7 +393474,7 @@ This can be changed later or explicitly set with --spawn=same-dir or --spawn=wor
|
|
|
393474
393474
|
const api = createBridgeApiClient({
|
|
393475
393475
|
baseUrl,
|
|
393476
393476
|
getAccessToken: getBridgeAccessToken2,
|
|
393477
|
-
runnerVersion: "0.9.
|
|
393477
|
+
runnerVersion: "0.9.97",
|
|
393478
393478
|
onDebug: logForDebugging,
|
|
393479
393479
|
onAuth401: handleOAuth401Error2,
|
|
393480
393480
|
getTrustedDeviceToken
|
|
@@ -393837,7 +393837,7 @@ async function runBridgeHeadless(opts, signal) {
|
|
|
393837
393837
|
const api = createBridgeApiClient({
|
|
393838
393838
|
baseUrl,
|
|
393839
393839
|
getAccessToken: opts.getAccessToken,
|
|
393840
|
-
runnerVersion: "0.9.
|
|
393840
|
+
runnerVersion: "0.9.97",
|
|
393841
393841
|
onDebug: log3,
|
|
393842
393842
|
onAuth401: opts.onAuth401,
|
|
393843
393843
|
getTrustedDeviceToken
|
|
@@ -397782,7 +397782,7 @@ function completeOnboarding() {
|
|
|
397782
397782
|
saveGlobalConfig((current) => ({
|
|
397783
397783
|
...current,
|
|
397784
397784
|
hasCompletedOnboarding: true,
|
|
397785
|
-
lastOnboardingVersion: "0.9.
|
|
397785
|
+
lastOnboardingVersion: "0.9.97"
|
|
397786
397786
|
}));
|
|
397787
397787
|
}
|
|
397788
397788
|
function assertTerminalWritable() {
|
|
@@ -399892,7 +399892,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
399892
399892
|
slash_commands: inputs.commands.filter((c6) => c6.userInvocable !== false).map((c6) => c6.name),
|
|
399893
399893
|
apiKeySource: getAnthropicApiKeyWithSource().source,
|
|
399894
399894
|
betas: getSdkBetas(),
|
|
399895
|
-
claude_code_version: "0.9.
|
|
399895
|
+
claude_code_version: "0.9.97",
|
|
399896
399896
|
output_style: outputStyle2,
|
|
399897
399897
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
399898
399898
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
|
|
@@ -402743,7 +402743,7 @@ async function initBridgeCore(params) {
|
|
|
402743
402743
|
const rawApi = createBridgeApiClient({
|
|
402744
402744
|
baseUrl,
|
|
402745
402745
|
getAccessToken,
|
|
402746
|
-
runnerVersion: "0.9.
|
|
402746
|
+
runnerVersion: "0.9.97",
|
|
402747
402747
|
onDebug: logForDebugging,
|
|
402748
402748
|
onAuth401,
|
|
402749
402749
|
getTrustedDeviceToken
|
|
@@ -419154,7 +419154,7 @@ import __cjs983 from "semver"; const { major, minor, patch } = __cjs983;
|
|
|
419154
419154
|
function getSemverPart(version2) {
|
|
419155
419155
|
return `${major(version2, { loose: true })}.${minor(version2, { loose: true })}.${patch(version2, { loose: true })}`;
|
|
419156
419156
|
}
|
|
419157
|
-
function useUpdateNotification(updatedVersion, initialVersion = "0.9.
|
|
419157
|
+
function useUpdateNotification(updatedVersion, initialVersion = "0.9.97") {
|
|
419158
419158
|
const [lastNotifiedSemver, setLastNotifiedSemver] = useState145(
|
|
419159
419159
|
() => getSemverPart(initialVersion)
|
|
419160
419160
|
);
|
|
@@ -419202,7 +419202,7 @@ function AutoUpdater({
|
|
|
419202
419202
|
logForDebugging("AutoUpdater: Skipping update check in test/dev environment");
|
|
419203
419203
|
return;
|
|
419204
419204
|
}
|
|
419205
|
-
const currentVersion = "0.9.
|
|
419205
|
+
const currentVersion = "0.9.97";
|
|
419206
419206
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
419207
419207
|
let latestVersion = await getLatestVersion2(channel);
|
|
419208
419208
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -419394,12 +419394,12 @@ function NativeAutoUpdater({
|
|
|
419394
419394
|
logEvent("tengu_native_auto_updater_start", {});
|
|
419395
419395
|
try {
|
|
419396
419396
|
const maxVersion = await getMaxVersion();
|
|
419397
|
-
if (maxVersion && gt("0.9.
|
|
419397
|
+
if (maxVersion && gt("0.9.97", maxVersion)) {
|
|
419398
419398
|
const msg = await getMaxVersionMessage();
|
|
419399
419399
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
419400
419400
|
}
|
|
419401
419401
|
const result = await installLatest(channel);
|
|
419402
|
-
const currentVersion = "0.9.
|
|
419402
|
+
const currentVersion = "0.9.97";
|
|
419403
419403
|
const latencyMs = Date.now() - startTime;
|
|
419404
419404
|
if (result.lockFailed) {
|
|
419405
419405
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -419514,17 +419514,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
419514
419514
|
const maxVersion = await getMaxVersion();
|
|
419515
419515
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
419516
419516
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
419517
|
-
if (gte("0.9.
|
|
419518
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"0.9.
|
|
419517
|
+
if (gte("0.9.97", maxVersion)) {
|
|
419518
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"0.9.97"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
419519
419519
|
setUpdateAvailable(false);
|
|
419520
419520
|
return;
|
|
419521
419521
|
}
|
|
419522
419522
|
latest = maxVersion;
|
|
419523
419523
|
}
|
|
419524
|
-
const hasUpdate = latest && !gte("0.9.
|
|
419524
|
+
const hasUpdate = latest && !gte("0.9.97", latest) && !shouldSkipVersion(latest);
|
|
419525
419525
|
setUpdateAvailable(!!hasUpdate);
|
|
419526
419526
|
if (hasUpdate) {
|
|
419527
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"0.9.
|
|
419527
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"0.9.97"} -> ${latest}`);
|
|
419528
419528
|
}
|
|
419529
419529
|
};
|
|
419530
419530
|
$[0] = t1;
|
|
@@ -419555,7 +419555,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
419555
419555
|
if ($[3] !== verbose) {
|
|
419556
419556
|
t4 = verbose && /* @__PURE__ */ jsxs310(ThemedText, { dimColor: true, wrap: "truncate", children: [
|
|
419557
419557
|
"currentVersion: ",
|
|
419558
|
-
"0.9.
|
|
419558
|
+
"0.9.97"
|
|
419559
419559
|
] });
|
|
419560
419560
|
$[3] = verbose;
|
|
419561
419561
|
$[4] = t4;
|
|
@@ -426737,7 +426737,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
426737
426737
|
project_dir: getOriginalCwd(),
|
|
426738
426738
|
added_dirs: addedDirs
|
|
426739
426739
|
},
|
|
426740
|
-
version: "0.9.
|
|
426740
|
+
version: "0.9.97",
|
|
426741
426741
|
output_style: {
|
|
426742
426742
|
name: outputStyleName
|
|
426743
426743
|
},
|
|
@@ -439313,7 +439313,7 @@ async function submitTranscriptShare(messages, trigger, appearanceId) {
|
|
|
439313
439313
|
}
|
|
439314
439314
|
const data2 = {
|
|
439315
439315
|
trigger,
|
|
439316
|
-
version: "0.9.
|
|
439316
|
+
version: "0.9.97",
|
|
439317
439317
|
platform: process.platform,
|
|
439318
439318
|
transcript,
|
|
439319
439319
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : void 0,
|
|
@@ -463935,7 +463935,7 @@ async function startMCPServer(cwd5, debug3, verbose) {
|
|
|
463935
463935
|
const server = new Server(
|
|
463936
463936
|
{
|
|
463937
463937
|
name: "claude/tengu",
|
|
463938
|
-
version: "0.9.
|
|
463938
|
+
version: "0.9.97"
|
|
463939
463939
|
},
|
|
463940
463940
|
{
|
|
463941
463941
|
capabilities: {
|
|
@@ -465114,7 +465114,7 @@ function WelcomeV2() {
|
|
|
465114
465114
|
] }),
|
|
465115
465115
|
/* @__PURE__ */ jsxs362(ThemedText, { dimColor: true, children: [
|
|
465116
465116
|
"v",
|
|
465117
|
-
"0.9.
|
|
465117
|
+
"0.9.97",
|
|
465118
465118
|
" "
|
|
465119
465119
|
] })
|
|
465120
465120
|
] });
|
|
@@ -465248,7 +465248,7 @@ function WelcomeV2() {
|
|
|
465248
465248
|
] }),
|
|
465249
465249
|
/* @__PURE__ */ jsxs362(ThemedText, { dimColor: true, children: [
|
|
465250
465250
|
"v",
|
|
465251
|
-
"0.9.
|
|
465251
|
+
"0.9.97",
|
|
465252
465252
|
" "
|
|
465253
465253
|
] })
|
|
465254
465254
|
] });
|
|
@@ -465398,7 +465398,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
465398
465398
|
if ($[2] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
|
|
465399
465399
|
t22 = /* @__PURE__ */ jsxs362(ThemedText, { dimColor: true, children: [
|
|
465400
465400
|
"v",
|
|
465401
|
-
"0.9.
|
|
465401
|
+
"0.9.97",
|
|
465402
465402
|
" "
|
|
465403
465403
|
] });
|
|
465404
465404
|
$[2] = t22;
|
|
@@ -465568,7 +465568,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
465568
465568
|
if ($[24] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
|
|
465569
465569
|
t2 = /* @__PURE__ */ jsxs362(ThemedText, { dimColor: true, children: [
|
|
465570
465570
|
"v",
|
|
465571
|
-
"0.9.
|
|
465571
|
+
"0.9.97",
|
|
465572
465572
|
" "
|
|
465573
465573
|
] });
|
|
465574
465574
|
$[24] = t2;
|
|
@@ -467796,7 +467796,7 @@ ${inputPrompt}` : mergePrompt;
|
|
|
467796
467796
|
}
|
|
467797
467797
|
}
|
|
467798
467798
|
logForDiagnosticsNoPII("info", "started", {
|
|
467799
|
-
version: "0.9.
|
|
467799
|
+
version: "0.9.97",
|
|
467800
467800
|
is_native_binary: isInBundledMode()
|
|
467801
467801
|
});
|
|
467802
467802
|
registerCleanup(async () => {
|
|
@@ -468391,7 +468391,7 @@ Session: ${directConnectConfig.sessionId}`, "info");
|
|
|
468391
468391
|
sshSession = await createSSHSession({
|
|
468392
468392
|
host: _pendingSSH.host,
|
|
468393
468393
|
cwd: _pendingSSH.cwd,
|
|
468394
|
-
localVersion: "0.9.
|
|
468394
|
+
localVersion: "0.9.97",
|
|
468395
468395
|
permissionMode: _pendingSSH.permissionMode,
|
|
468396
468396
|
dangerouslySkipPermissions: _pendingSSH.dangerouslySkipPermissions,
|
|
468397
468397
|
extraCliArgs: _pendingSSH.extraCliArgs
|
|
@@ -468903,7 +468903,7 @@ Auth: unix socket -R \u2192 local proxy`, "info");
|
|
|
468903
468903
|
pendingHookMessages
|
|
468904
468904
|
}, renderAndRun);
|
|
468905
468905
|
}
|
|
468906
|
-
}).version(`${"0.9.
|
|
468906
|
+
}).version(`${"0.9.97"} (Tau)`, "-v, --version", "Output the version number");
|
|
468907
468907
|
program.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
468908
468908
|
program.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
468909
468909
|
if (canUserConfigureAdvisor()) {
|
|
@@ -469867,7 +469867,7 @@ async function main2() {
|
|
|
469867
469867
|
trace5("main() started");
|
|
469868
469868
|
const args = process.argv.slice(2);
|
|
469869
469869
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
469870
|
-
console.log(`${"0.9.
|
|
469870
|
+
console.log(`${"0.9.97"} (Tau)`);
|
|
469871
469871
|
return;
|
|
469872
469872
|
}
|
|
469873
469873
|
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.9.
|
|
3
|
+
"version": "0.9.97",
|
|
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": {
|
|
@@ -157,5 +157,12 @@
|
|
|
157
157
|
"esbuild": "^0.28.0",
|
|
158
158
|
"google-auth-library": "^9.15.1",
|
|
159
159
|
"typescript": "^5.7.3"
|
|
160
|
+
},
|
|
161
|
+
"allowScripts": {
|
|
162
|
+
"@whiskeysockets/baileys@7.0.0-rc12": true,
|
|
163
|
+
"esbuild@0.28.0": true,
|
|
164
|
+
"node-pty@1.1.0": true,
|
|
165
|
+
"protobufjs@7.6.0": true,
|
|
166
|
+
"sharp@0.34.5": true
|
|
160
167
|
}
|
|
161
168
|
}
|