@abdoknbgit/tau 0.92.30 → 0.92.31
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/tau.mjs +91 -91
- package/npm-shrinkwrap.json +104 -2
- package/package.json +199 -193
package/dist/tau.mjs
CHANGED
|
@@ -57450,7 +57450,7 @@ var init_opencode = __esm({
|
|
|
57450
57450
|
const sessionId = ctx?.sessionId ?? getProcessSessionId();
|
|
57451
57451
|
const headers = {
|
|
57452
57452
|
"User-Agent": `opencode/${OPENCODE_UA_VERSION}`,
|
|
57453
|
-
"x-opencode-client": process.env.OPENCODE_CLIENT ?? `opencode-tau/${"0.92.
|
|
57453
|
+
"x-opencode-client": process.env.OPENCODE_CLIENT ?? `opencode-tau/${"0.92.31"}`,
|
|
57454
57454
|
"x-opencode-session": sessionId,
|
|
57455
57455
|
"x-opencode-request": sessionId
|
|
57456
57456
|
};
|
|
@@ -75382,7 +75382,7 @@ var init_model = __esm({
|
|
|
75382
75382
|
|
|
75383
75383
|
// src/utils/userAgent.ts
|
|
75384
75384
|
function getClaudeCodeUserAgent() {
|
|
75385
|
-
return `claude-code/${"0.92.
|
|
75385
|
+
return `claude-code/${"0.92.31"}`;
|
|
75386
75386
|
}
|
|
75387
75387
|
var init_userAgent = __esm({
|
|
75388
75388
|
"src/utils/userAgent.ts"() {
|
|
@@ -75412,7 +75412,7 @@ function getUserAgent() {
|
|
|
75412
75412
|
const clientApp = process.env.CLAUDE_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}` : "";
|
|
75413
75413
|
const workload = getWorkload();
|
|
75414
75414
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
75415
|
-
return `claude-cli/${"0.92.
|
|
75415
|
+
return `claude-cli/${"0.92.31"} (${"external"}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
75416
75416
|
}
|
|
75417
75417
|
function getMCPUserAgent() {
|
|
75418
75418
|
const parts = [];
|
|
@@ -75426,7 +75426,7 @@ function getMCPUserAgent() {
|
|
|
75426
75426
|
parts.push(`client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}`);
|
|
75427
75427
|
}
|
|
75428
75428
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
75429
|
-
return `claude-code/${"0.92.
|
|
75429
|
+
return `claude-code/${"0.92.31"}${suffix}`;
|
|
75430
75430
|
}
|
|
75431
75431
|
function getWebFetchUserAgent() {
|
|
75432
75432
|
return `Claude-User (${getClaudeCodeUserAgent()}; +https://support.anthropic.com/)`;
|
|
@@ -91986,8 +91986,8 @@ function isCseShimEnabled() {
|
|
|
91986
91986
|
function checkBridgeMinVersion() {
|
|
91987
91987
|
if (feature("BRIDGE_MODE")) {
|
|
91988
91988
|
const config2 = getDynamicConfig_CACHED_MAY_BE_STALE("tengu_bridge_min_version", { minVersion: "0.0.0" });
|
|
91989
|
-
if (config2.minVersion && lt("0.92.
|
|
91990
|
-
return `Your version of Tau (${"0.92.
|
|
91989
|
+
if (config2.minVersion && lt("0.92.31", config2.minVersion)) {
|
|
91990
|
+
return `Your version of Tau (${"0.92.31"}) is too old for Remote Control.
|
|
91991
91991
|
Version ${config2.minVersion} or higher is required. Run \`tau update\` to update.`;
|
|
91992
91992
|
}
|
|
91993
91993
|
}
|
|
@@ -93041,7 +93041,7 @@ var init_user = __esm({
|
|
|
93041
93041
|
deviceId,
|
|
93042
93042
|
sessionId: getSessionId(),
|
|
93043
93043
|
email: getEmail(),
|
|
93044
|
-
appVersion: "0.92.
|
|
93044
|
+
appVersion: "0.92.31",
|
|
93045
93045
|
platform: getHostPlatformForAnalytics(),
|
|
93046
93046
|
organizationUuid,
|
|
93047
93047
|
accountUuid,
|
|
@@ -94724,7 +94724,7 @@ var init_metadata = __esm({
|
|
|
94724
94724
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
94725
94725
|
WHITESPACE_REGEX = /\s+/;
|
|
94726
94726
|
getVersionBase = memoize24(() => {
|
|
94727
|
-
const match = "0.92.
|
|
94727
|
+
const match = "0.92.31".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
94728
94728
|
return match ? match[0] : void 0;
|
|
94729
94729
|
});
|
|
94730
94730
|
buildEnvContext = memoize24(async () => {
|
|
@@ -94768,9 +94768,9 @@ var init_metadata = __esm({
|
|
|
94768
94768
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
94769
94769
|
isClaudeCodeAction: isEnvTruthy(process.env.CLAUDE_CODE_ACTION),
|
|
94770
94770
|
isClaudeAiAuth: isClaudeAISubscriber(),
|
|
94771
|
-
version: "0.92.
|
|
94771
|
+
version: "0.92.31",
|
|
94772
94772
|
versionBase: getVersionBase(),
|
|
94773
|
-
buildTime: "2026-09-09T02:
|
|
94773
|
+
buildTime: "2026-09-09T02:13:59.485Z",
|
|
94774
94774
|
deploymentEnvironment: env.detectDeploymentEnvironment(),
|
|
94775
94775
|
...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
|
|
94776
94776
|
githubEventName: process.env.GITHUB_EVENT_NAME,
|
|
@@ -95520,7 +95520,7 @@ function initialize1PEventLogging() {
|
|
|
95520
95520
|
const platform6 = getPlatform();
|
|
95521
95521
|
const attributes = {
|
|
95522
95522
|
[ATTR_SERVICE_NAME]: "claude-code",
|
|
95523
|
-
[ATTR_SERVICE_VERSION]: "0.92.
|
|
95523
|
+
[ATTR_SERVICE_VERSION]: "0.92.31"
|
|
95524
95524
|
};
|
|
95525
95525
|
if (platform6 === "wsl") {
|
|
95526
95526
|
const wslVersion = getWslVersion();
|
|
@@ -95549,7 +95549,7 @@ function initialize1PEventLogging() {
|
|
|
95549
95549
|
});
|
|
95550
95550
|
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger(
|
|
95551
95551
|
"com.anthropic.claude_code.events",
|
|
95552
|
-
"0.92.
|
|
95552
|
+
"0.92.31"
|
|
95553
95553
|
);
|
|
95554
95554
|
}
|
|
95555
95555
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
@@ -119372,7 +119372,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
119372
119372
|
if (!providerReadsAttributionHeader(getAPIProvider())) {
|
|
119373
119373
|
return "";
|
|
119374
119374
|
}
|
|
119375
|
-
const version2 = `${"0.92.
|
|
119375
|
+
const version2 = `${"0.92.31"}.${fingerprint}`;
|
|
119376
119376
|
const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
|
|
119377
119377
|
const cch = feature("NATIVE_CLIENT_ATTESTATION") ? " cch=00000;" : "";
|
|
119378
119378
|
const workload = getWorkload();
|
|
@@ -123791,7 +123791,7 @@ function getTelemetryAttributes() {
|
|
|
123791
123791
|
attributes["session.id"] = sessionId;
|
|
123792
123792
|
}
|
|
123793
123793
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
123794
|
-
attributes["app.version"] = "0.92.
|
|
123794
|
+
attributes["app.version"] = "0.92.31";
|
|
123795
123795
|
}
|
|
123796
123796
|
const oauthAccount = getOauthAccountInfo();
|
|
123797
123797
|
if (oauthAccount) {
|
|
@@ -170366,7 +170366,7 @@ function computeFingerprint(messageText, version2) {
|
|
|
170366
170366
|
}
|
|
170367
170367
|
function computeFingerprintFromMessages(messages) {
|
|
170368
170368
|
const firstMessageText = extractFirstMessageText(messages);
|
|
170369
|
-
return computeFingerprint(firstMessageText, "0.92.
|
|
170369
|
+
return computeFingerprint(firstMessageText, "0.92.31");
|
|
170370
170370
|
}
|
|
170371
170371
|
var FINGERPRINT_SALT;
|
|
170372
170372
|
var init_fingerprint = __esm({
|
|
@@ -170410,7 +170410,7 @@ async function sideQuery(opts) {
|
|
|
170410
170410
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
170411
170411
|
}
|
|
170412
170412
|
const messageText = extractFirstUserMessageText(messages);
|
|
170413
|
-
const fingerprint = computeFingerprint(messageText, "0.92.
|
|
170413
|
+
const fingerprint = computeFingerprint(messageText, "0.92.31");
|
|
170414
170414
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
170415
170415
|
const systemBlocks = [
|
|
170416
170416
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -171933,7 +171933,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
171933
171933
|
{
|
|
171934
171934
|
name: "claude-code",
|
|
171935
171935
|
title: "Tau",
|
|
171936
|
-
version: "0.92.
|
|
171936
|
+
version: "0.92.31",
|
|
171937
171937
|
description: "Anthropic's agentic coding tool",
|
|
171938
171938
|
websiteUrl: PRODUCT_URL
|
|
171939
171939
|
},
|
|
@@ -172359,7 +172359,7 @@ var init_client4 = __esm({
|
|
|
172359
172359
|
{
|
|
172360
172360
|
name: "claude-code",
|
|
172361
172361
|
title: "Tau",
|
|
172362
|
-
version: "0.92.
|
|
172362
|
+
version: "0.92.31",
|
|
172363
172363
|
description: "Anthropic's agentic coding tool",
|
|
172364
172364
|
websiteUrl: PRODUCT_URL
|
|
172365
172365
|
},
|
|
@@ -174005,7 +174005,7 @@ function getInstallationEnv() {
|
|
|
174005
174005
|
return void 0;
|
|
174006
174006
|
}
|
|
174007
174007
|
function getClaudeCodeVersion() {
|
|
174008
|
-
return "0.92.
|
|
174008
|
+
return "0.92.31";
|
|
174009
174009
|
}
|
|
174010
174010
|
async function getInstalledVSCodeExtensionVersion(command10) {
|
|
174011
174011
|
const { stdout } = await execFileNoThrow(
|
|
@@ -188181,7 +188181,7 @@ async function initializeBetaTracing(resource) {
|
|
|
188181
188181
|
setLoggerProvider(loggerProvider);
|
|
188182
188182
|
const eventLogger = logs.getLogger(
|
|
188183
188183
|
"com.anthropic.claude_code.events",
|
|
188184
|
-
"0.92.
|
|
188184
|
+
"0.92.31"
|
|
188185
188185
|
);
|
|
188186
188186
|
setEventLogger(eventLogger);
|
|
188187
188187
|
process.on("beforeExit", async () => {
|
|
@@ -188224,7 +188224,7 @@ async function initializeTelemetry() {
|
|
|
188224
188224
|
const platform6 = getPlatform();
|
|
188225
188225
|
const baseAttributes = {
|
|
188226
188226
|
[ATTR_SERVICE_NAME2]: "claude-code",
|
|
188227
|
-
[ATTR_SERVICE_VERSION2]: "0.92.
|
|
188227
|
+
[ATTR_SERVICE_VERSION2]: "0.92.31"
|
|
188228
188228
|
};
|
|
188229
188229
|
if (platform6 === "wsl") {
|
|
188230
188230
|
const wslVersion = getWslVersion();
|
|
@@ -188282,7 +188282,7 @@ async function initializeTelemetry() {
|
|
|
188282
188282
|
}
|
|
188283
188283
|
};
|
|
188284
188284
|
registerCleanup(shutdownTelemetry2);
|
|
188285
|
-
return meterProvider2.getMeter("com.anthropic.claude_code", "0.92.
|
|
188285
|
+
return meterProvider2.getMeter("com.anthropic.claude_code", "0.92.31");
|
|
188286
188286
|
}
|
|
188287
188287
|
const meterProvider = new MeterProvider({
|
|
188288
188288
|
resource,
|
|
@@ -188311,7 +188311,7 @@ async function initializeTelemetry() {
|
|
|
188311
188311
|
setLoggerProvider(loggerProvider);
|
|
188312
188312
|
const eventLogger = logs.getLogger(
|
|
188313
188313
|
"com.anthropic.claude_code.events",
|
|
188314
|
-
"0.92.
|
|
188314
|
+
"0.92.31"
|
|
188315
188315
|
);
|
|
188316
188316
|
setEventLogger(eventLogger);
|
|
188317
188317
|
logForDebugging("[3P telemetry] Event logger set successfully");
|
|
@@ -188383,7 +188383,7 @@ Current timeout: ${timeoutMs}ms
|
|
|
188383
188383
|
}
|
|
188384
188384
|
};
|
|
188385
188385
|
registerCleanup(shutdownTelemetry);
|
|
188386
|
-
return meterProvider.getMeter("com.anthropic.claude_code", "0.92.
|
|
188386
|
+
return meterProvider.getMeter("com.anthropic.claude_code", "0.92.31");
|
|
188387
188387
|
}
|
|
188388
188388
|
async function flushTelemetry() {
|
|
188389
188389
|
const meterProvider = getMeterProvider();
|
|
@@ -190606,7 +190606,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
190606
190606
|
}
|
|
190607
190607
|
async function getDoctorDiagnostic() {
|
|
190608
190608
|
const installationType = await getCurrentInstallationType();
|
|
190609
|
-
const version2 = typeof MACRO !== "undefined" && "0.92.
|
|
190609
|
+
const version2 = typeof MACRO !== "undefined" && "0.92.31" ? "0.92.31" : "unknown";
|
|
190610
190610
|
const installationPath = await getInstallationPath();
|
|
190611
190611
|
const invokedBinary = getInvokedBinary();
|
|
190612
190612
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -191613,9 +191613,9 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
191613
191613
|
logForDebugging(
|
|
191614
191614
|
`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`
|
|
191615
191615
|
);
|
|
191616
|
-
if (gte("0.92.
|
|
191616
|
+
if (gte("0.92.31", maxVersion)) {
|
|
191617
191617
|
logForDebugging(
|
|
191618
|
-
`Native installer: current version ${"0.92.
|
|
191618
|
+
`Native installer: current version ${"0.92.31"} is already at or above maxVersion ${maxVersion}, skipping update`
|
|
191619
191619
|
);
|
|
191620
191620
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
191621
191621
|
latency_ms: Date.now() - startTime,
|
|
@@ -191627,7 +191627,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
191627
191627
|
version2 = maxVersion;
|
|
191628
191628
|
}
|
|
191629
191629
|
}
|
|
191630
|
-
if (!forceReinstall && version2 === "0.92.
|
|
191630
|
+
if (!forceReinstall && version2 === "0.92.31" && await versionIsAvailable(version2) && await isPossibleClaudeBinary(executablePath)) {
|
|
191631
191631
|
logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
|
|
191632
191632
|
logEvent("tengu_native_update_complete", {
|
|
191633
191633
|
latency_ms: Date.now() - startTime,
|
|
@@ -258163,7 +258163,7 @@ function getAnthropicEnvMetadata() {
|
|
|
258163
258163
|
}
|
|
258164
258164
|
function getBuildAgeMinutes() {
|
|
258165
258165
|
if (false) return void 0;
|
|
258166
|
-
const buildTime = (/* @__PURE__ */ new Date("2026-09-09T02:
|
|
258166
|
+
const buildTime = (/* @__PURE__ */ new Date("2026-09-09T02:13:59.485Z")).getTime();
|
|
258167
258167
|
if (isNaN(buildTime)) return void 0;
|
|
258168
258168
|
return Math.floor((Date.now() - buildTime) / 6e4);
|
|
258169
258169
|
}
|
|
@@ -307209,7 +307209,7 @@ var init_filesystem = __esm({
|
|
|
307209
307209
|
getBundledSkillsRoot = memoize62(
|
|
307210
307210
|
function getBundledSkillsRoot2() {
|
|
307211
307211
|
const nonce = randomBytes20(16).toString("hex");
|
|
307212
|
-
return join157(getClaudeTempDir(), "bundled-skills", "0.92.
|
|
307212
|
+
return join157(getClaudeTempDir(), "bundled-skills", "0.92.31", nonce);
|
|
307213
307213
|
}
|
|
307214
307214
|
);
|
|
307215
307215
|
getResolvedWorkingDirPaths = memoize62(getPathsForPermissionCheck);
|
|
@@ -310944,7 +310944,7 @@ function Feedback({
|
|
|
310944
310944
|
platform: env.platform,
|
|
310945
310945
|
gitRepo: envInfo.isGit,
|
|
310946
310946
|
terminal: env.terminal,
|
|
310947
|
-
version: "0.92.
|
|
310947
|
+
version: "0.92.31",
|
|
310948
310948
|
transcript: normalizeMessagesForAPI(messages),
|
|
310949
310949
|
errors: sanitizedErrors,
|
|
310950
310950
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -311069,7 +311069,7 @@ function Feedback({
|
|
|
311069
311069
|
", ",
|
|
311070
311070
|
env.terminal,
|
|
311071
311071
|
", v",
|
|
311072
|
-
"0.92.
|
|
311072
|
+
"0.92.31"
|
|
311073
311073
|
] })
|
|
311074
311074
|
] }),
|
|
311075
311075
|
envInfo.gitState && /* @__PURE__ */ jsxs107(ThemedText, { children: [
|
|
@@ -311120,7 +311120,7 @@ ${sanitizedDescription}
|
|
|
311120
311120
|
**Environment Info**
|
|
311121
311121
|
- Platform: ${env.platform}
|
|
311122
311122
|
- Terminal: ${env.terminal}
|
|
311123
|
-
- Version: ${"0.92.
|
|
311123
|
+
- Version: ${"0.92.31"}
|
|
311124
311124
|
- Feedback ID: ${feedbackId}
|
|
311125
311125
|
|
|
311126
311126
|
**Errors**
|
|
@@ -314385,7 +314385,7 @@ function buildPrimarySection() {
|
|
|
314385
314385
|
const nameValue = customTitle ?? /* @__PURE__ */ jsx176(ThemedText, { dimColor: true, children: "/rename to add a name" });
|
|
314386
314386
|
return [{
|
|
314387
314387
|
label: "Version",
|
|
314388
|
-
value: "0.92.
|
|
314388
|
+
value: "0.92.31"
|
|
314389
314389
|
}, {
|
|
314390
314390
|
label: "Session name",
|
|
314391
314391
|
value: nameValue
|
|
@@ -317829,7 +317829,7 @@ function Config({
|
|
|
317829
317829
|
logEvent("tengu_autoupdate_enabled", {
|
|
317830
317830
|
channel
|
|
317831
317831
|
});
|
|
317832
|
-
} }) }) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx184(ChannelDowngradeDialog, { currentVersion: "0.92.
|
|
317832
|
+
} }) }) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx184(ChannelDowngradeDialog, { currentVersion: "0.92.31", onChoice: (choice) => {
|
|
317833
317833
|
setShowSubmenu(null);
|
|
317834
317834
|
setTabsHidden(false);
|
|
317835
317835
|
if (choice === "cancel") {
|
|
@@ -317840,7 +317840,7 @@ function Config({
|
|
|
317840
317840
|
autoUpdatesChannel: "stable"
|
|
317841
317841
|
};
|
|
317842
317842
|
if (choice === "stay") {
|
|
317843
|
-
newSettings.minimumVersion = "0.92.
|
|
317843
|
+
newSettings.minimumVersion = "0.92.31";
|
|
317844
317844
|
}
|
|
317845
317845
|
updateSettingsForSource("userSettings", newSettings);
|
|
317846
317846
|
setSettingsData((prev_27) => ({
|
|
@@ -325170,7 +325170,7 @@ function HelpV2(t0) {
|
|
|
325170
325170
|
const t5 = insideModal ? void 0 : maxHeight;
|
|
325171
325171
|
let t6;
|
|
325172
325172
|
if ($[31] !== tabs) {
|
|
325173
|
-
t6 = /* @__PURE__ */ jsx210(Tabs, { title: false ? "/help" : `Tau v${"0.92.
|
|
325173
|
+
t6 = /* @__PURE__ */ jsx210(Tabs, { title: false ? "/help" : `Tau v${"0.92.31"}`, color: "professionalBlue", defaultTab: "general", children: tabs });
|
|
325174
325174
|
$[31] = tabs;
|
|
325175
325175
|
$[32] = t6;
|
|
325176
325176
|
} else {
|
|
@@ -343571,7 +343571,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
343571
343571
|
return [];
|
|
343572
343572
|
}
|
|
343573
343573
|
}
|
|
343574
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "0.92.
|
|
343574
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "0.92.31") {
|
|
343575
343575
|
if (false) {
|
|
343576
343576
|
const changelog = MACRO.VERSION_CHANGELOG;
|
|
343577
343577
|
if (changelog) {
|
|
@@ -346999,7 +346999,7 @@ async function getRecentActivity() {
|
|
|
346999
346999
|
return cachePromise;
|
|
347000
347000
|
}
|
|
347001
347001
|
function getLogoDisplayData() {
|
|
347002
|
-
const version2 = process.env.DEMO_VERSION ?? "0.92.
|
|
347002
|
+
const version2 = process.env.DEMO_VERSION ?? "0.92.31";
|
|
347003
347003
|
const serverUrl = getDirectConnectServerUrl();
|
|
347004
347004
|
const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
|
|
347005
347005
|
const cwd5 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -400343,7 +400343,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
|
|
|
400343
400343
|
smapsRollup,
|
|
400344
400344
|
platform: process.platform,
|
|
400345
400345
|
nodeVersion: process.version,
|
|
400346
|
-
ccVersion: "0.92.
|
|
400346
|
+
ccVersion: "0.92.31"
|
|
400347
400347
|
};
|
|
400348
400348
|
}
|
|
400349
400349
|
async function performHeapDump(trigger = "manual", dumpNumber = 0) {
|
|
@@ -401000,7 +401000,7 @@ var init_version = __esm({
|
|
|
401000
401000
|
call71 = async () => {
|
|
401001
401001
|
return {
|
|
401002
401002
|
type: "text",
|
|
401003
|
-
value: "2026-09-09T02:
|
|
401003
|
+
value: "2026-09-09T02:13:59.485Z" ? `${"0.92.31"} (built ${"2026-09-09T02:13:59.485Z"})` : "0.92.31"
|
|
401004
401004
|
};
|
|
401005
401005
|
};
|
|
401006
401006
|
version = {
|
|
@@ -410778,8 +410778,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
410778
410778
|
}
|
|
410779
410779
|
async function checkEnvLessBridgeMinVersion() {
|
|
410780
410780
|
const cfg = await getEnvLessBridgeConfig();
|
|
410781
|
-
if (cfg.min_version && lt("0.92.
|
|
410782
|
-
return `Your version of Tau (${"0.92.
|
|
410781
|
+
if (cfg.min_version && lt("0.92.31", cfg.min_version)) {
|
|
410782
|
+
return `Your version of Tau (${"0.92.31"}) is too old for Remote Control.
|
|
410783
410783
|
Version ${cfg.min_version} or higher is required. Run \`tau update\` to update.`;
|
|
410784
410784
|
}
|
|
410785
410785
|
return null;
|
|
@@ -413433,7 +413433,7 @@ function generateHtmlReport(data2, insights) {
|
|
|
413433
413433
|
</html>`;
|
|
413434
413434
|
}
|
|
413435
413435
|
function buildExportData(data2, insights, facets, remoteStats) {
|
|
413436
|
-
const version2 = typeof MACRO !== "undefined" ? "0.92.
|
|
413436
|
+
const version2 = typeof MACRO !== "undefined" ? "0.92.31" : "unknown";
|
|
413437
413437
|
const remote_hosts_collected = remoteStats?.hosts.filter((h5) => h5.sessionCount > 0).map((h5) => h5.name);
|
|
413438
413438
|
const facets_summary = {
|
|
413439
413439
|
total: facets.size,
|
|
@@ -417186,7 +417186,7 @@ var init_sessionStorage = __esm({
|
|
|
417186
417186
|
init_settings2();
|
|
417187
417187
|
init_slowOperations();
|
|
417188
417188
|
init_uuid();
|
|
417189
|
-
VERSION2 = typeof MACRO !== "undefined" ? "0.92.
|
|
417189
|
+
VERSION2 = typeof MACRO !== "undefined" ? "0.92.31" : "unknown";
|
|
417190
417190
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
417191
417191
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
417192
417192
|
EPHEMERAL_PROGRESS_TYPES = /* @__PURE__ */ new Set([
|
|
@@ -418179,9 +418179,9 @@ async function assertMinVersion() { return;
|
|
|
418179
418179
|
}
|
|
418180
418180
|
try {
|
|
418181
418181
|
const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
|
|
418182
|
-
if (versionConfig.minVersion && lt("0.92.
|
|
418182
|
+
if (versionConfig.minVersion && lt("0.92.31", versionConfig.minVersion)) {
|
|
418183
418183
|
console.error(`
|
|
418184
|
-
It looks like your version of Tau (${"0.92.
|
|
418184
|
+
It looks like your version of Tau (${"0.92.31"}) needs an update.
|
|
418185
418185
|
A newer version (${versionConfig.minVersion} or higher) is required to continue.
|
|
418186
418186
|
|
|
418187
418187
|
To update, please run:
|
|
@@ -418367,7 +418367,7 @@ async function installGlobalPackage(specificVersion, options = {}) {
|
|
|
418367
418367
|
);
|
|
418368
418368
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
418369
418369
|
pid: process.pid,
|
|
418370
|
-
currentVersion: "0.92.
|
|
418370
|
+
currentVersion: "0.92.31"
|
|
418371
418371
|
});
|
|
418372
418372
|
return "in_progress";
|
|
418373
418373
|
}
|
|
@@ -418389,7 +418389,7 @@ async function installGlobalPackage(specificVersion, options = {}) {
|
|
|
418389
418389
|
if (!isBun && env.isNpmFromWindowsPath()) {
|
|
418390
418390
|
logError(new Error("Windows NPM detected in WSL environment"));
|
|
418391
418391
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
418392
|
-
currentVersion: "0.92.
|
|
418392
|
+
currentVersion: "0.92.31"
|
|
418393
418393
|
});
|
|
418394
418394
|
console.error(`
|
|
418395
418395
|
Error: Windows NPM detected in WSL
|
|
@@ -418593,7 +418593,7 @@ async function verifyCurrentNpmInstallation(installationType) {
|
|
|
418593
418593
|
}
|
|
418594
418594
|
async function update() {
|
|
418595
418595
|
logEvent("tengu_update_check", {});
|
|
418596
|
-
writeToStdout(`Current version: ${"0.92.
|
|
418596
|
+
writeToStdout(`Current version: ${"0.92.31"}
|
|
418597
418597
|
`);
|
|
418598
418598
|
const channel = "latest";
|
|
418599
418599
|
writeToStdout(`Checking for updates to ${channel} version...
|
|
@@ -418663,8 +418663,8 @@ async function update() {
|
|
|
418663
418663
|
if (packageManager === "homebrew") {
|
|
418664
418664
|
writeToStdout("Tau is managed by Homebrew.\n");
|
|
418665
418665
|
const latest = await getLatestVersion2(channel);
|
|
418666
|
-
if (latest && !gte("0.92.
|
|
418667
|
-
writeToStdout(`Update available: ${"0.92.
|
|
418666
|
+
if (latest && !gte("0.92.31", latest)) {
|
|
418667
|
+
writeToStdout(`Update available: ${"0.92.31"} \u2192 ${latest}
|
|
418668
418668
|
`);
|
|
418669
418669
|
writeToStdout("\n");
|
|
418670
418670
|
if (true) {
|
|
@@ -418681,8 +418681,8 @@ async function update() {
|
|
|
418681
418681
|
} else if (packageManager === "winget") {
|
|
418682
418682
|
writeToStdout("Tau is managed by winget.\n");
|
|
418683
418683
|
const latest = await getLatestVersion2(channel);
|
|
418684
|
-
if (latest && !gte("0.92.
|
|
418685
|
-
writeToStdout(`Update available: ${"0.92.
|
|
418684
|
+
if (latest && !gte("0.92.31", latest)) {
|
|
418685
|
+
writeToStdout(`Update available: ${"0.92.31"} \u2192 ${latest}
|
|
418686
418686
|
`);
|
|
418687
418687
|
writeToStdout("\n");
|
|
418688
418688
|
if (true) {
|
|
@@ -418701,8 +418701,8 @@ async function update() {
|
|
|
418701
418701
|
} else if (packageManager === "apk") {
|
|
418702
418702
|
writeToStdout("Tau is managed by apk.\n");
|
|
418703
418703
|
const latest = await getLatestVersion2(channel);
|
|
418704
|
-
if (latest && !gte("0.92.
|
|
418705
|
-
writeToStdout(`Update available: ${"0.92.
|
|
418704
|
+
if (latest && !gte("0.92.31", latest)) {
|
|
418705
|
+
writeToStdout(`Update available: ${"0.92.31"} \u2192 ${latest}
|
|
418706
418706
|
`);
|
|
418707
418707
|
writeToStdout("\n");
|
|
418708
418708
|
if (true) {
|
|
@@ -418774,14 +418774,14 @@ async function update() {
|
|
|
418774
418774
|
process.stderr.write("Failed to check for updates\n");
|
|
418775
418775
|
await gracefulShutdown(1);
|
|
418776
418776
|
}
|
|
418777
|
-
if (result.latestVersion === "0.92.
|
|
418777
|
+
if (result.latestVersion === "0.92.31") {
|
|
418778
418778
|
writeToStdout(
|
|
418779
|
-
chalk51.green(`Tau is up to date (${"0.92.
|
|
418779
|
+
chalk51.green(`Tau is up to date (${"0.92.31"})`) + "\n"
|
|
418780
418780
|
);
|
|
418781
418781
|
} else {
|
|
418782
418782
|
writeToStdout(
|
|
418783
418783
|
chalk51.green(
|
|
418784
|
-
`Successfully updated from ${"0.92.
|
|
418784
|
+
`Successfully updated from ${"0.92.31"} to version ${result.latestVersion}`
|
|
418785
418785
|
) + "\n"
|
|
418786
418786
|
);
|
|
418787
418787
|
await regenerateCompletionCache();
|
|
@@ -418830,7 +418830,7 @@ async function update() {
|
|
|
418830
418830
|
await gracefulShutdown(1);
|
|
418831
418831
|
return;
|
|
418832
418832
|
}
|
|
418833
|
-
if (latestVersion === "0.92.
|
|
418833
|
+
if (latestVersion === "0.92.31" || gte("0.92.31", latestVersion)) {
|
|
418834
418834
|
if ((diagnostic.installationType === "npm-global" || diagnostic.installationType === "npm-local") && !await verifyCurrentNpmInstallation(diagnostic.installationType)) {
|
|
418835
418835
|
process.stderr.write(
|
|
418836
418836
|
"Tau is already on the selected version, but its installation is incomplete.\n"
|
|
@@ -418842,12 +418842,12 @@ async function update() {
|
|
|
418842
418842
|
return;
|
|
418843
418843
|
}
|
|
418844
418844
|
writeToStdout(
|
|
418845
|
-
chalk51.green(`Tau is up to date (${"0.92.
|
|
418845
|
+
chalk51.green(`Tau is up to date (${"0.92.31"})`) + "\n"
|
|
418846
418846
|
);
|
|
418847
418847
|
await gracefulShutdown(0);
|
|
418848
418848
|
}
|
|
418849
418849
|
writeToStdout(
|
|
418850
|
-
`New version available: ${latestVersion} (current: ${"0.92.
|
|
418850
|
+
`New version available: ${latestVersion} (current: ${"0.92.31"}) - run tau update
|
|
418851
418851
|
`
|
|
418852
418852
|
);
|
|
418853
418853
|
writeToStdout("Installing update...\n");
|
|
@@ -418909,7 +418909,7 @@ async function update() {
|
|
|
418909
418909
|
}
|
|
418910
418910
|
writeToStdout(
|
|
418911
418911
|
chalk51.green(
|
|
418912
|
-
`Successfully updated from ${"0.92.
|
|
418912
|
+
`Successfully updated from ${"0.92.31"} to version ${latestVersion}`
|
|
418913
418913
|
) + "\n"
|
|
418914
418914
|
);
|
|
418915
418915
|
await regenerateCompletionCache();
|
|
@@ -419554,7 +419554,7 @@ function createBridgeLogger(options) {
|
|
|
419554
419554
|
connectUrl = buildBridgeConnectUrl(environmentId, cachedIngressUrl);
|
|
419555
419555
|
regenerateQr(connectUrl);
|
|
419556
419556
|
if (verbose) {
|
|
419557
|
-
write(chalk52.dim(`Remote Control`) + ` v${"0.92.
|
|
419557
|
+
write(chalk52.dim(`Remote Control`) + ` v${"0.92.31"}
|
|
419558
419558
|
`);
|
|
419559
419559
|
}
|
|
419560
419560
|
if (verbose) {
|
|
@@ -420693,7 +420693,7 @@ function appendToLog(path24, message) {
|
|
|
420693
420693
|
cwd: getFsImplementation().cwd(),
|
|
420694
420694
|
userType: "external",
|
|
420695
420695
|
sessionId: getSessionId(),
|
|
420696
|
-
version: "0.92.
|
|
420696
|
+
version: "0.92.31"
|
|
420697
420697
|
};
|
|
420698
420698
|
getLogWriter(path24).write(messageWithTimestamp);
|
|
420699
420699
|
}
|
|
@@ -422276,7 +422276,7 @@ This can be changed later or explicitly set with --spawn=same-dir or --spawn=wor
|
|
|
422276
422276
|
const api = createBridgeApiClient({
|
|
422277
422277
|
baseUrl,
|
|
422278
422278
|
getAccessToken: getBridgeAccessToken2,
|
|
422279
|
-
runnerVersion: "0.92.
|
|
422279
|
+
runnerVersion: "0.92.31",
|
|
422280
422280
|
onDebug: logForDebugging,
|
|
422281
422281
|
onAuth401: handleOAuth401Error2,
|
|
422282
422282
|
getTrustedDeviceToken
|
|
@@ -422631,7 +422631,7 @@ async function runBridgeHeadless(opts, signal) {
|
|
|
422631
422631
|
const api = createBridgeApiClient({
|
|
422632
422632
|
baseUrl,
|
|
422633
422633
|
getAccessToken: opts.getAccessToken,
|
|
422634
|
-
runnerVersion: "0.92.
|
|
422634
|
+
runnerVersion: "0.92.31",
|
|
422635
422635
|
onDebug: log3,
|
|
422636
422636
|
onAuth401: opts.onAuth401,
|
|
422637
422637
|
getTrustedDeviceToken
|
|
@@ -426576,7 +426576,7 @@ function completeOnboarding() {
|
|
|
426576
426576
|
saveGlobalConfig((current) => ({
|
|
426577
426577
|
...current,
|
|
426578
426578
|
hasCompletedOnboarding: true,
|
|
426579
|
-
lastOnboardingVersion: "0.92.
|
|
426579
|
+
lastOnboardingVersion: "0.92.31"
|
|
426580
426580
|
}));
|
|
426581
426581
|
}
|
|
426582
426582
|
function assertTerminalWritable() {
|
|
@@ -428688,7 +428688,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
428688
428688
|
slash_commands: inputs.commands.filter((c6) => c6.userInvocable !== false).map((c6) => c6.name),
|
|
428689
428689
|
apiKeySource: getAnthropicApiKeyWithSource().source,
|
|
428690
428690
|
betas: getSdkBetas(),
|
|
428691
|
-
claude_code_version: "0.92.
|
|
428691
|
+
claude_code_version: "0.92.31",
|
|
428692
428692
|
output_style: outputStyle2,
|
|
428693
428693
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
428694
428694
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
|
|
@@ -431539,7 +431539,7 @@ async function initBridgeCore(params) {
|
|
|
431539
431539
|
const rawApi = createBridgeApiClient({
|
|
431540
431540
|
baseUrl,
|
|
431541
431541
|
getAccessToken,
|
|
431542
|
-
runnerVersion: "0.92.
|
|
431542
|
+
runnerVersion: "0.92.31",
|
|
431543
431543
|
onDebug: logForDebugging,
|
|
431544
431544
|
onAuth401,
|
|
431545
431545
|
getTrustedDeviceToken
|
|
@@ -448257,7 +448257,7 @@ import __cjs996 from "semver"; const { major, minor, patch } = __cjs996;
|
|
|
448257
448257
|
function getSemverPart(version2) {
|
|
448258
448258
|
return `${major(version2, { loose: true })}.${minor(version2, { loose: true })}.${patch(version2, { loose: true })}`;
|
|
448259
448259
|
}
|
|
448260
|
-
function useUpdateNotification(updatedVersion, initialVersion = "0.92.
|
|
448260
|
+
function useUpdateNotification(updatedVersion, initialVersion = "0.92.31") {
|
|
448261
448261
|
const [lastNotifiedSemver, setLastNotifiedSemver] = useState149(
|
|
448262
448262
|
() => getSemverPart(initialVersion)
|
|
448263
448263
|
);
|
|
@@ -448305,7 +448305,7 @@ function AutoUpdater({
|
|
|
448305
448305
|
logForDebugging("AutoUpdater: Skipping update check in test/dev environment");
|
|
448306
448306
|
return;
|
|
448307
448307
|
}
|
|
448308
|
-
const currentVersion = "0.92.
|
|
448308
|
+
const currentVersion = "0.92.31";
|
|
448309
448309
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
448310
448310
|
let latestVersion = await getLatestVersion2(channel);
|
|
448311
448311
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -448500,12 +448500,12 @@ function NativeAutoUpdater({
|
|
|
448500
448500
|
logEvent("tengu_native_auto_updater_start", {});
|
|
448501
448501
|
try {
|
|
448502
448502
|
const maxVersion = await getMaxVersion();
|
|
448503
|
-
if (maxVersion && gt("0.92.
|
|
448503
|
+
if (maxVersion && gt("0.92.31", maxVersion)) {
|
|
448504
448504
|
const msg = await getMaxVersionMessage();
|
|
448505
448505
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
448506
448506
|
}
|
|
448507
448507
|
const result = await installLatest(channel);
|
|
448508
|
-
const currentVersion = "0.92.
|
|
448508
|
+
const currentVersion = "0.92.31";
|
|
448509
448509
|
const latencyMs = Date.now() - startTime;
|
|
448510
448510
|
if (result.lockFailed) {
|
|
448511
448511
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -448620,17 +448620,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
448620
448620
|
const maxVersion = await getMaxVersion();
|
|
448621
448621
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
448622
448622
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
448623
|
-
if (gte("0.92.
|
|
448624
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"0.92.
|
|
448623
|
+
if (gte("0.92.31", maxVersion)) {
|
|
448624
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"0.92.31"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
448625
448625
|
setUpdateAvailable(false);
|
|
448626
448626
|
return;
|
|
448627
448627
|
}
|
|
448628
448628
|
latest = maxVersion;
|
|
448629
448629
|
}
|
|
448630
|
-
const hasUpdate = latest && !gte("0.92.
|
|
448630
|
+
const hasUpdate = latest && !gte("0.92.31", latest) && !shouldSkipVersion(latest);
|
|
448631
448631
|
setUpdateAvailable(!!hasUpdate);
|
|
448632
448632
|
if (hasUpdate) {
|
|
448633
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"0.92.
|
|
448633
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"0.92.31"} -> ${latest}`);
|
|
448634
448634
|
}
|
|
448635
448635
|
};
|
|
448636
448636
|
$[0] = t1;
|
|
@@ -448661,7 +448661,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
448661
448661
|
if ($[3] !== verbose) {
|
|
448662
448662
|
t4 = verbose && /* @__PURE__ */ jsxs316(ThemedText, { dimColor: true, wrap: "truncate", children: [
|
|
448663
448663
|
"currentVersion: ",
|
|
448664
|
-
"0.92.
|
|
448664
|
+
"0.92.31"
|
|
448665
448665
|
] });
|
|
448666
448666
|
$[3] = verbose;
|
|
448667
448667
|
$[4] = t4;
|
|
@@ -456139,7 +456139,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
456139
456139
|
project_dir: getOriginalCwd(),
|
|
456140
456140
|
added_dirs: addedDirs
|
|
456141
456141
|
},
|
|
456142
|
-
version: "0.92.
|
|
456142
|
+
version: "0.92.31",
|
|
456143
456143
|
output_style: {
|
|
456144
456144
|
name: outputStyleName
|
|
456145
456145
|
},
|
|
@@ -468907,7 +468907,7 @@ async function submitTranscriptShare(messages, trigger, appearanceId) {
|
|
|
468907
468907
|
}
|
|
468908
468908
|
const data2 = {
|
|
468909
468909
|
trigger,
|
|
468910
|
-
version: "0.92.
|
|
468910
|
+
version: "0.92.31",
|
|
468911
468911
|
platform: process.platform,
|
|
468912
468912
|
transcript,
|
|
468913
468913
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : void 0,
|
|
@@ -474369,7 +474369,7 @@ async function checkForNpmUpdate() {
|
|
|
474369
474369
|
return null;
|
|
474370
474370
|
}
|
|
474371
474371
|
try {
|
|
474372
|
-
const currentVersion = "0.92.
|
|
474372
|
+
const currentVersion = "0.92.31";
|
|
474373
474373
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
474374
474374
|
let latestVersion = await getLatestVersion2(channel);
|
|
474375
474375
|
const maxVersion = await getMaxVersion();
|
|
@@ -493664,7 +493664,7 @@ async function startMCPServer(cwd5, debug6, verbose) {
|
|
|
493664
493664
|
const server2 = new Server(
|
|
493665
493665
|
{
|
|
493666
493666
|
name: "claude/tengu",
|
|
493667
|
-
version: "0.92.
|
|
493667
|
+
version: "0.92.31"
|
|
493668
493668
|
},
|
|
493669
493669
|
{
|
|
493670
493670
|
capabilities: {
|
|
@@ -494843,7 +494843,7 @@ function WelcomeV2() {
|
|
|
494843
494843
|
] }),
|
|
494844
494844
|
/* @__PURE__ */ jsxs368(ThemedText, { dimColor: true, children: [
|
|
494845
494845
|
"v",
|
|
494846
|
-
"0.92.
|
|
494846
|
+
"0.92.31",
|
|
494847
494847
|
" "
|
|
494848
494848
|
] })
|
|
494849
494849
|
] });
|
|
@@ -494977,7 +494977,7 @@ function WelcomeV2() {
|
|
|
494977
494977
|
] }),
|
|
494978
494978
|
/* @__PURE__ */ jsxs368(ThemedText, { dimColor: true, children: [
|
|
494979
494979
|
"v",
|
|
494980
|
-
"0.92.
|
|
494980
|
+
"0.92.31",
|
|
494981
494981
|
" "
|
|
494982
494982
|
] })
|
|
494983
494983
|
] });
|
|
@@ -495127,7 +495127,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
495127
495127
|
if ($[2] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
|
|
495128
495128
|
t22 = /* @__PURE__ */ jsxs368(ThemedText, { dimColor: true, children: [
|
|
495129
495129
|
"v",
|
|
495130
|
-
"0.92.
|
|
495130
|
+
"0.92.31",
|
|
495131
495131
|
" "
|
|
495132
495132
|
] });
|
|
495133
495133
|
$[2] = t22;
|
|
@@ -495297,7 +495297,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
495297
495297
|
if ($[24] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
|
|
495298
495298
|
t2 = /* @__PURE__ */ jsxs368(ThemedText, { dimColor: true, children: [
|
|
495299
495299
|
"v",
|
|
495300
|
-
"0.92.
|
|
495300
|
+
"0.92.31",
|
|
495301
495301
|
" "
|
|
495302
495302
|
] });
|
|
495303
495303
|
$[24] = t2;
|
|
@@ -497550,7 +497550,7 @@ ${inputPrompt}` : mergePrompt;
|
|
|
497550
497550
|
}
|
|
497551
497551
|
}
|
|
497552
497552
|
logForDiagnosticsNoPII("info", "started", {
|
|
497553
|
-
version: "0.92.
|
|
497553
|
+
version: "0.92.31",
|
|
497554
497554
|
is_native_binary: isInBundledMode()
|
|
497555
497555
|
});
|
|
497556
497556
|
registerCleanup(async () => {
|
|
@@ -498147,7 +498147,7 @@ Session: ${directConnectConfig.sessionId}`, "info");
|
|
|
498147
498147
|
sshSession = await createSSHSession({
|
|
498148
498148
|
host: _pendingSSH.host,
|
|
498149
498149
|
cwd: _pendingSSH.cwd,
|
|
498150
|
-
localVersion: "0.92.
|
|
498150
|
+
localVersion: "0.92.31",
|
|
498151
498151
|
permissionMode: _pendingSSH.permissionMode,
|
|
498152
498152
|
dangerouslySkipPermissions: _pendingSSH.dangerouslySkipPermissions,
|
|
498153
498153
|
extraCliArgs: _pendingSSH.extraCliArgs
|
|
@@ -498662,7 +498662,7 @@ Auth: unix socket -R \u2192 local proxy`, "info");
|
|
|
498662
498662
|
pendingHookMessages
|
|
498663
498663
|
}, renderAndRun);
|
|
498664
498664
|
}
|
|
498665
|
-
}).version(`${"0.92.
|
|
498665
|
+
}).version(`${"0.92.31"} (Tau)`, "-v, --version", "Output the version number");
|
|
498666
498666
|
program.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
498667
498667
|
program.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
498668
498668
|
if (canUserConfigureAdvisor()) {
|
|
@@ -499639,7 +499639,7 @@ async function main2() {
|
|
|
499639
499639
|
trace6("main() started");
|
|
499640
499640
|
const args = process.argv.slice(2);
|
|
499641
499641
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
499642
|
-
console.log(`${"0.92.
|
|
499642
|
+
console.log(`${"0.92.31"} (Tau)`);
|
|
499643
499643
|
return;
|
|
499644
499644
|
}
|
|
499645
499645
|
if (args.length === 1 && (args[0] === "update" || args[0] === "upgrade")) {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -95,6 +95,12 @@
|
|
|
95
95
|
"license": "MIT",
|
|
96
96
|
"name": "@abdoknbgit/tau",
|
|
97
97
|
"optionalDependencies": {
|
|
98
|
+
"@abdoknbgit/tau-voice-darwin-arm64": "1.0.0",
|
|
99
|
+
"@abdoknbgit/tau-voice-darwin-x64": "1.0.0",
|
|
100
|
+
"@abdoknbgit/tau-voice-linux-arm64": "1.0.0",
|
|
101
|
+
"@abdoknbgit/tau-voice-linux-x64": "1.0.0",
|
|
102
|
+
"@abdoknbgit/tau-voice-win32-arm64": "1.0.0",
|
|
103
|
+
"@abdoknbgit/tau-voice-win32-x64": "1.0.0",
|
|
98
104
|
"node-pty": "^1.1.0"
|
|
99
105
|
},
|
|
100
106
|
"peerDependencies": {
|
|
@@ -105,7 +111,103 @@
|
|
|
105
111
|
"optional": true
|
|
106
112
|
}
|
|
107
113
|
},
|
|
108
|
-
"version": "0.92.
|
|
114
|
+
"version": "0.92.31"
|
|
115
|
+
},
|
|
116
|
+
"node_modules/@abdoknbgit/tau-voice-darwin-arm64": {
|
|
117
|
+
"cpu": [
|
|
118
|
+
"arm64"
|
|
119
|
+
],
|
|
120
|
+
"engines": {
|
|
121
|
+
"node": ">=20.19.0 <21.0.0 || >=22.12.0"
|
|
122
|
+
},
|
|
123
|
+
"integrity": "sha512-IDdPKJhqBmoNRPcZ2DvRUEQqDfhmyzBc+bUA7ft3Fq+LFVwWDq/ooXXtTy4Xel+BpHKuEGkYxN8pOnPaoEgNrA==",
|
|
124
|
+
"license": "MIT",
|
|
125
|
+
"optional": true,
|
|
126
|
+
"os": [
|
|
127
|
+
"darwin"
|
|
128
|
+
],
|
|
129
|
+
"resolved": "https://registry.npmjs.org/@abdoknbgit/tau-voice-darwin-arm64/-/tau-voice-darwin-arm64-1.0.0.tgz",
|
|
130
|
+
"version": "1.0.0"
|
|
131
|
+
},
|
|
132
|
+
"node_modules/@abdoknbgit/tau-voice-darwin-x64": {
|
|
133
|
+
"cpu": [
|
|
134
|
+
"x64"
|
|
135
|
+
],
|
|
136
|
+
"engines": {
|
|
137
|
+
"node": ">=20.19.0 <21.0.0 || >=22.12.0"
|
|
138
|
+
},
|
|
139
|
+
"integrity": "sha512-bMN6VEEHQ9AqA5vmL0ie/ew2Z9qh2YvJ+qOxl/1CqFJRGCPQezLaw1fUX1qy5Bjz1dyAUx9JPLXPmy1LwxMTOA==",
|
|
140
|
+
"license": "MIT",
|
|
141
|
+
"optional": true,
|
|
142
|
+
"os": [
|
|
143
|
+
"darwin"
|
|
144
|
+
],
|
|
145
|
+
"resolved": "https://registry.npmjs.org/@abdoknbgit/tau-voice-darwin-x64/-/tau-voice-darwin-x64-1.0.0.tgz",
|
|
146
|
+
"version": "1.0.0"
|
|
147
|
+
},
|
|
148
|
+
"node_modules/@abdoknbgit/tau-voice-linux-arm64": {
|
|
149
|
+
"cpu": [
|
|
150
|
+
"arm64"
|
|
151
|
+
],
|
|
152
|
+
"engines": {
|
|
153
|
+
"node": ">=20.19.0 <21.0.0 || >=22.12.0"
|
|
154
|
+
},
|
|
155
|
+
"integrity": "sha512-TnnbPX5I9savIMYtigxq4zohM4YIgoe9k6zCdL3tJgxAvQe/udQpjJwzl4Jnw+o/IyOKQyDzltAcsqHIOAml6g==",
|
|
156
|
+
"license": "MIT",
|
|
157
|
+
"optional": true,
|
|
158
|
+
"os": [
|
|
159
|
+
"linux"
|
|
160
|
+
],
|
|
161
|
+
"resolved": "https://registry.npmjs.org/@abdoknbgit/tau-voice-linux-arm64/-/tau-voice-linux-arm64-1.0.0.tgz",
|
|
162
|
+
"version": "1.0.0"
|
|
163
|
+
},
|
|
164
|
+
"node_modules/@abdoknbgit/tau-voice-linux-x64": {
|
|
165
|
+
"cpu": [
|
|
166
|
+
"x64"
|
|
167
|
+
],
|
|
168
|
+
"engines": {
|
|
169
|
+
"node": ">=20.19.0 <21.0.0 || >=22.12.0"
|
|
170
|
+
},
|
|
171
|
+
"integrity": "sha512-39fN4mwvKJdj6lkH+Gx+F+xTecVteYcbPeDoORaIinvBGAyAe6Vugkbk6Jsc6kFdbRsgKvpOMC7CDEu+YFKc8w==",
|
|
172
|
+
"license": "MIT",
|
|
173
|
+
"optional": true,
|
|
174
|
+
"os": [
|
|
175
|
+
"linux"
|
|
176
|
+
],
|
|
177
|
+
"resolved": "https://registry.npmjs.org/@abdoknbgit/tau-voice-linux-x64/-/tau-voice-linux-x64-1.0.0.tgz",
|
|
178
|
+
"version": "1.0.0"
|
|
179
|
+
},
|
|
180
|
+
"node_modules/@abdoknbgit/tau-voice-win32-arm64": {
|
|
181
|
+
"cpu": [
|
|
182
|
+
"arm64"
|
|
183
|
+
],
|
|
184
|
+
"engines": {
|
|
185
|
+
"node": ">=20.19.0 <21.0.0 || >=22.12.0"
|
|
186
|
+
},
|
|
187
|
+
"integrity": "sha512-X7z9VX8Ijewsc9MbxCARbK5pd3AMHZbHGAeFfFTQx9PY8vPcXQG7wv3NAzg0dcyuHHq3cyHZuDs43nx3r8lJwA==",
|
|
188
|
+
"license": "MIT",
|
|
189
|
+
"optional": true,
|
|
190
|
+
"os": [
|
|
191
|
+
"win32"
|
|
192
|
+
],
|
|
193
|
+
"resolved": "https://registry.npmjs.org/@abdoknbgit/tau-voice-win32-arm64/-/tau-voice-win32-arm64-1.0.0.tgz",
|
|
194
|
+
"version": "1.0.0"
|
|
195
|
+
},
|
|
196
|
+
"node_modules/@abdoknbgit/tau-voice-win32-x64": {
|
|
197
|
+
"cpu": [
|
|
198
|
+
"x64"
|
|
199
|
+
],
|
|
200
|
+
"engines": {
|
|
201
|
+
"node": ">=20.19.0 <21.0.0 || >=22.12.0"
|
|
202
|
+
},
|
|
203
|
+
"integrity": "sha512-1/kBg/OZqVYd3IsBYD5Q89fUFnP4chykfkvOQM6txrozrdNlCjLmeUq2VSxGOkSicHlJDbvd6ghUo/ctd2Je3g==",
|
|
204
|
+
"license": "MIT",
|
|
205
|
+
"optional": true,
|
|
206
|
+
"os": [
|
|
207
|
+
"win32"
|
|
208
|
+
],
|
|
209
|
+
"resolved": "https://registry.npmjs.org/@abdoknbgit/tau-voice-win32-x64/-/tau-voice-win32-x64-1.0.0.tgz",
|
|
210
|
+
"version": "1.0.0"
|
|
109
211
|
},
|
|
110
212
|
"node_modules/@agentclientprotocol/sdk": {
|
|
111
213
|
"integrity": "sha512-ialrcI+RzKOYe+fw+TfpyTdRmEoqIkXLlwbTi6XgaXXfdhNcdod7TmE1VsTnG3yTlox8TMTSMQgWbLLbz3r86Q==",
|
|
@@ -6708,5 +6810,5 @@
|
|
|
6708
6810
|
}
|
|
6709
6811
|
},
|
|
6710
6812
|
"requires": true,
|
|
6711
|
-
"version": "0.92.
|
|
6813
|
+
"version": "0.92.31"
|
|
6712
6814
|
}
|
package/package.json
CHANGED
|
@@ -1,193 +1,199 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@abdoknbgit/tau",
|
|
3
|
-
"version": "0.92.
|
|
4
|
-
"workspaces": [
|
|
5
|
-
"packages/*"
|
|
6
|
-
],
|
|
7
|
-
"description": "Tau - multi-provider AI coding CLI with Firecrawl-hosted WebSearch. Firecrawl offers 1k searches/month on free trials; just enter your API key.",
|
|
8
|
-
"author": "AbdoKnbGit",
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/AbdoKnbGit/tau.git"
|
|
12
|
-
},
|
|
13
|
-
"homepage": "https://github.com/AbdoKnbGit/tau#readme",
|
|
14
|
-
"bugs": {
|
|
15
|
-
"url": "https://github.com/AbdoKnbGit/tau/issues"
|
|
16
|
-
},
|
|
17
|
-
"type": "module",
|
|
18
|
-
"bin": {
|
|
19
|
-
"tau": "dist/cli.mjs",
|
|
20
|
-
"claudex": "dist/cli.mjs"
|
|
21
|
-
},
|
|
22
|
-
"files": [
|
|
23
|
-
"dist/cli.mjs",
|
|
24
|
-
"dist/shim.js",
|
|
25
|
-
"dist/tau.mjs",
|
|
26
|
-
"dist/tau-office.mjs",
|
|
27
|
-
"docs",
|
|
28
|
-
"native",
|
|
29
|
-
"npm-shrinkwrap.json",
|
|
30
|
-
"scripts",
|
|
31
|
-
"README.md"
|
|
32
|
-
],
|
|
33
|
-
"publishConfig": {
|
|
34
|
-
"access": "public"
|
|
35
|
-
},
|
|
36
|
-
"scripts": {
|
|
37
|
-
"graphics-doctor": "node scripts/graphics-doctor.mjs",
|
|
38
|
-
"build": "node build.mjs",
|
|
39
|
-
"build:bun": "bun run build.ts",
|
|
40
|
-
"build:native-shell": "node scripts/build-native-shell-parser.mjs",
|
|
41
|
-
"build:native-tools": "node scripts/build-native-tools.mjs",
|
|
42
|
-
"build:native-voice": "node scripts/build-native-voice.mjs",
|
|
43
|
-
"test:voice": "node scripts/test-voice.mjs",
|
|
44
|
-
"test:auth": "node --test test/auth-port-owners.test.mjs",
|
|
45
|
-
"voice:sync-packages": "node release/sync-voice-packages.mjs",
|
|
46
|
-
"test:voice-packages": "node --test test/voice-platform-packages.test.mjs",
|
|
47
|
-
"voice:release-check": "node release/verify-native-voice.mjs",
|
|
48
|
-
"release:voice": "node release/publish-voice-release.mjs",
|
|
49
|
-
"shrinkwrap:generate": "node release/production-shrinkwrap.mjs --write",
|
|
50
|
-
"shrinkwrap:check": "node release/production-shrinkwrap.mjs --check",
|
|
51
|
-
"preinstall": "node scripts/preinstall.mjs",
|
|
52
|
-
"postinstall": "node scripts/postinstall.mjs",
|
|
53
|
-
"prepublishOnly": "node release/production-shrinkwrap.mjs --check && node release/verify-installer-published.mjs && node release/verify-native-voice.mjs && node build.mjs",
|
|
54
|
-
"prepack": "node release/production-shrinkwrap.mjs --stage",
|
|
55
|
-
"postpack": "node release/production-shrinkwrap.mjs --clean"
|
|
56
|
-
},
|
|
57
|
-
"keywords": [
|
|
58
|
-
"tau",
|
|
59
|
-
"ai",
|
|
60
|
-
"cli",
|
|
61
|
-
"multi-provider",
|
|
62
|
-
"openai",
|
|
63
|
-
"gemini",
|
|
64
|
-
"ollama",
|
|
65
|
-
"groq",
|
|
66
|
-
"deepseek",
|
|
67
|
-
"glm",
|
|
68
|
-
"bigmodel",
|
|
69
|
-
"coding-assistant"
|
|
70
|
-
],
|
|
71
|
-
"license": "MIT",
|
|
72
|
-
"engines": {
|
|
73
|
-
"node": ">=20.19.0 <21.0.0 || >=22.12.0"
|
|
74
|
-
},
|
|
75
|
-
"dependencies": {
|
|
76
|
-
"@agentclientprotocol/sdk": "^0.26.0",
|
|
77
|
-
"@alcalzone/ansi-tokenize": "^0.1.3",
|
|
78
|
-
"@anthropic-ai/sdk": "^0.50.1",
|
|
79
|
-
"@aws-sdk/client-bedrock-runtime": "^3.700.0",
|
|
80
|
-
"@commander-js/extra-typings": "^12.1.0",
|
|
81
|
-
"@growthbook/growthbook": "^1.4.3",
|
|
82
|
-
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
83
|
-
"@opentelemetry/api": "^1.9.0",
|
|
84
|
-
"@opentelemetry/api-logs": "^0.200.0",
|
|
85
|
-
"@opentelemetry/core": "^2.0.0",
|
|
86
|
-
"@opentelemetry/resources": "^2.0.0",
|
|
87
|
-
"@opentelemetry/sdk-logs": "^0.200.0",
|
|
88
|
-
"@opentelemetry/sdk-metrics": "^2.0.0",
|
|
89
|
-
"@opentelemetry/sdk-trace-base": "^2.0.0",
|
|
90
|
-
"@opentelemetry/semantic-conventions": "^1.30.0",
|
|
91
|
-
"@vscode/tree-sitter-wasm": "^0.3.1",
|
|
92
|
-
"@vtsls/language-server": "^0.3.0",
|
|
93
|
-
"@whiskeysockets/baileys": "7.0.0-rc12",
|
|
94
|
-
"ajv": "^8.17.1",
|
|
95
|
-
"asciichart": "^1.5.25",
|
|
96
|
-
"auto-bind": "^5.0.1",
|
|
97
|
-
"axios": "^1.7.9",
|
|
98
|
-
"bash-language-server": "^5.6.0",
|
|
99
|
-
"bidi-js": "^1.0.3",
|
|
100
|
-
"chalk": "^5.4.1",
|
|
101
|
-
"chokidar": "^4.0.3",
|
|
102
|
-
"cli-boxes": "^3.0.0",
|
|
103
|
-
"code-excerpt": "^4.0.0",
|
|
104
|
-
"commander": "~12.1.0",
|
|
105
|
-
"diff": "^8.0.4",
|
|
106
|
-
"dotenv": "^17.4.2",
|
|
107
|
-
"emoji-regex": "^10.4.0",
|
|
108
|
-
"env-paths": "^3.0.0",
|
|
109
|
-
"execa": "^9.5.2",
|
|
110
|
-
"fflate": "^0.8.2",
|
|
111
|
-
"figures": "^6.1.0",
|
|
112
|
-
"fuse.js": "^7.0.0",
|
|
113
|
-
"get-east-asian-width": "^1.3.0",
|
|
114
|
-
"highlight.js": "^11.11.1",
|
|
115
|
-
"https-proxy-agent": "^7.0.6",
|
|
116
|
-
"ignore": "^7.0.3",
|
|
117
|
-
"indent-string": "^5.0.0",
|
|
118
|
-
"jsonc-parser": "^3.3.1",
|
|
119
|
-
"lodash-es": "^4.17.21",
|
|
120
|
-
"lru-cache": "^11.0.2",
|
|
121
|
-
"marked": "^15.0.7",
|
|
122
|
-
"p-map": "^7.0.3",
|
|
123
|
-
"pdfkit": "^0.18.0",
|
|
124
|
-
"picomatch": "^4.0.2",
|
|
125
|
-
"pino": "^9.0.0",
|
|
126
|
-
"proper-lockfile": "^4.1.2",
|
|
127
|
-
"pyright": "^1.1.410",
|
|
128
|
-
"qrcode": "^1.5.4",
|
|
129
|
-
"qrcode-terminal": "^0.12.0",
|
|
130
|
-
"react": "~19.1.0",
|
|
131
|
-
"react-reconciler": "~0.32.0",
|
|
132
|
-
"semver": "^7.6.3",
|
|
133
|
-
"shell-quote": "^1.8.2",
|
|
134
|
-
"signal-exit": "^4.1.0",
|
|
135
|
-
"sharp": "^0.34.5",
|
|
136
|
-
"sixel": "^0.16.0",
|
|
137
|
-
"stack-utils": "^2.0.6",
|
|
138
|
-
"strip-ansi": "^7.1.0",
|
|
139
|
-
"supports-hyperlinks": "^3.1.0",
|
|
140
|
-
"tree-kill": "^1.2.2",
|
|
141
|
-
"turndown": "^7.2.4",
|
|
142
|
-
"type-fest": "^4.32.0",
|
|
143
|
-
"undici": "^7.3.0",
|
|
144
|
-
"usehooks-ts": "^3.1.1",
|
|
145
|
-
"vscode-jsonrpc": "^8.2.1",
|
|
146
|
-
"vscode-langservers-extracted": "^4.10.0",
|
|
147
|
-
"vscode-languageserver-protocol": "^3.17.5",
|
|
148
|
-
"vscode-languageserver-types": "^3.17.5",
|
|
149
|
-
"web-tree-sitter": "^0.26.9",
|
|
150
|
-
"wrap-ansi": "^9.0.0",
|
|
151
|
-
"ws": "^8.18.0",
|
|
152
|
-
"xss": "^1.0.15",
|
|
153
|
-
"yaml-language-server": "^1.23.0",
|
|
154
|
-
"zod": "^3.25.0"
|
|
155
|
-
},
|
|
156
|
-
"overrides": {
|
|
157
|
-
"glob": "^13.0.6",
|
|
158
|
-
"phin": "npm:phn@^0.2.8",
|
|
159
|
-
"uuid": "^11.1.1"
|
|
160
|
-
},
|
|
161
|
-
"peerDependencies": {
|
|
162
|
-
"@computer-use/nut-js": "^4.2.0"
|
|
163
|
-
},
|
|
164
|
-
"optionalDependencies": {
|
|
165
|
-
"
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
"@
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
"@
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
"
|
|
191
|
-
"
|
|
192
|
-
|
|
193
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@abdoknbgit/tau",
|
|
3
|
+
"version": "0.92.31",
|
|
4
|
+
"workspaces": [
|
|
5
|
+
"packages/*"
|
|
6
|
+
],
|
|
7
|
+
"description": "Tau - multi-provider AI coding CLI with Firecrawl-hosted WebSearch. Firecrawl offers 1k searches/month on free trials; just enter your API key.",
|
|
8
|
+
"author": "AbdoKnbGit",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/AbdoKnbGit/tau.git"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://github.com/AbdoKnbGit/tau#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/AbdoKnbGit/tau/issues"
|
|
16
|
+
},
|
|
17
|
+
"type": "module",
|
|
18
|
+
"bin": {
|
|
19
|
+
"tau": "dist/cli.mjs",
|
|
20
|
+
"claudex": "dist/cli.mjs"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist/cli.mjs",
|
|
24
|
+
"dist/shim.js",
|
|
25
|
+
"dist/tau.mjs",
|
|
26
|
+
"dist/tau-office.mjs",
|
|
27
|
+
"docs",
|
|
28
|
+
"native",
|
|
29
|
+
"npm-shrinkwrap.json",
|
|
30
|
+
"scripts",
|
|
31
|
+
"README.md"
|
|
32
|
+
],
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"graphics-doctor": "node scripts/graphics-doctor.mjs",
|
|
38
|
+
"build": "node build.mjs",
|
|
39
|
+
"build:bun": "bun run build.ts",
|
|
40
|
+
"build:native-shell": "node scripts/build-native-shell-parser.mjs",
|
|
41
|
+
"build:native-tools": "node scripts/build-native-tools.mjs",
|
|
42
|
+
"build:native-voice": "node scripts/build-native-voice.mjs",
|
|
43
|
+
"test:voice": "node scripts/test-voice.mjs",
|
|
44
|
+
"test:auth": "node --test test/auth-port-owners.test.mjs",
|
|
45
|
+
"voice:sync-packages": "node release/sync-voice-packages.mjs",
|
|
46
|
+
"test:voice-packages": "node --test test/voice-platform-packages.test.mjs",
|
|
47
|
+
"voice:release-check": "node release/verify-native-voice.mjs",
|
|
48
|
+
"release:voice": "node release/publish-voice-release.mjs",
|
|
49
|
+
"shrinkwrap:generate": "node release/production-shrinkwrap.mjs --write",
|
|
50
|
+
"shrinkwrap:check": "node release/production-shrinkwrap.mjs --check",
|
|
51
|
+
"preinstall": "node scripts/preinstall.mjs",
|
|
52
|
+
"postinstall": "node scripts/postinstall.mjs",
|
|
53
|
+
"prepublishOnly": "node release/production-shrinkwrap.mjs --check && node release/verify-installer-published.mjs && node release/verify-native-voice.mjs && node build.mjs",
|
|
54
|
+
"prepack": "node release/production-shrinkwrap.mjs --stage",
|
|
55
|
+
"postpack": "node release/production-shrinkwrap.mjs --clean"
|
|
56
|
+
},
|
|
57
|
+
"keywords": [
|
|
58
|
+
"tau",
|
|
59
|
+
"ai",
|
|
60
|
+
"cli",
|
|
61
|
+
"multi-provider",
|
|
62
|
+
"openai",
|
|
63
|
+
"gemini",
|
|
64
|
+
"ollama",
|
|
65
|
+
"groq",
|
|
66
|
+
"deepseek",
|
|
67
|
+
"glm",
|
|
68
|
+
"bigmodel",
|
|
69
|
+
"coding-assistant"
|
|
70
|
+
],
|
|
71
|
+
"license": "MIT",
|
|
72
|
+
"engines": {
|
|
73
|
+
"node": ">=20.19.0 <21.0.0 || >=22.12.0"
|
|
74
|
+
},
|
|
75
|
+
"dependencies": {
|
|
76
|
+
"@agentclientprotocol/sdk": "^0.26.0",
|
|
77
|
+
"@alcalzone/ansi-tokenize": "^0.1.3",
|
|
78
|
+
"@anthropic-ai/sdk": "^0.50.1",
|
|
79
|
+
"@aws-sdk/client-bedrock-runtime": "^3.700.0",
|
|
80
|
+
"@commander-js/extra-typings": "^12.1.0",
|
|
81
|
+
"@growthbook/growthbook": "^1.4.3",
|
|
82
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
83
|
+
"@opentelemetry/api": "^1.9.0",
|
|
84
|
+
"@opentelemetry/api-logs": "^0.200.0",
|
|
85
|
+
"@opentelemetry/core": "^2.0.0",
|
|
86
|
+
"@opentelemetry/resources": "^2.0.0",
|
|
87
|
+
"@opentelemetry/sdk-logs": "^0.200.0",
|
|
88
|
+
"@opentelemetry/sdk-metrics": "^2.0.0",
|
|
89
|
+
"@opentelemetry/sdk-trace-base": "^2.0.0",
|
|
90
|
+
"@opentelemetry/semantic-conventions": "^1.30.0",
|
|
91
|
+
"@vscode/tree-sitter-wasm": "^0.3.1",
|
|
92
|
+
"@vtsls/language-server": "^0.3.0",
|
|
93
|
+
"@whiskeysockets/baileys": "7.0.0-rc12",
|
|
94
|
+
"ajv": "^8.17.1",
|
|
95
|
+
"asciichart": "^1.5.25",
|
|
96
|
+
"auto-bind": "^5.0.1",
|
|
97
|
+
"axios": "^1.7.9",
|
|
98
|
+
"bash-language-server": "^5.6.0",
|
|
99
|
+
"bidi-js": "^1.0.3",
|
|
100
|
+
"chalk": "^5.4.1",
|
|
101
|
+
"chokidar": "^4.0.3",
|
|
102
|
+
"cli-boxes": "^3.0.0",
|
|
103
|
+
"code-excerpt": "^4.0.0",
|
|
104
|
+
"commander": "~12.1.0",
|
|
105
|
+
"diff": "^8.0.4",
|
|
106
|
+
"dotenv": "^17.4.2",
|
|
107
|
+
"emoji-regex": "^10.4.0",
|
|
108
|
+
"env-paths": "^3.0.0",
|
|
109
|
+
"execa": "^9.5.2",
|
|
110
|
+
"fflate": "^0.8.2",
|
|
111
|
+
"figures": "^6.1.0",
|
|
112
|
+
"fuse.js": "^7.0.0",
|
|
113
|
+
"get-east-asian-width": "^1.3.0",
|
|
114
|
+
"highlight.js": "^11.11.1",
|
|
115
|
+
"https-proxy-agent": "^7.0.6",
|
|
116
|
+
"ignore": "^7.0.3",
|
|
117
|
+
"indent-string": "^5.0.0",
|
|
118
|
+
"jsonc-parser": "^3.3.1",
|
|
119
|
+
"lodash-es": "^4.17.21",
|
|
120
|
+
"lru-cache": "^11.0.2",
|
|
121
|
+
"marked": "^15.0.7",
|
|
122
|
+
"p-map": "^7.0.3",
|
|
123
|
+
"pdfkit": "^0.18.0",
|
|
124
|
+
"picomatch": "^4.0.2",
|
|
125
|
+
"pino": "^9.0.0",
|
|
126
|
+
"proper-lockfile": "^4.1.2",
|
|
127
|
+
"pyright": "^1.1.410",
|
|
128
|
+
"qrcode": "^1.5.4",
|
|
129
|
+
"qrcode-terminal": "^0.12.0",
|
|
130
|
+
"react": "~19.1.0",
|
|
131
|
+
"react-reconciler": "~0.32.0",
|
|
132
|
+
"semver": "^7.6.3",
|
|
133
|
+
"shell-quote": "^1.8.2",
|
|
134
|
+
"signal-exit": "^4.1.0",
|
|
135
|
+
"sharp": "^0.34.5",
|
|
136
|
+
"sixel": "^0.16.0",
|
|
137
|
+
"stack-utils": "^2.0.6",
|
|
138
|
+
"strip-ansi": "^7.1.0",
|
|
139
|
+
"supports-hyperlinks": "^3.1.0",
|
|
140
|
+
"tree-kill": "^1.2.2",
|
|
141
|
+
"turndown": "^7.2.4",
|
|
142
|
+
"type-fest": "^4.32.0",
|
|
143
|
+
"undici": "^7.3.0",
|
|
144
|
+
"usehooks-ts": "^3.1.1",
|
|
145
|
+
"vscode-jsonrpc": "^8.2.1",
|
|
146
|
+
"vscode-langservers-extracted": "^4.10.0",
|
|
147
|
+
"vscode-languageserver-protocol": "^3.17.5",
|
|
148
|
+
"vscode-languageserver-types": "^3.17.5",
|
|
149
|
+
"web-tree-sitter": "^0.26.9",
|
|
150
|
+
"wrap-ansi": "^9.0.0",
|
|
151
|
+
"ws": "^8.18.0",
|
|
152
|
+
"xss": "^1.0.15",
|
|
153
|
+
"yaml-language-server": "^1.23.0",
|
|
154
|
+
"zod": "^3.25.0"
|
|
155
|
+
},
|
|
156
|
+
"overrides": {
|
|
157
|
+
"glob": "^13.0.6",
|
|
158
|
+
"phin": "npm:phn@^0.2.8",
|
|
159
|
+
"uuid": "^11.1.1"
|
|
160
|
+
},
|
|
161
|
+
"peerDependencies": {
|
|
162
|
+
"@computer-use/nut-js": "^4.2.0"
|
|
163
|
+
},
|
|
164
|
+
"optionalDependencies": {
|
|
165
|
+
"@abdoknbgit/tau-voice-win32-x64": "1.0.0",
|
|
166
|
+
"@abdoknbgit/tau-voice-win32-arm64": "1.0.0",
|
|
167
|
+
"@abdoknbgit/tau-voice-darwin-x64": "1.0.0",
|
|
168
|
+
"@abdoknbgit/tau-voice-darwin-arm64": "1.0.0",
|
|
169
|
+
"@abdoknbgit/tau-voice-linux-x64": "1.0.0",
|
|
170
|
+
"@abdoknbgit/tau-voice-linux-arm64": "1.0.0",
|
|
171
|
+
"node-pty": "^1.1.0"
|
|
172
|
+
},
|
|
173
|
+
"peerDependenciesMeta": {
|
|
174
|
+
"@computer-use/nut-js": {
|
|
175
|
+
"optional": true
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
"devDependencies": {
|
|
179
|
+
"@computer-use/nut-js": "^4.2.0",
|
|
180
|
+
"@types/bun": "^1.2.10",
|
|
181
|
+
"@types/node": "^22.14.0",
|
|
182
|
+
"@types/pdfkit": "^0.17.6",
|
|
183
|
+
"@types/react": "^19.1.0",
|
|
184
|
+
"e2b": "^2.10.0",
|
|
185
|
+
"esbuild": "^0.28.0",
|
|
186
|
+
"google-auth-library": "^9.15.1",
|
|
187
|
+
"typescript": "^5.7.3"
|
|
188
|
+
},
|
|
189
|
+
"allowScripts": {
|
|
190
|
+
"@abdoknbgit/tau": true,
|
|
191
|
+
"@whiskeysockets/baileys": true,
|
|
192
|
+
"core-js": true,
|
|
193
|
+
"esbuild": true,
|
|
194
|
+
"fsevents": true,
|
|
195
|
+
"node-pty": true,
|
|
196
|
+
"protobufjs": true,
|
|
197
|
+
"sharp": true
|
|
198
|
+
}
|
|
199
|
+
}
|