localclawd 1.1.13 → 1.1.14
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 +117 -111
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -89227,7 +89227,7 @@ var init_isEqual = __esm(() => {
|
|
|
89227
89227
|
|
|
89228
89228
|
// src/utils/userAgent.ts
|
|
89229
89229
|
function getClaudeCodeUserAgent() {
|
|
89230
|
-
return `claude-code/${"1.1.
|
|
89230
|
+
return `claude-code/${"1.1.14"}`;
|
|
89231
89231
|
}
|
|
89232
89232
|
|
|
89233
89233
|
// src/utils/workloadContext.ts
|
|
@@ -89249,7 +89249,7 @@ function getUserAgent() {
|
|
|
89249
89249
|
const clientApp = process.env.CLAUDE_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}` : "";
|
|
89250
89250
|
const workload = getWorkload();
|
|
89251
89251
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
89252
|
-
return `claude-cli/${"1.1.
|
|
89252
|
+
return `claude-cli/${"1.1.14"} (${process.env.USER_TYPE}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
89253
89253
|
}
|
|
89254
89254
|
function getMCPUserAgent() {
|
|
89255
89255
|
const parts = [];
|
|
@@ -89263,7 +89263,7 @@ function getMCPUserAgent() {
|
|
|
89263
89263
|
parts.push(`client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}`);
|
|
89264
89264
|
}
|
|
89265
89265
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
89266
|
-
return `claude-code/${"1.1.
|
|
89266
|
+
return `claude-code/${"1.1.14"}${suffix}`;
|
|
89267
89267
|
}
|
|
89268
89268
|
function getWebFetchUserAgent() {
|
|
89269
89269
|
return `Claude-User (${getClaudeCodeUserAgent()}; +https://support.anthropic.com/)`;
|
|
@@ -99172,7 +99172,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
99172
99172
|
if (!isAttributionHeaderEnabled()) {
|
|
99173
99173
|
return "";
|
|
99174
99174
|
}
|
|
99175
|
-
const version = `${"1.1.
|
|
99175
|
+
const version = `${"1.1.14"}.${fingerprint}`;
|
|
99176
99176
|
const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
|
|
99177
99177
|
const cch = "";
|
|
99178
99178
|
const workload = getWorkload();
|
|
@@ -132719,7 +132719,7 @@ var init_metadata = __esm(() => {
|
|
|
132719
132719
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
132720
132720
|
WHITESPACE_REGEX = /\s+/;
|
|
132721
132721
|
getVersionBase = memoize_default(() => {
|
|
132722
|
-
const match = "1.1.
|
|
132722
|
+
const match = "1.1.14".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
132723
132723
|
return match ? match[0] : undefined;
|
|
132724
132724
|
});
|
|
132725
132725
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -132759,9 +132759,9 @@ var init_metadata = __esm(() => {
|
|
|
132759
132759
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
132760
132760
|
isClaudeCodeAction: isEnvTruthy(process.env.CLAUDE_CODE_ACTION),
|
|
132761
132761
|
isClaudeAiAuth: isClaudeAISubscriber(),
|
|
132762
|
-
version: "1.1.
|
|
132762
|
+
version: "1.1.14",
|
|
132763
132763
|
versionBase: getVersionBase(),
|
|
132764
|
-
buildTime: "2026-04-07T18:
|
|
132764
|
+
buildTime: "2026-04-07T18:27:17.273Z",
|
|
132765
132765
|
deploymentEnvironment: env4.detectDeploymentEnvironment(),
|
|
132766
132766
|
...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
|
|
132767
132767
|
githubEventName: process.env.GITHUB_EVENT_NAME,
|
|
@@ -197348,7 +197348,7 @@ function getTelemetryAttributes() {
|
|
|
197348
197348
|
attributes["session.id"] = sessionId;
|
|
197349
197349
|
}
|
|
197350
197350
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
197351
|
-
attributes["app.version"] = "1.1.
|
|
197351
|
+
attributes["app.version"] = "1.1.14";
|
|
197352
197352
|
}
|
|
197353
197353
|
const oauthAccount = getOauthAccountInfo();
|
|
197354
197354
|
if (oauthAccount) {
|
|
@@ -229409,7 +229409,7 @@ function getInstallationEnv() {
|
|
|
229409
229409
|
return;
|
|
229410
229410
|
}
|
|
229411
229411
|
function getClaudeCodeVersion() {
|
|
229412
|
-
return "1.1.
|
|
229412
|
+
return "1.1.14";
|
|
229413
229413
|
}
|
|
229414
229414
|
async function getInstalledVSCodeExtensionVersion(command) {
|
|
229415
229415
|
const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
|
|
@@ -235011,7 +235011,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
235011
235011
|
const client4 = new Client({
|
|
235012
235012
|
name: "claude-code",
|
|
235013
235013
|
title: "Claude Code",
|
|
235014
|
-
version: "1.1.
|
|
235014
|
+
version: "1.1.14",
|
|
235015
235015
|
description: "Anthropic's agentic coding tool",
|
|
235016
235016
|
websiteUrl: PRODUCT_URL
|
|
235017
235017
|
}, {
|
|
@@ -235364,7 +235364,7 @@ var init_client9 = __esm(() => {
|
|
|
235364
235364
|
const client4 = new Client({
|
|
235365
235365
|
name: "claude-code",
|
|
235366
235366
|
title: "Claude Code",
|
|
235367
|
-
version: "1.1.
|
|
235367
|
+
version: "1.1.14",
|
|
235368
235368
|
description: "Anthropic's agentic coding tool",
|
|
235369
235369
|
websiteUrl: PRODUCT_URL
|
|
235370
235370
|
}, {
|
|
@@ -258555,7 +258555,7 @@ var init_user = __esm(() => {
|
|
|
258555
258555
|
deviceId,
|
|
258556
258556
|
sessionId: getSessionId(),
|
|
258557
258557
|
email: getEmail(),
|
|
258558
|
-
appVersion: "1.1.
|
|
258558
|
+
appVersion: "1.1.14",
|
|
258559
258559
|
platform: getHostPlatformForAnalytics(),
|
|
258560
258560
|
organizationUuid,
|
|
258561
258561
|
accountUuid,
|
|
@@ -259879,7 +259879,7 @@ async function initializeBetaTracing(resource) {
|
|
|
259879
259879
|
});
|
|
259880
259880
|
logs.setGlobalLoggerProvider(loggerProvider);
|
|
259881
259881
|
setLoggerProvider(loggerProvider);
|
|
259882
|
-
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.1.
|
|
259882
|
+
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.1.14");
|
|
259883
259883
|
setEventLogger(eventLogger);
|
|
259884
259884
|
process.on("beforeExit", async () => {
|
|
259885
259885
|
await loggerProvider?.forceFlush();
|
|
@@ -259919,7 +259919,7 @@ async function initializeTelemetry() {
|
|
|
259919
259919
|
const platform3 = getPlatform();
|
|
259920
259920
|
const baseAttributes = {
|
|
259921
259921
|
[ATTR_SERVICE_NAME5]: "claude-code",
|
|
259922
|
-
[ATTR_SERVICE_VERSION5]: "1.1.
|
|
259922
|
+
[ATTR_SERVICE_VERSION5]: "1.1.14"
|
|
259923
259923
|
};
|
|
259924
259924
|
if (platform3 === "wsl") {
|
|
259925
259925
|
const wslVersion = getWslVersion();
|
|
@@ -259964,7 +259964,7 @@ async function initializeTelemetry() {
|
|
|
259964
259964
|
} catch {}
|
|
259965
259965
|
};
|
|
259966
259966
|
registerCleanup(shutdownTelemetry2);
|
|
259967
|
-
return meterProvider2.getMeter("com.anthropic.claude_code", "1.1.
|
|
259967
|
+
return meterProvider2.getMeter("com.anthropic.claude_code", "1.1.14");
|
|
259968
259968
|
}
|
|
259969
259969
|
const meterProvider = new MeterProvider5({
|
|
259970
259970
|
resource,
|
|
@@ -259984,7 +259984,7 @@ async function initializeTelemetry() {
|
|
|
259984
259984
|
});
|
|
259985
259985
|
logs.setGlobalLoggerProvider(loggerProvider);
|
|
259986
259986
|
setLoggerProvider(loggerProvider);
|
|
259987
|
-
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.1.
|
|
259987
|
+
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.1.14");
|
|
259988
259988
|
setEventLogger(eventLogger);
|
|
259989
259989
|
logForDebugging("[3P telemetry] Event logger set successfully");
|
|
259990
259990
|
process.on("beforeExit", async () => {
|
|
@@ -260046,7 +260046,7 @@ Current timeout: ${timeoutMs}ms
|
|
|
260046
260046
|
}
|
|
260047
260047
|
};
|
|
260048
260048
|
registerCleanup(shutdownTelemetry);
|
|
260049
|
-
return meterProvider.getMeter("com.anthropic.claude_code", "1.1.
|
|
260049
|
+
return meterProvider.getMeter("com.anthropic.claude_code", "1.1.14");
|
|
260050
260050
|
}
|
|
260051
260051
|
async function flushTelemetry() {
|
|
260052
260052
|
const meterProvider = getMeterProvider();
|
|
@@ -261269,7 +261269,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
261269
261269
|
}
|
|
261270
261270
|
async function getDoctorDiagnostic() {
|
|
261271
261271
|
const installationType = await getCurrentInstallationType();
|
|
261272
|
-
const version = typeof MACRO !== "undefined" ? "1.1.
|
|
261272
|
+
const version = typeof MACRO !== "undefined" ? "1.1.14" : "unknown";
|
|
261273
261273
|
const installationPath = await getInstallationPath();
|
|
261274
261274
|
const invokedBinary = getInvokedBinary();
|
|
261275
261275
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -262210,8 +262210,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
262210
262210
|
const maxVersion = await getMaxVersion();
|
|
262211
262211
|
if (maxVersion && gt(version, maxVersion)) {
|
|
262212
262212
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version} to ${maxVersion}`);
|
|
262213
|
-
if (gte("1.1.
|
|
262214
|
-
logForDebugging(`Native installer: current version ${"1.1.
|
|
262213
|
+
if (gte("1.1.14", maxVersion)) {
|
|
262214
|
+
logForDebugging(`Native installer: current version ${"1.1.14"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
262215
262215
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
262216
262216
|
latency_ms: Date.now() - startTime,
|
|
262217
262217
|
max_version: maxVersion,
|
|
@@ -262222,7 +262222,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
262222
262222
|
version = maxVersion;
|
|
262223
262223
|
}
|
|
262224
262224
|
}
|
|
262225
|
-
if (!forceReinstall && version === "1.1.
|
|
262225
|
+
if (!forceReinstall && version === "1.1.14" && await versionIsAvailable(version) && await isPossibleLocalClawdBinary(executablePath)) {
|
|
262226
262226
|
logForDebugging(`Found ${version} at ${executablePath}, skipping install`);
|
|
262227
262227
|
logEvent("tengu_native_update_complete", {
|
|
262228
262228
|
latency_ms: Date.now() - startTime,
|
|
@@ -334442,7 +334442,7 @@ function getAnthropicEnvMetadata() {
|
|
|
334442
334442
|
function getBuildAgeMinutes() {
|
|
334443
334443
|
if (false)
|
|
334444
334444
|
;
|
|
334445
|
-
const buildTime = new Date("2026-04-07T18:
|
|
334445
|
+
const buildTime = new Date("2026-04-07T18:27:17.273Z").getTime();
|
|
334446
334446
|
if (isNaN(buildTime))
|
|
334447
334447
|
return;
|
|
334448
334448
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -358508,7 +358508,7 @@ function Feedback({
|
|
|
358508
358508
|
platform: env4.platform,
|
|
358509
358509
|
gitRepo: envInfo.isGit,
|
|
358510
358510
|
terminal: env4.terminal,
|
|
358511
|
-
version: "1.1.
|
|
358511
|
+
version: "1.1.14",
|
|
358512
358512
|
transcript: normalizeMessagesForAPI(messages),
|
|
358513
358513
|
errors: sanitizedErrors,
|
|
358514
358514
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -358700,7 +358700,7 @@ function Feedback({
|
|
|
358700
358700
|
", ",
|
|
358701
358701
|
env4.terminal,
|
|
358702
358702
|
", v",
|
|
358703
|
-
"1.1.
|
|
358703
|
+
"1.1.14"
|
|
358704
358704
|
]
|
|
358705
358705
|
}, undefined, true, undefined, this)
|
|
358706
358706
|
]
|
|
@@ -358806,7 +358806,7 @@ ${sanitizedDescription}
|
|
|
358806
358806
|
` + `**Environment Info**
|
|
358807
358807
|
` + `- Platform: ${env4.platform}
|
|
358808
358808
|
` + `- Terminal: ${env4.terminal}
|
|
358809
|
-
` + `- Version: ${"1.1.
|
|
358809
|
+
` + `- Version: ${"1.1.14"}
|
|
358810
358810
|
` + `- Feedback ID: ${feedbackId}
|
|
358811
358811
|
` + `
|
|
358812
358812
|
**Errors**
|
|
@@ -361919,7 +361919,7 @@ function buildPrimarySection() {
|
|
|
361919
361919
|
}, undefined, false, undefined, this);
|
|
361920
361920
|
return [{
|
|
361921
361921
|
label: "Version",
|
|
361922
|
-
value: "1.1.
|
|
361922
|
+
value: "1.1.14"
|
|
361923
361923
|
}, {
|
|
361924
361924
|
label: "Session name",
|
|
361925
361925
|
value: nameValue
|
|
@@ -366537,7 +366537,7 @@ function Config({
|
|
|
366537
366537
|
}
|
|
366538
366538
|
}, undefined, false, undefined, this)
|
|
366539
366539
|
}, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime179.jsxDEV(ChannelDowngradeDialog, {
|
|
366540
|
-
currentVersion: "1.1.
|
|
366540
|
+
currentVersion: "1.1.14",
|
|
366541
366541
|
onChoice: (choice) => {
|
|
366542
366542
|
setShowSubmenu(null);
|
|
366543
366543
|
setTabsHidden(false);
|
|
@@ -366549,7 +366549,7 @@ function Config({
|
|
|
366549
366549
|
autoUpdatesChannel: "stable"
|
|
366550
366550
|
};
|
|
366551
366551
|
if (choice === "stay") {
|
|
366552
|
-
newSettings.minimumVersion = "1.1.
|
|
366552
|
+
newSettings.minimumVersion = "1.1.14";
|
|
366553
366553
|
}
|
|
366554
366554
|
updateSettingsForSource("userSettings", newSettings);
|
|
366555
366555
|
setSettingsData((prev_27) => ({
|
|
@@ -376282,7 +376282,7 @@ function HelpV2(t0) {
|
|
|
376282
376282
|
let t6;
|
|
376283
376283
|
if ($2[31] !== tabs) {
|
|
376284
376284
|
t6 = /* @__PURE__ */ jsx_dev_runtime214.jsxDEV(Tabs, {
|
|
376285
|
-
title: `localclawd v${"1.1.
|
|
376285
|
+
title: `localclawd v${"1.1.14"}`,
|
|
376286
376286
|
color: "professionalBlue",
|
|
376287
376287
|
defaultTab: "general",
|
|
376288
376288
|
children: tabs
|
|
@@ -400440,7 +400440,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
400440
400440
|
return [];
|
|
400441
400441
|
}
|
|
400442
400442
|
}
|
|
400443
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.
|
|
400443
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.14") {
|
|
400444
400444
|
if (process.env.USER_TYPE === "ant") {
|
|
400445
400445
|
const changelog = MACRO.VERSION_CHANGELOG;
|
|
400446
400446
|
if (changelog) {
|
|
@@ -400467,7 +400467,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.13")
|
|
|
400467
400467
|
releaseNotes
|
|
400468
400468
|
};
|
|
400469
400469
|
}
|
|
400470
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.1.
|
|
400470
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.1.14") {
|
|
400471
400471
|
if (process.env.USER_TYPE === "ant") {
|
|
400472
400472
|
const changelog = MACRO.VERSION_CHANGELOG;
|
|
400473
400473
|
if (changelog) {
|
|
@@ -401634,7 +401634,7 @@ function getRecentActivitySync() {
|
|
|
401634
401634
|
return cachedActivity;
|
|
401635
401635
|
}
|
|
401636
401636
|
function getLogoDisplayData() {
|
|
401637
|
-
const version = process.env.DEMO_VERSION ?? "1.1.
|
|
401637
|
+
const version = process.env.DEMO_VERSION ?? "1.1.14";
|
|
401638
401638
|
const serverUrl = getDirectConnectServerUrl();
|
|
401639
401639
|
const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
|
|
401640
401640
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -402908,7 +402908,7 @@ function LogoV2() {
|
|
|
402908
402908
|
if ($2[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
402909
402909
|
t2 = () => {
|
|
402910
402910
|
const currentConfig = getGlobalConfig();
|
|
402911
|
-
if (currentConfig.lastReleaseNotesSeen === "1.1.
|
|
402911
|
+
if (currentConfig.lastReleaseNotesSeen === "1.1.14") {
|
|
402912
402912
|
return;
|
|
402913
402913
|
}
|
|
402914
402914
|
saveGlobalConfig(_temp327);
|
|
@@ -403584,12 +403584,12 @@ function LogoV2() {
|
|
|
403584
403584
|
return t41;
|
|
403585
403585
|
}
|
|
403586
403586
|
function _temp327(current) {
|
|
403587
|
-
if (current.lastReleaseNotesSeen === "1.1.
|
|
403587
|
+
if (current.lastReleaseNotesSeen === "1.1.14") {
|
|
403588
403588
|
return current;
|
|
403589
403589
|
}
|
|
403590
403590
|
return {
|
|
403591
403591
|
...current,
|
|
403592
|
-
lastReleaseNotesSeen: "1.1.
|
|
403592
|
+
lastReleaseNotesSeen: "1.1.14"
|
|
403593
403593
|
};
|
|
403594
403594
|
}
|
|
403595
403595
|
function _temp245(s_0) {
|
|
@@ -429791,7 +429791,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
|
|
|
429791
429791
|
smapsRollup,
|
|
429792
429792
|
platform: process.platform,
|
|
429793
429793
|
nodeVersion: process.version,
|
|
429794
|
-
ccVersion: "1.1.
|
|
429794
|
+
ccVersion: "1.1.14"
|
|
429795
429795
|
};
|
|
429796
429796
|
}
|
|
429797
429797
|
async function performHeapDump(trigger = "manual", dumpNumber = 0) {
|
|
@@ -430376,7 +430376,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
430376
430376
|
var call64 = async () => {
|
|
430377
430377
|
return {
|
|
430378
430378
|
type: "text",
|
|
430379
|
-
value: `${"1.1.
|
|
430379
|
+
value: `${"1.1.14"} (built ${"2026-04-07T18:27:17.273Z"})`
|
|
430380
430380
|
};
|
|
430381
430381
|
}, version, version_default;
|
|
430382
430382
|
var init_version = __esm(() => {
|
|
@@ -439314,7 +439314,7 @@ function generateHtmlReport(data, insights) {
|
|
|
439314
439314
|
</html>`;
|
|
439315
439315
|
}
|
|
439316
439316
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
439317
|
-
const version2 = typeof MACRO !== "undefined" ? "1.1.
|
|
439317
|
+
const version2 = typeof MACRO !== "undefined" ? "1.1.14" : "unknown";
|
|
439318
439318
|
const remote_hosts_collected = remoteStats?.hosts.filter((h) => h.sessionCount > 0).map((h) => h.name);
|
|
439319
439319
|
const facets_summary = {
|
|
439320
439320
|
total: facets.size,
|
|
@@ -443481,7 +443481,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
443481
443481
|
init_settings2();
|
|
443482
443482
|
init_slowOperations();
|
|
443483
443483
|
init_uuid();
|
|
443484
|
-
VERSION6 = typeof MACRO !== "undefined" ? "1.1.
|
|
443484
|
+
VERSION6 = typeof MACRO !== "undefined" ? "1.1.14" : "unknown";
|
|
443485
443485
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
443486
443486
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
443487
443487
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -444683,7 +444683,7 @@ var init_filesystem = __esm(() => {
|
|
|
444683
444683
|
});
|
|
444684
444684
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
444685
444685
|
const nonce = randomBytes19(16).toString("hex");
|
|
444686
|
-
return join130(getClaudeTempDir(), "bundled-skills", "1.1.
|
|
444686
|
+
return join130(getClaudeTempDir(), "bundled-skills", "1.1.14", nonce);
|
|
444687
444687
|
});
|
|
444688
444688
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
444689
444689
|
});
|
|
@@ -450682,7 +450682,7 @@ function computeFingerprint(messageText, version2) {
|
|
|
450682
450682
|
}
|
|
450683
450683
|
function computeFingerprintFromMessages(messages) {
|
|
450684
450684
|
const firstMessageText = extractFirstMessageText(messages);
|
|
450685
|
-
return computeFingerprint(firstMessageText, "1.1.
|
|
450685
|
+
return computeFingerprint(firstMessageText, "1.1.14");
|
|
450686
450686
|
}
|
|
450687
450687
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
450688
450688
|
var init_fingerprint = () => {};
|
|
@@ -452537,7 +452537,7 @@ async function sideQuery(opts) {
|
|
|
452537
452537
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
452538
452538
|
}
|
|
452539
452539
|
const messageText = extractFirstUserMessageText(messages);
|
|
452540
|
-
const fingerprint = computeFingerprint(messageText, "1.1.
|
|
452540
|
+
const fingerprint = computeFingerprint(messageText, "1.1.14");
|
|
452541
452541
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
452542
452542
|
const systemBlocks = [
|
|
452543
452543
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -457335,7 +457335,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
457335
457335
|
slash_commands: inputs.commands.filter((c5) => c5.userInvocable !== false).map((c5) => c5.name),
|
|
457336
457336
|
apiKeySource: getAnthropicApiKeyWithSource().source,
|
|
457337
457337
|
betas: getSdkBetas(),
|
|
457338
|
-
claude_code_version: "1.1.
|
|
457338
|
+
claude_code_version: "1.1.14",
|
|
457339
457339
|
output_style: outputStyle2,
|
|
457340
457340
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
457341
457341
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
|
|
@@ -471914,7 +471914,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
471914
471914
|
function getSemverPart(version2) {
|
|
471915
471915
|
return `${import_semver12.major(version2, { loose: true })}.${import_semver12.minor(version2, { loose: true })}.${import_semver12.patch(version2, { loose: true })}`;
|
|
471916
471916
|
}
|
|
471917
|
-
function useUpdateNotification(updatedVersion, initialVersion = "1.1.
|
|
471917
|
+
function useUpdateNotification(updatedVersion, initialVersion = "1.1.14") {
|
|
471918
471918
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react228.useState(() => getSemverPart(initialVersion));
|
|
471919
471919
|
if (!updatedVersion) {
|
|
471920
471920
|
return null;
|
|
@@ -471954,7 +471954,7 @@ function AutoUpdater({
|
|
|
471954
471954
|
return;
|
|
471955
471955
|
}
|
|
471956
471956
|
if (false) {}
|
|
471957
|
-
const currentVersion = "1.1.
|
|
471957
|
+
const currentVersion = "1.1.14";
|
|
471958
471958
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
471959
471959
|
let latestVersion = await getLatestVersion(channel);
|
|
471960
471960
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -472165,12 +472165,12 @@ function NativeAutoUpdater({
|
|
|
472165
472165
|
logEvent("tengu_native_auto_updater_start", {});
|
|
472166
472166
|
try {
|
|
472167
472167
|
const maxVersion = await getMaxVersion();
|
|
472168
|
-
if (maxVersion && gt("1.1.
|
|
472168
|
+
if (maxVersion && gt("1.1.14", maxVersion)) {
|
|
472169
472169
|
const msg = await getMaxVersionMessage();
|
|
472170
472170
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
472171
472171
|
}
|
|
472172
472172
|
const result = await installLatest(channel);
|
|
472173
|
-
const currentVersion = "1.1.
|
|
472173
|
+
const currentVersion = "1.1.14";
|
|
472174
472174
|
const latencyMs = Date.now() - startTime;
|
|
472175
472175
|
if (result.lockFailed) {
|
|
472176
472176
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -472305,17 +472305,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
472305
472305
|
const maxVersion = await getMaxVersion();
|
|
472306
472306
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
472307
472307
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
472308
|
-
if (gte("1.1.
|
|
472309
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.1.
|
|
472308
|
+
if (gte("1.1.14", maxVersion)) {
|
|
472309
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.1.14"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
472310
472310
|
setUpdateAvailable(false);
|
|
472311
472311
|
return;
|
|
472312
472312
|
}
|
|
472313
472313
|
latest = maxVersion;
|
|
472314
472314
|
}
|
|
472315
|
-
const hasUpdate = latest && !gte("1.1.
|
|
472315
|
+
const hasUpdate = latest && !gte("1.1.14", latest) && !shouldSkipVersion(latest);
|
|
472316
472316
|
setUpdateAvailable(!!hasUpdate);
|
|
472317
472317
|
if (hasUpdate) {
|
|
472318
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.1.
|
|
472318
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.1.14"} -> ${latest}`);
|
|
472319
472319
|
}
|
|
472320
472320
|
};
|
|
472321
472321
|
$2[0] = t1;
|
|
@@ -472349,7 +472349,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
472349
472349
|
wrap: "truncate",
|
|
472350
472350
|
children: [
|
|
472351
472351
|
"currentVersion: ",
|
|
472352
|
-
"1.1.
|
|
472352
|
+
"1.1.14"
|
|
472353
472353
|
]
|
|
472354
472354
|
}, undefined, true, undefined, this);
|
|
472355
472355
|
$2[3] = verbose;
|
|
@@ -479907,7 +479907,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
479907
479907
|
project_dir: getOriginalCwd(),
|
|
479908
479908
|
added_dirs: addedDirs
|
|
479909
479909
|
},
|
|
479910
|
-
version: "1.1.
|
|
479910
|
+
version: "1.1.14",
|
|
479911
479911
|
output_style: {
|
|
479912
479912
|
name: outputStyleName
|
|
479913
479913
|
},
|
|
@@ -491467,7 +491467,7 @@ async function submitTranscriptShare(messages, trigger, appearanceId) {
|
|
|
491467
491467
|
} catch {}
|
|
491468
491468
|
const data = {
|
|
491469
491469
|
trigger,
|
|
491470
|
-
version: "1.1.
|
|
491470
|
+
version: "1.1.14",
|
|
491471
491471
|
platform: process.platform,
|
|
491472
491472
|
transcript,
|
|
491473
491473
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -503502,46 +503502,52 @@ async function showSetupScreens(root3, permissionMode, allowDangerouslySkipPermi
|
|
|
503502
503502
|
resetGrowthBook();
|
|
503503
503503
|
initializeGrowthBook();
|
|
503504
503504
|
getSystemContext();
|
|
503505
|
-
|
|
503506
|
-
errors: allErrors
|
|
503507
|
-
} = getSettingsWithAllErrors();
|
|
503508
|
-
if (allErrors.length === 0) {
|
|
503509
|
-
await handleMcpjsonServerApprovals(root3);
|
|
503510
|
-
}
|
|
503511
|
-
if (await shouldShowClaudeMdExternalIncludesWarning()) {
|
|
503512
|
-
const externalIncludes = getExternalClaudeMdIncludes(await getMemoryFiles(true));
|
|
503505
|
+
try {
|
|
503513
503506
|
const {
|
|
503514
|
-
|
|
503515
|
-
} =
|
|
503516
|
-
|
|
503517
|
-
|
|
503518
|
-
|
|
503519
|
-
|
|
503520
|
-
|
|
503521
|
-
|
|
503522
|
-
|
|
503523
|
-
|
|
503524
|
-
|
|
503507
|
+
errors: allErrors
|
|
503508
|
+
} = getSettingsWithAllErrors();
|
|
503509
|
+
if (allErrors.length === 0) {
|
|
503510
|
+
await handleMcpjsonServerApprovals(root3);
|
|
503511
|
+
}
|
|
503512
|
+
} catch {}
|
|
503513
|
+
try {
|
|
503514
|
+
if (await shouldShowClaudeMdExternalIncludesWarning()) {
|
|
503515
|
+
const externalIncludes = getExternalClaudeMdIncludes(await getMemoryFiles(true));
|
|
503516
|
+
const {
|
|
503517
|
+
ClaudeMdExternalIncludesDialog: ClaudeMdExternalIncludesDialog2
|
|
503518
|
+
} = await Promise.resolve().then(() => (init_ClaudeMdExternalIncludesDialog(), exports_ClaudeMdExternalIncludesDialog));
|
|
503519
|
+
await showDialog(root3, (done) => /* @__PURE__ */ jsx_dev_runtime485.jsxDEV(AppStateProvider, {
|
|
503520
|
+
onChangeAppState,
|
|
503521
|
+
children: /* @__PURE__ */ jsx_dev_runtime485.jsxDEV(ClaudeMdExternalIncludesDialog2, {
|
|
503522
|
+
onDone: done,
|
|
503523
|
+
isStandaloneDialog: true,
|
|
503524
|
+
externalIncludes
|
|
503525
|
+
}, undefined, false, undefined, this)
|
|
503526
|
+
}, undefined, false, undefined, this));
|
|
503527
|
+
}
|
|
503528
|
+
} catch {}
|
|
503525
503529
|
}
|
|
503526
503530
|
updateGithubRepoPathMapping();
|
|
503527
503531
|
if (false) {}
|
|
503528
503532
|
applyConfigEnvironmentVariables();
|
|
503529
503533
|
setImmediate(() => initializeTelemetryAfterTrust());
|
|
503530
|
-
|
|
503531
|
-
|
|
503532
|
-
|
|
503533
|
-
|
|
503534
|
-
|
|
503535
|
-
|
|
503536
|
-
|
|
503537
|
-
|
|
503538
|
-
|
|
503539
|
-
|
|
503540
|
-
|
|
503541
|
-
|
|
503542
|
-
|
|
503534
|
+
try {
|
|
503535
|
+
if (await isQualifiedForGrove()) {
|
|
503536
|
+
const {
|
|
503537
|
+
GroveDialog: GroveDialog2
|
|
503538
|
+
} = await Promise.resolve().then(() => (init_Grove(), exports_Grove));
|
|
503539
|
+
const decision = await showSetupDialog(root3, (done) => /* @__PURE__ */ jsx_dev_runtime485.jsxDEV(GroveDialog2, {
|
|
503540
|
+
showIfAlreadyViewed: false,
|
|
503541
|
+
location: onboardingShown ? "onboarding" : "policy_update_modal",
|
|
503542
|
+
onDone: done
|
|
503543
|
+
}, undefined, false, undefined, this));
|
|
503544
|
+
if (decision === "escape") {
|
|
503545
|
+
logEvent("tengu_grove_policy_exited", {});
|
|
503546
|
+
gracefulShutdownSync(0);
|
|
503547
|
+
return false;
|
|
503548
|
+
}
|
|
503543
503549
|
}
|
|
503544
|
-
}
|
|
503550
|
+
} catch {}
|
|
503545
503551
|
if ((permissionMode === "bypassPermissions" || allowDangerouslySkipPermissions) && !hasSkipDangerousModePermissionPrompt()) {
|
|
503546
503552
|
const {
|
|
503547
503553
|
BypassPermissionsModeDialog: BypassPermissionsModeDialog2
|
|
@@ -507924,7 +507930,7 @@ function appendToLog(path17, message) {
|
|
|
507924
507930
|
cwd: getFsImplementation().cwd(),
|
|
507925
507931
|
userType: process.env.USER_TYPE,
|
|
507926
507932
|
sessionId: getSessionId(),
|
|
507927
|
-
version: "1.1.
|
|
507933
|
+
version: "1.1.14"
|
|
507928
507934
|
};
|
|
507929
507935
|
getLogWriter(path17).write(messageWithTimestamp);
|
|
507930
507936
|
}
|
|
@@ -511924,8 +511930,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
511924
511930
|
}
|
|
511925
511931
|
async function checkEnvLessBridgeMinVersion() {
|
|
511926
511932
|
const cfg = await getEnvLessBridgeConfig();
|
|
511927
|
-
if (cfg.min_version && lt("1.1.
|
|
511928
|
-
return `Your version of localclawd (${"1.1.
|
|
511933
|
+
if (cfg.min_version && lt("1.1.14", cfg.min_version)) {
|
|
511934
|
+
return `Your version of localclawd (${"1.1.14"}) is too old for Remote Control.
|
|
511929
511935
|
Version ${cfg.min_version} or higher is required. Run \`localclawd update\` to update.`;
|
|
511930
511936
|
}
|
|
511931
511937
|
return null;
|
|
@@ -512397,7 +512403,7 @@ async function initBridgeCore(params) {
|
|
|
512397
512403
|
const rawApi = createBridgeApiClient({
|
|
512398
512404
|
baseUrl,
|
|
512399
512405
|
getAccessToken,
|
|
512400
|
-
runnerVersion: "1.1.
|
|
512406
|
+
runnerVersion: "1.1.14",
|
|
512401
512407
|
onDebug: logForDebugging,
|
|
512402
512408
|
onAuth401,
|
|
512403
512409
|
getTrustedDeviceToken
|
|
@@ -518053,7 +518059,7 @@ async function startMCPServer(cwd3, debug4, verbose) {
|
|
|
518053
518059
|
setCwd(cwd3);
|
|
518054
518060
|
const server = new Server({
|
|
518055
518061
|
name: "claude/tengu",
|
|
518056
|
-
version: "1.1.
|
|
518062
|
+
version: "1.1.14"
|
|
518057
518063
|
}, {
|
|
518058
518064
|
capabilities: {
|
|
518059
518065
|
tools: {}
|
|
@@ -519134,7 +519140,7 @@ function WelcomeV2() {
|
|
|
519134
519140
|
dimColor: true,
|
|
519135
519141
|
children: [
|
|
519136
519142
|
"v",
|
|
519137
|
-
"1.1.
|
|
519143
|
+
"1.1.14"
|
|
519138
519144
|
]
|
|
519139
519145
|
}, undefined, true, undefined, this)
|
|
519140
519146
|
]
|
|
@@ -519703,7 +519709,7 @@ __export(exports_update, {
|
|
|
519703
519709
|
});
|
|
519704
519710
|
async function update() {
|
|
519705
519711
|
logEvent("tengu_update_check", {});
|
|
519706
|
-
writeToStdout(`Current version: ${"1.1.
|
|
519712
|
+
writeToStdout(`Current version: ${"1.1.14"}
|
|
519707
519713
|
`);
|
|
519708
519714
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
519709
519715
|
writeToStdout(`Checking for updates to ${channel} version...
|
|
@@ -519778,8 +519784,8 @@ async function update() {
|
|
|
519778
519784
|
writeToStdout(`localclawd is managed by Homebrew.
|
|
519779
519785
|
`);
|
|
519780
519786
|
const latest = await getLatestVersion(channel);
|
|
519781
|
-
if (latest && !gte("1.1.
|
|
519782
|
-
writeToStdout(`Update available: ${"1.1.
|
|
519787
|
+
if (latest && !gte("1.1.14", latest)) {
|
|
519788
|
+
writeToStdout(`Update available: ${"1.1.14"} → ${latest}
|
|
519783
519789
|
`);
|
|
519784
519790
|
writeToStdout(`
|
|
519785
519791
|
`);
|
|
@@ -519795,8 +519801,8 @@ async function update() {
|
|
|
519795
519801
|
writeToStdout(`localclawd is managed by winget.
|
|
519796
519802
|
`);
|
|
519797
519803
|
const latest = await getLatestVersion(channel);
|
|
519798
|
-
if (latest && !gte("1.1.
|
|
519799
|
-
writeToStdout(`Update available: ${"1.1.
|
|
519804
|
+
if (latest && !gte("1.1.14", latest)) {
|
|
519805
|
+
writeToStdout(`Update available: ${"1.1.14"} → ${latest}
|
|
519800
519806
|
`);
|
|
519801
519807
|
writeToStdout(`
|
|
519802
519808
|
`);
|
|
@@ -519810,8 +519816,8 @@ async function update() {
|
|
|
519810
519816
|
writeToStdout(`localclawd is managed by apk.
|
|
519811
519817
|
`);
|
|
519812
519818
|
const latest = await getLatestVersion(channel);
|
|
519813
|
-
if (latest && !gte("1.1.
|
|
519814
|
-
writeToStdout(`Update available: ${"1.1.
|
|
519819
|
+
if (latest && !gte("1.1.14", latest)) {
|
|
519820
|
+
writeToStdout(`Update available: ${"1.1.14"} → ${latest}
|
|
519815
519821
|
`);
|
|
519816
519822
|
writeToStdout(`
|
|
519817
519823
|
`);
|
|
@@ -519876,11 +519882,11 @@ async function update() {
|
|
|
519876
519882
|
`);
|
|
519877
519883
|
await gracefulShutdown(1);
|
|
519878
519884
|
}
|
|
519879
|
-
if (result.latestVersion === "1.1.
|
|
519880
|
-
writeToStdout(source_default.green(`localclawd is up to date (${"1.1.
|
|
519885
|
+
if (result.latestVersion === "1.1.14") {
|
|
519886
|
+
writeToStdout(source_default.green(`localclawd is up to date (${"1.1.14"})`) + `
|
|
519881
519887
|
`);
|
|
519882
519888
|
} else {
|
|
519883
|
-
writeToStdout(source_default.green(`Successfully updated from ${"1.1.
|
|
519889
|
+
writeToStdout(source_default.green(`Successfully updated from ${"1.1.14"} to version ${result.latestVersion}`) + `
|
|
519884
519890
|
`);
|
|
519885
519891
|
await regenerateCompletionCache();
|
|
519886
519892
|
}
|
|
@@ -519940,12 +519946,12 @@ async function update() {
|
|
|
519940
519946
|
`);
|
|
519941
519947
|
await gracefulShutdown(1);
|
|
519942
519948
|
}
|
|
519943
|
-
if (latestVersion === "1.1.
|
|
519944
|
-
writeToStdout(source_default.green(`localclawd is up to date (${"1.1.
|
|
519949
|
+
if (latestVersion === "1.1.14") {
|
|
519950
|
+
writeToStdout(source_default.green(`localclawd is up to date (${"1.1.14"})`) + `
|
|
519945
519951
|
`);
|
|
519946
519952
|
await gracefulShutdown(0);
|
|
519947
519953
|
}
|
|
519948
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"1.1.
|
|
519954
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"1.1.14"})
|
|
519949
519955
|
`);
|
|
519950
519956
|
writeToStdout(`Installing update...
|
|
519951
519957
|
`);
|
|
@@ -519990,7 +519996,7 @@ async function update() {
|
|
|
519990
519996
|
logForDebugging(`update: Installation status: ${status2}`);
|
|
519991
519997
|
switch (status2) {
|
|
519992
519998
|
case "success":
|
|
519993
|
-
writeToStdout(source_default.green(`Successfully updated from ${"1.1.
|
|
519999
|
+
writeToStdout(source_default.green(`Successfully updated from ${"1.1.14"} to version ${latestVersion}`) + `
|
|
519994
520000
|
`);
|
|
519995
520001
|
await regenerateCompletionCache();
|
|
519996
520002
|
break;
|
|
@@ -521255,7 +521261,7 @@ ${customInstructions}` : customInstructions;
|
|
|
521255
521261
|
}
|
|
521256
521262
|
}
|
|
521257
521263
|
logForDiagnosticsNoPII("info", "started", {
|
|
521258
|
-
version: "1.1.
|
|
521264
|
+
version: "1.1.14",
|
|
521259
521265
|
is_native_binary: isInBundledMode()
|
|
521260
521266
|
});
|
|
521261
521267
|
registerCleanup(async () => {
|
|
@@ -522039,7 +522045,7 @@ Usage: localclawd --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
522039
522045
|
pendingHookMessages
|
|
522040
522046
|
}, renderAndRun);
|
|
522041
522047
|
}
|
|
522042
|
-
}).version("1.1.
|
|
522048
|
+
}).version("1.1.14 (localClawd)", "-v, --version", "Output the version number");
|
|
522043
522049
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
522044
522050
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
522045
522051
|
if (canUserConfigureAdvisor()) {
|
|
@@ -522547,7 +522553,7 @@ if (false) {}
|
|
|
522547
522553
|
async function main2() {
|
|
522548
522554
|
const args = process.argv.slice(2);
|
|
522549
522555
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
522550
|
-
console.log(`${"1.1.
|
|
522556
|
+
console.log(`${"1.1.14"} (localclawd)`);
|
|
522551
522557
|
return;
|
|
522552
522558
|
}
|
|
522553
522559
|
const {
|
|
@@ -522631,4 +522637,4 @@ async function main2() {
|
|
|
522631
522637
|
}
|
|
522632
522638
|
main2();
|
|
522633
522639
|
|
|
522634
|
-
//# debugId=
|
|
522640
|
+
//# debugId=D2EDD6030256A37964756E2164756E21
|