localclawd 1.1.23 → 1.1.24
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 +78 -78
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -89232,7 +89232,7 @@ var init_isEqual = __esm(() => {
|
|
|
89232
89232
|
|
|
89233
89233
|
// src/utils/userAgent.ts
|
|
89234
89234
|
function getClaudeCodeUserAgent() {
|
|
89235
|
-
return `claude-code/${"1.1.
|
|
89235
|
+
return `claude-code/${"1.1.24"}`;
|
|
89236
89236
|
}
|
|
89237
89237
|
|
|
89238
89238
|
// src/utils/workloadContext.ts
|
|
@@ -89254,7 +89254,7 @@ function getUserAgent() {
|
|
|
89254
89254
|
const clientApp = process.env.CLAUDE_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}` : "";
|
|
89255
89255
|
const workload = getWorkload();
|
|
89256
89256
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
89257
|
-
return `claude-cli/${"1.1.
|
|
89257
|
+
return `claude-cli/${"1.1.24"} (${process.env.USER_TYPE}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
89258
89258
|
}
|
|
89259
89259
|
function getMCPUserAgent() {
|
|
89260
89260
|
const parts = [];
|
|
@@ -89268,7 +89268,7 @@ function getMCPUserAgent() {
|
|
|
89268
89268
|
parts.push(`client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}`);
|
|
89269
89269
|
}
|
|
89270
89270
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
89271
|
-
return `claude-code/${"1.1.
|
|
89271
|
+
return `claude-code/${"1.1.24"}${suffix}`;
|
|
89272
89272
|
}
|
|
89273
89273
|
function getWebFetchUserAgent() {
|
|
89274
89274
|
return `Claude-User (${getClaudeCodeUserAgent()}; +https://support.anthropic.com/)`;
|
|
@@ -99177,7 +99177,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
99177
99177
|
if (!isAttributionHeaderEnabled()) {
|
|
99178
99178
|
return "";
|
|
99179
99179
|
}
|
|
99180
|
-
const version = `${"1.1.
|
|
99180
|
+
const version = `${"1.1.24"}.${fingerprint}`;
|
|
99181
99181
|
const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
|
|
99182
99182
|
const cch = "";
|
|
99183
99183
|
const workload = getWorkload();
|
|
@@ -132724,7 +132724,7 @@ var init_metadata = __esm(() => {
|
|
|
132724
132724
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
132725
132725
|
WHITESPACE_REGEX = /\s+/;
|
|
132726
132726
|
getVersionBase = memoize_default(() => {
|
|
132727
|
-
const match = "1.1.
|
|
132727
|
+
const match = "1.1.24".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
132728
132728
|
return match ? match[0] : undefined;
|
|
132729
132729
|
});
|
|
132730
132730
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -132764,9 +132764,9 @@ var init_metadata = __esm(() => {
|
|
|
132764
132764
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
132765
132765
|
isClaudeCodeAction: isEnvTruthy(process.env.CLAUDE_CODE_ACTION),
|
|
132766
132766
|
isClaudeAiAuth: isClaudeAISubscriber(),
|
|
132767
|
-
version: "1.1.
|
|
132767
|
+
version: "1.1.24",
|
|
132768
132768
|
versionBase: getVersionBase(),
|
|
132769
|
-
buildTime: "2026-04-
|
|
132769
|
+
buildTime: "2026-04-10T00:52:04.858Z",
|
|
132770
132770
|
deploymentEnvironment: env4.detectDeploymentEnvironment(),
|
|
132771
132771
|
...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
|
|
132772
132772
|
githubEventName: process.env.GITHUB_EVENT_NAME,
|
|
@@ -197386,7 +197386,7 @@ function getTelemetryAttributes() {
|
|
|
197386
197386
|
attributes["session.id"] = sessionId;
|
|
197387
197387
|
}
|
|
197388
197388
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
197389
|
-
attributes["app.version"] = "1.1.
|
|
197389
|
+
attributes["app.version"] = "1.1.24";
|
|
197390
197390
|
}
|
|
197391
197391
|
const oauthAccount = getOauthAccountInfo();
|
|
197392
197392
|
if (oauthAccount) {
|
|
@@ -229454,7 +229454,7 @@ function getInstallationEnv() {
|
|
|
229454
229454
|
return;
|
|
229455
229455
|
}
|
|
229456
229456
|
function getClaudeCodeVersion() {
|
|
229457
|
-
return "1.1.
|
|
229457
|
+
return "1.1.24";
|
|
229458
229458
|
}
|
|
229459
229459
|
async function getInstalledVSCodeExtensionVersion(command) {
|
|
229460
229460
|
const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
|
|
@@ -235056,7 +235056,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
235056
235056
|
const client4 = new Client({
|
|
235057
235057
|
name: "localclawd",
|
|
235058
235058
|
title: "localclawd",
|
|
235059
|
-
version: "1.1.
|
|
235059
|
+
version: "1.1.24",
|
|
235060
235060
|
description: "local-first AI coding tool",
|
|
235061
235061
|
websiteUrl: PRODUCT_URL
|
|
235062
235062
|
}, {
|
|
@@ -235409,7 +235409,7 @@ var init_client9 = __esm(() => {
|
|
|
235409
235409
|
const client4 = new Client({
|
|
235410
235410
|
name: "localclawd",
|
|
235411
235411
|
title: "localclawd",
|
|
235412
|
-
version: "1.1.
|
|
235412
|
+
version: "1.1.24",
|
|
235413
235413
|
description: "local-first AI coding tool",
|
|
235414
235414
|
websiteUrl: PRODUCT_URL
|
|
235415
235415
|
}, {
|
|
@@ -258464,7 +258464,7 @@ var init_user = __esm(() => {
|
|
|
258464
258464
|
deviceId,
|
|
258465
258465
|
sessionId: getSessionId(),
|
|
258466
258466
|
email: getEmail(),
|
|
258467
|
-
appVersion: "1.1.
|
|
258467
|
+
appVersion: "1.1.24",
|
|
258468
258468
|
platform: getHostPlatformForAnalytics(),
|
|
258469
258469
|
organizationUuid,
|
|
258470
258470
|
accountUuid,
|
|
@@ -259788,7 +259788,7 @@ async function initializeBetaTracing(resource) {
|
|
|
259788
259788
|
});
|
|
259789
259789
|
logs.setGlobalLoggerProvider(loggerProvider);
|
|
259790
259790
|
setLoggerProvider(loggerProvider);
|
|
259791
|
-
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.1.
|
|
259791
|
+
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.1.24");
|
|
259792
259792
|
setEventLogger(eventLogger);
|
|
259793
259793
|
process.on("beforeExit", async () => {
|
|
259794
259794
|
await loggerProvider?.forceFlush();
|
|
@@ -259828,7 +259828,7 @@ async function initializeTelemetry() {
|
|
|
259828
259828
|
const platform3 = getPlatform();
|
|
259829
259829
|
const baseAttributes = {
|
|
259830
259830
|
[ATTR_SERVICE_NAME5]: "claude-code",
|
|
259831
|
-
[ATTR_SERVICE_VERSION5]: "1.1.
|
|
259831
|
+
[ATTR_SERVICE_VERSION5]: "1.1.24"
|
|
259832
259832
|
};
|
|
259833
259833
|
if (platform3 === "wsl") {
|
|
259834
259834
|
const wslVersion = getWslVersion();
|
|
@@ -259873,7 +259873,7 @@ async function initializeTelemetry() {
|
|
|
259873
259873
|
} catch {}
|
|
259874
259874
|
};
|
|
259875
259875
|
registerCleanup(shutdownTelemetry2);
|
|
259876
|
-
return meterProvider2.getMeter("com.anthropic.claude_code", "1.1.
|
|
259876
|
+
return meterProvider2.getMeter("com.anthropic.claude_code", "1.1.24");
|
|
259877
259877
|
}
|
|
259878
259878
|
const meterProvider = new MeterProvider5({
|
|
259879
259879
|
resource,
|
|
@@ -259893,7 +259893,7 @@ async function initializeTelemetry() {
|
|
|
259893
259893
|
});
|
|
259894
259894
|
logs.setGlobalLoggerProvider(loggerProvider);
|
|
259895
259895
|
setLoggerProvider(loggerProvider);
|
|
259896
|
-
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.1.
|
|
259896
|
+
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.1.24");
|
|
259897
259897
|
setEventLogger(eventLogger);
|
|
259898
259898
|
logForDebugging("[3P telemetry] Event logger set successfully");
|
|
259899
259899
|
process.on("beforeExit", async () => {
|
|
@@ -259955,7 +259955,7 @@ Current timeout: ${timeoutMs}ms
|
|
|
259955
259955
|
}
|
|
259956
259956
|
};
|
|
259957
259957
|
registerCleanup(shutdownTelemetry);
|
|
259958
|
-
return meterProvider.getMeter("com.anthropic.claude_code", "1.1.
|
|
259958
|
+
return meterProvider.getMeter("com.anthropic.claude_code", "1.1.24");
|
|
259959
259959
|
}
|
|
259960
259960
|
async function flushTelemetry() {
|
|
259961
259961
|
const meterProvider = getMeterProvider();
|
|
@@ -261178,7 +261178,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
261178
261178
|
}
|
|
261179
261179
|
async function getDoctorDiagnostic() {
|
|
261180
261180
|
const installationType = await getCurrentInstallationType();
|
|
261181
|
-
const version = typeof MACRO !== "undefined" ? "1.1.
|
|
261181
|
+
const version = typeof MACRO !== "undefined" ? "1.1.24" : "unknown";
|
|
261182
261182
|
const installationPath = await getInstallationPath();
|
|
261183
261183
|
const invokedBinary = getInvokedBinary();
|
|
261184
261184
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -262119,8 +262119,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
262119
262119
|
const maxVersion = await getMaxVersion();
|
|
262120
262120
|
if (maxVersion && gt(version, maxVersion)) {
|
|
262121
262121
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version} to ${maxVersion}`);
|
|
262122
|
-
if (gte("1.1.
|
|
262123
|
-
logForDebugging(`Native installer: current version ${"1.1.
|
|
262122
|
+
if (gte("1.1.24", maxVersion)) {
|
|
262123
|
+
logForDebugging(`Native installer: current version ${"1.1.24"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
262124
262124
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
262125
262125
|
latency_ms: Date.now() - startTime,
|
|
262126
262126
|
max_version: maxVersion,
|
|
@@ -262131,7 +262131,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
262131
262131
|
version = maxVersion;
|
|
262132
262132
|
}
|
|
262133
262133
|
}
|
|
262134
|
-
if (!forceReinstall && version === "1.1.
|
|
262134
|
+
if (!forceReinstall && version === "1.1.24" && await versionIsAvailable(version) && await isPossibleLocalClawdBinary(executablePath)) {
|
|
262135
262135
|
logForDebugging(`Found ${version} at ${executablePath}, skipping install`);
|
|
262136
262136
|
logEvent("tengu_native_update_complete", {
|
|
262137
262137
|
latency_ms: Date.now() - startTime,
|
|
@@ -333549,7 +333549,7 @@ function getAnthropicEnvMetadata() {
|
|
|
333549
333549
|
function getBuildAgeMinutes() {
|
|
333550
333550
|
if (false)
|
|
333551
333551
|
;
|
|
333552
|
-
const buildTime = new Date("2026-04-
|
|
333552
|
+
const buildTime = new Date("2026-04-10T00:52:04.858Z").getTime();
|
|
333553
333553
|
if (isNaN(buildTime))
|
|
333554
333554
|
return;
|
|
333555
333555
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -357536,7 +357536,7 @@ function Feedback({
|
|
|
357536
357536
|
platform: env4.platform,
|
|
357537
357537
|
gitRepo: envInfo.isGit,
|
|
357538
357538
|
terminal: env4.terminal,
|
|
357539
|
-
version: "1.1.
|
|
357539
|
+
version: "1.1.24",
|
|
357540
357540
|
transcript: normalizeMessagesForAPI(messages),
|
|
357541
357541
|
errors: sanitizedErrors,
|
|
357542
357542
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -357728,7 +357728,7 @@ function Feedback({
|
|
|
357728
357728
|
", ",
|
|
357729
357729
|
env4.terminal,
|
|
357730
357730
|
", v",
|
|
357731
|
-
"1.1.
|
|
357731
|
+
"1.1.24"
|
|
357732
357732
|
]
|
|
357733
357733
|
}, undefined, true, undefined, this)
|
|
357734
357734
|
]
|
|
@@ -357834,7 +357834,7 @@ ${sanitizedDescription}
|
|
|
357834
357834
|
` + `**Environment Info**
|
|
357835
357835
|
` + `- Platform: ${env4.platform}
|
|
357836
357836
|
` + `- Terminal: ${env4.terminal}
|
|
357837
|
-
` + `- Version: ${"1.1.
|
|
357837
|
+
` + `- Version: ${"1.1.24"}
|
|
357838
357838
|
` + `- Feedback ID: ${feedbackId}
|
|
357839
357839
|
` + `
|
|
357840
357840
|
**Errors**
|
|
@@ -360947,7 +360947,7 @@ function buildPrimarySection() {
|
|
|
360947
360947
|
}, undefined, false, undefined, this);
|
|
360948
360948
|
return [{
|
|
360949
360949
|
label: "Version",
|
|
360950
|
-
value: "1.1.
|
|
360950
|
+
value: "1.1.24"
|
|
360951
360951
|
}, {
|
|
360952
360952
|
label: "Session name",
|
|
360953
360953
|
value: nameValue
|
|
@@ -365565,7 +365565,7 @@ function Config({
|
|
|
365565
365565
|
}
|
|
365566
365566
|
}, undefined, false, undefined, this)
|
|
365567
365567
|
}, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime179.jsxDEV(ChannelDowngradeDialog, {
|
|
365568
|
-
currentVersion: "1.1.
|
|
365568
|
+
currentVersion: "1.1.24",
|
|
365569
365569
|
onChoice: (choice) => {
|
|
365570
365570
|
setShowSubmenu(null);
|
|
365571
365571
|
setTabsHidden(false);
|
|
@@ -365577,7 +365577,7 @@ function Config({
|
|
|
365577
365577
|
autoUpdatesChannel: "stable"
|
|
365578
365578
|
};
|
|
365579
365579
|
if (choice === "stay") {
|
|
365580
|
-
newSettings.minimumVersion = "1.1.
|
|
365580
|
+
newSettings.minimumVersion = "1.1.24";
|
|
365581
365581
|
}
|
|
365582
365582
|
updateSettingsForSource("userSettings", newSettings);
|
|
365583
365583
|
setSettingsData((prev_27) => ({
|
|
@@ -374538,7 +374538,7 @@ function HelpV2(t0) {
|
|
|
374538
374538
|
let t6;
|
|
374539
374539
|
if ($2[31] !== tabs) {
|
|
374540
374540
|
t6 = /* @__PURE__ */ jsx_dev_runtime212.jsxDEV(Tabs, {
|
|
374541
|
-
title: `localclawd v${"1.1.
|
|
374541
|
+
title: `localclawd v${"1.1.24"}`,
|
|
374542
374542
|
color: "professionalBlue",
|
|
374543
374543
|
defaultTab: "general",
|
|
374544
374544
|
children: tabs
|
|
@@ -398696,7 +398696,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
398696
398696
|
return [];
|
|
398697
398697
|
}
|
|
398698
398698
|
}
|
|
398699
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.
|
|
398699
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.24") {
|
|
398700
398700
|
if (process.env.USER_TYPE === "ant") {
|
|
398701
398701
|
const changelog = MACRO.VERSION_CHANGELOG;
|
|
398702
398702
|
if (changelog) {
|
|
@@ -398723,7 +398723,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.23")
|
|
|
398723
398723
|
releaseNotes
|
|
398724
398724
|
};
|
|
398725
398725
|
}
|
|
398726
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.1.
|
|
398726
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.1.24") {
|
|
398727
398727
|
if (process.env.USER_TYPE === "ant") {
|
|
398728
398728
|
const changelog = MACRO.VERSION_CHANGELOG;
|
|
398729
398729
|
if (changelog) {
|
|
@@ -399905,7 +399905,7 @@ function getRecentActivitySync() {
|
|
|
399905
399905
|
return cachedActivity;
|
|
399906
399906
|
}
|
|
399907
399907
|
function getLogoDisplayData() {
|
|
399908
|
-
const version = process.env.DEMO_VERSION ?? "1.1.
|
|
399908
|
+
const version = process.env.DEMO_VERSION ?? "1.1.24";
|
|
399909
399909
|
const serverUrl = getDirectConnectServerUrl();
|
|
399910
399910
|
const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
|
|
399911
399911
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -401105,7 +401105,7 @@ function LogoV2() {
|
|
|
401105
401105
|
if ($2[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
401106
401106
|
t2 = () => {
|
|
401107
401107
|
const currentConfig = getGlobalConfig();
|
|
401108
|
-
if (currentConfig.lastReleaseNotesSeen === "1.1.
|
|
401108
|
+
if (currentConfig.lastReleaseNotesSeen === "1.1.24") {
|
|
401109
401109
|
return;
|
|
401110
401110
|
}
|
|
401111
401111
|
saveGlobalConfig(_temp327);
|
|
@@ -401764,12 +401764,12 @@ function LogoV2() {
|
|
|
401764
401764
|
return t41;
|
|
401765
401765
|
}
|
|
401766
401766
|
function _temp327(current) {
|
|
401767
|
-
if (current.lastReleaseNotesSeen === "1.1.
|
|
401767
|
+
if (current.lastReleaseNotesSeen === "1.1.24") {
|
|
401768
401768
|
return current;
|
|
401769
401769
|
}
|
|
401770
401770
|
return {
|
|
401771
401771
|
...current,
|
|
401772
|
-
lastReleaseNotesSeen: "1.1.
|
|
401772
|
+
lastReleaseNotesSeen: "1.1.24"
|
|
401773
401773
|
};
|
|
401774
401774
|
}
|
|
401775
401775
|
function _temp243(s_0) {
|
|
@@ -428001,7 +428001,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
|
|
|
428001
428001
|
smapsRollup,
|
|
428002
428002
|
platform: process.platform,
|
|
428003
428003
|
nodeVersion: process.version,
|
|
428004
|
-
ccVersion: "1.1.
|
|
428004
|
+
ccVersion: "1.1.24"
|
|
428005
428005
|
};
|
|
428006
428006
|
}
|
|
428007
428007
|
async function performHeapDump(trigger = "manual", dumpNumber = 0) {
|
|
@@ -428586,7 +428586,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
428586
428586
|
var call64 = async () => {
|
|
428587
428587
|
return {
|
|
428588
428588
|
type: "text",
|
|
428589
|
-
value: `${"1.1.
|
|
428589
|
+
value: `${"1.1.24"} (built ${"2026-04-10T00:52:04.858Z"})`
|
|
428590
428590
|
};
|
|
428591
428591
|
}, version, version_default;
|
|
428592
428592
|
var init_version = __esm(() => {
|
|
@@ -437540,7 +437540,7 @@ function generateHtmlReport(data, insights) {
|
|
|
437540
437540
|
</html>`;
|
|
437541
437541
|
}
|
|
437542
437542
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
437543
|
-
const version2 = typeof MACRO !== "undefined" ? "1.1.
|
|
437543
|
+
const version2 = typeof MACRO !== "undefined" ? "1.1.24" : "unknown";
|
|
437544
437544
|
const remote_hosts_collected = remoteStats?.hosts.filter((h) => h.sessionCount > 0).map((h) => h.name);
|
|
437545
437545
|
const facets_summary = {
|
|
437546
437546
|
total: facets.size,
|
|
@@ -441707,7 +441707,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
441707
441707
|
init_settings2();
|
|
441708
441708
|
init_slowOperations();
|
|
441709
441709
|
init_uuid();
|
|
441710
|
-
VERSION6 = typeof MACRO !== "undefined" ? "1.1.
|
|
441710
|
+
VERSION6 = typeof MACRO !== "undefined" ? "1.1.24" : "unknown";
|
|
441711
441711
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
441712
441712
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
441713
441713
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -442909,7 +442909,7 @@ var init_filesystem = __esm(() => {
|
|
|
442909
442909
|
});
|
|
442910
442910
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
442911
442911
|
const nonce = randomBytes19(16).toString("hex");
|
|
442912
|
-
return join130(getClaudeTempDir(), "bundled-skills", "1.1.
|
|
442912
|
+
return join130(getClaudeTempDir(), "bundled-skills", "1.1.24", nonce);
|
|
442913
442913
|
});
|
|
442914
442914
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
442915
442915
|
});
|
|
@@ -448919,7 +448919,7 @@ function computeFingerprint(messageText, version2) {
|
|
|
448919
448919
|
}
|
|
448920
448920
|
function computeFingerprintFromMessages(messages) {
|
|
448921
448921
|
const firstMessageText = extractFirstMessageText(messages);
|
|
448922
|
-
return computeFingerprint(firstMessageText, "1.1.
|
|
448922
|
+
return computeFingerprint(firstMessageText, "1.1.24");
|
|
448923
448923
|
}
|
|
448924
448924
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
448925
448925
|
var init_fingerprint = () => {};
|
|
@@ -450774,7 +450774,7 @@ async function sideQuery(opts) {
|
|
|
450774
450774
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
450775
450775
|
}
|
|
450776
450776
|
const messageText = extractFirstUserMessageText(messages);
|
|
450777
|
-
const fingerprint = computeFingerprint(messageText, "1.1.
|
|
450777
|
+
const fingerprint = computeFingerprint(messageText, "1.1.24");
|
|
450778
450778
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
450779
450779
|
const systemBlocks = [
|
|
450780
450780
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -455572,7 +455572,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
455572
455572
|
slash_commands: inputs.commands.filter((c5) => c5.userInvocable !== false).map((c5) => c5.name),
|
|
455573
455573
|
apiKeySource: getAnthropicApiKeyWithSource().source,
|
|
455574
455574
|
betas: getSdkBetas(),
|
|
455575
|
-
claude_code_version: "1.1.
|
|
455575
|
+
claude_code_version: "1.1.24",
|
|
455576
455576
|
output_style: outputStyle2,
|
|
455577
455577
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
455578
455578
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
|
|
@@ -470151,7 +470151,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
470151
470151
|
function getSemverPart(version2) {
|
|
470152
470152
|
return `${import_semver12.major(version2, { loose: true })}.${import_semver12.minor(version2, { loose: true })}.${import_semver12.patch(version2, { loose: true })}`;
|
|
470153
470153
|
}
|
|
470154
|
-
function useUpdateNotification(updatedVersion, initialVersion = "1.1.
|
|
470154
|
+
function useUpdateNotification(updatedVersion, initialVersion = "1.1.24") {
|
|
470155
470155
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react225.useState(() => getSemverPart(initialVersion));
|
|
470156
470156
|
if (!updatedVersion) {
|
|
470157
470157
|
return null;
|
|
@@ -470191,7 +470191,7 @@ function AutoUpdater({
|
|
|
470191
470191
|
return;
|
|
470192
470192
|
}
|
|
470193
470193
|
if (false) {}
|
|
470194
|
-
const currentVersion = "1.1.
|
|
470194
|
+
const currentVersion = "1.1.24";
|
|
470195
470195
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
470196
470196
|
let latestVersion = await getLatestVersion(channel);
|
|
470197
470197
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -470402,12 +470402,12 @@ function NativeAutoUpdater({
|
|
|
470402
470402
|
logEvent("tengu_native_auto_updater_start", {});
|
|
470403
470403
|
try {
|
|
470404
470404
|
const maxVersion = await getMaxVersion();
|
|
470405
|
-
if (maxVersion && gt("1.1.
|
|
470405
|
+
if (maxVersion && gt("1.1.24", maxVersion)) {
|
|
470406
470406
|
const msg = await getMaxVersionMessage();
|
|
470407
470407
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
470408
470408
|
}
|
|
470409
470409
|
const result = await installLatest(channel);
|
|
470410
|
-
const currentVersion = "1.1.
|
|
470410
|
+
const currentVersion = "1.1.24";
|
|
470411
470411
|
const latencyMs = Date.now() - startTime;
|
|
470412
470412
|
if (result.lockFailed) {
|
|
470413
470413
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -470542,17 +470542,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
470542
470542
|
const maxVersion = await getMaxVersion();
|
|
470543
470543
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
470544
470544
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
470545
|
-
if (gte("1.1.
|
|
470546
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.1.
|
|
470545
|
+
if (gte("1.1.24", maxVersion)) {
|
|
470546
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.1.24"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
470547
470547
|
setUpdateAvailable(false);
|
|
470548
470548
|
return;
|
|
470549
470549
|
}
|
|
470550
470550
|
latest = maxVersion;
|
|
470551
470551
|
}
|
|
470552
|
-
const hasUpdate = latest && !gte("1.1.
|
|
470552
|
+
const hasUpdate = latest && !gte("1.1.24", latest) && !shouldSkipVersion(latest);
|
|
470553
470553
|
setUpdateAvailable(!!hasUpdate);
|
|
470554
470554
|
if (hasUpdate) {
|
|
470555
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.1.
|
|
470555
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.1.24"} -> ${latest}`);
|
|
470556
470556
|
}
|
|
470557
470557
|
};
|
|
470558
470558
|
$2[0] = t1;
|
|
@@ -470586,7 +470586,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
470586
470586
|
wrap: "truncate",
|
|
470587
470587
|
children: [
|
|
470588
470588
|
"currentVersion: ",
|
|
470589
|
-
"1.1.
|
|
470589
|
+
"1.1.24"
|
|
470590
470590
|
]
|
|
470591
470591
|
}, undefined, true, undefined, this);
|
|
470592
470592
|
$2[3] = verbose;
|
|
@@ -478144,7 +478144,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
478144
478144
|
project_dir: getOriginalCwd(),
|
|
478145
478145
|
added_dirs: addedDirs
|
|
478146
478146
|
},
|
|
478147
|
-
version: "1.1.
|
|
478147
|
+
version: "1.1.24",
|
|
478148
478148
|
output_style: {
|
|
478149
478149
|
name: outputStyleName
|
|
478150
478150
|
},
|
|
@@ -489712,7 +489712,7 @@ async function submitTranscriptShare(messages, trigger, appearanceId) {
|
|
|
489712
489712
|
} catch {}
|
|
489713
489713
|
const data = {
|
|
489714
489714
|
trigger,
|
|
489715
|
-
version: "1.1.
|
|
489715
|
+
version: "1.1.24",
|
|
489716
489716
|
platform: process.platform,
|
|
489717
489717
|
transcript,
|
|
489718
489718
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -506157,7 +506157,7 @@ function appendToLog(path17, message) {
|
|
|
506157
506157
|
cwd: getFsImplementation().cwd(),
|
|
506158
506158
|
userType: process.env.USER_TYPE,
|
|
506159
506159
|
sessionId: getSessionId(),
|
|
506160
|
-
version: "1.1.
|
|
506160
|
+
version: "1.1.24"
|
|
506161
506161
|
};
|
|
506162
506162
|
getLogWriter(path17).write(messageWithTimestamp);
|
|
506163
506163
|
}
|
|
@@ -510156,8 +510156,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
510156
510156
|
}
|
|
510157
510157
|
async function checkEnvLessBridgeMinVersion() {
|
|
510158
510158
|
const cfg = await getEnvLessBridgeConfig();
|
|
510159
|
-
if (cfg.min_version && lt("1.1.
|
|
510160
|
-
return `Your version of localclawd (${"1.1.
|
|
510159
|
+
if (cfg.min_version && lt("1.1.24", cfg.min_version)) {
|
|
510160
|
+
return `Your version of localclawd (${"1.1.24"}) is too old for Remote Control.
|
|
510161
510161
|
Version ${cfg.min_version} or higher is required. Run \`localclawd update\` to update.`;
|
|
510162
510162
|
}
|
|
510163
510163
|
return null;
|
|
@@ -510629,7 +510629,7 @@ async function initBridgeCore(params) {
|
|
|
510629
510629
|
const rawApi = createBridgeApiClient({
|
|
510630
510630
|
baseUrl,
|
|
510631
510631
|
getAccessToken,
|
|
510632
|
-
runnerVersion: "1.1.
|
|
510632
|
+
runnerVersion: "1.1.24",
|
|
510633
510633
|
onDebug: logForDebugging,
|
|
510634
510634
|
onAuth401,
|
|
510635
510635
|
getTrustedDeviceToken
|
|
@@ -516285,7 +516285,7 @@ async function startMCPServer(cwd3, debug4, verbose) {
|
|
|
516285
516285
|
setCwd(cwd3);
|
|
516286
516286
|
const server = new Server({
|
|
516287
516287
|
name: "claude/tengu",
|
|
516288
|
-
version: "1.1.
|
|
516288
|
+
version: "1.1.24"
|
|
516289
516289
|
}, {
|
|
516290
516290
|
capabilities: {
|
|
516291
516291
|
tools: {}
|
|
@@ -517366,7 +517366,7 @@ function WelcomeV2() {
|
|
|
517366
517366
|
dimColor: true,
|
|
517367
517367
|
children: [
|
|
517368
517368
|
"v",
|
|
517369
|
-
"1.1.
|
|
517369
|
+
"1.1.24"
|
|
517370
517370
|
]
|
|
517371
517371
|
}, undefined, true, undefined, this)
|
|
517372
517372
|
]
|
|
@@ -517935,7 +517935,7 @@ __export(exports_update, {
|
|
|
517935
517935
|
});
|
|
517936
517936
|
async function update() {
|
|
517937
517937
|
logEvent("tengu_update_check", {});
|
|
517938
|
-
writeToStdout(`Current version: ${"1.1.
|
|
517938
|
+
writeToStdout(`Current version: ${"1.1.24"}
|
|
517939
517939
|
`);
|
|
517940
517940
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
517941
517941
|
writeToStdout(`Checking for updates to ${channel} version...
|
|
@@ -518010,8 +518010,8 @@ async function update() {
|
|
|
518010
518010
|
writeToStdout(`localclawd is managed by Homebrew.
|
|
518011
518011
|
`);
|
|
518012
518012
|
const latest = await getLatestVersion(channel);
|
|
518013
|
-
if (latest && !gte("1.1.
|
|
518014
|
-
writeToStdout(`Update available: ${"1.1.
|
|
518013
|
+
if (latest && !gte("1.1.24", latest)) {
|
|
518014
|
+
writeToStdout(`Update available: ${"1.1.24"} → ${latest}
|
|
518015
518015
|
`);
|
|
518016
518016
|
writeToStdout(`
|
|
518017
518017
|
`);
|
|
@@ -518027,8 +518027,8 @@ async function update() {
|
|
|
518027
518027
|
writeToStdout(`localclawd is managed by winget.
|
|
518028
518028
|
`);
|
|
518029
518029
|
const latest = await getLatestVersion(channel);
|
|
518030
|
-
if (latest && !gte("1.1.
|
|
518031
|
-
writeToStdout(`Update available: ${"1.1.
|
|
518030
|
+
if (latest && !gte("1.1.24", latest)) {
|
|
518031
|
+
writeToStdout(`Update available: ${"1.1.24"} → ${latest}
|
|
518032
518032
|
`);
|
|
518033
518033
|
writeToStdout(`
|
|
518034
518034
|
`);
|
|
@@ -518042,8 +518042,8 @@ async function update() {
|
|
|
518042
518042
|
writeToStdout(`localclawd is managed by apk.
|
|
518043
518043
|
`);
|
|
518044
518044
|
const latest = await getLatestVersion(channel);
|
|
518045
|
-
if (latest && !gte("1.1.
|
|
518046
|
-
writeToStdout(`Update available: ${"1.1.
|
|
518045
|
+
if (latest && !gte("1.1.24", latest)) {
|
|
518046
|
+
writeToStdout(`Update available: ${"1.1.24"} → ${latest}
|
|
518047
518047
|
`);
|
|
518048
518048
|
writeToStdout(`
|
|
518049
518049
|
`);
|
|
@@ -518108,11 +518108,11 @@ async function update() {
|
|
|
518108
518108
|
`);
|
|
518109
518109
|
await gracefulShutdown(1);
|
|
518110
518110
|
}
|
|
518111
|
-
if (result.latestVersion === "1.1.
|
|
518112
|
-
writeToStdout(source_default.green(`localclawd is up to date (${"1.1.
|
|
518111
|
+
if (result.latestVersion === "1.1.24") {
|
|
518112
|
+
writeToStdout(source_default.green(`localclawd is up to date (${"1.1.24"})`) + `
|
|
518113
518113
|
`);
|
|
518114
518114
|
} else {
|
|
518115
|
-
writeToStdout(source_default.green(`Successfully updated from ${"1.1.
|
|
518115
|
+
writeToStdout(source_default.green(`Successfully updated from ${"1.1.24"} to version ${result.latestVersion}`) + `
|
|
518116
518116
|
`);
|
|
518117
518117
|
await regenerateCompletionCache();
|
|
518118
518118
|
}
|
|
@@ -518172,12 +518172,12 @@ async function update() {
|
|
|
518172
518172
|
`);
|
|
518173
518173
|
await gracefulShutdown(1);
|
|
518174
518174
|
}
|
|
518175
|
-
if (latestVersion === "1.1.
|
|
518176
|
-
writeToStdout(source_default.green(`localclawd is up to date (${"1.1.
|
|
518175
|
+
if (latestVersion === "1.1.24") {
|
|
518176
|
+
writeToStdout(source_default.green(`localclawd is up to date (${"1.1.24"})`) + `
|
|
518177
518177
|
`);
|
|
518178
518178
|
await gracefulShutdown(0);
|
|
518179
518179
|
}
|
|
518180
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"1.1.
|
|
518180
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"1.1.24"})
|
|
518181
518181
|
`);
|
|
518182
518182
|
writeToStdout(`Installing update...
|
|
518183
518183
|
`);
|
|
@@ -518222,7 +518222,7 @@ async function update() {
|
|
|
518222
518222
|
logForDebugging(`update: Installation status: ${status2}`);
|
|
518223
518223
|
switch (status2) {
|
|
518224
518224
|
case "success":
|
|
518225
|
-
writeToStdout(source_default.green(`Successfully updated from ${"1.1.
|
|
518225
|
+
writeToStdout(source_default.green(`Successfully updated from ${"1.1.24"} to version ${latestVersion}`) + `
|
|
518226
518226
|
`);
|
|
518227
518227
|
await regenerateCompletionCache();
|
|
518228
518228
|
break;
|
|
@@ -519517,7 +519517,7 @@ Run with --debug for more details.
|
|
|
519517
519517
|
}
|
|
519518
519518
|
}
|
|
519519
519519
|
logForDiagnosticsNoPII("info", "started", {
|
|
519520
|
-
version: "1.1.
|
|
519520
|
+
version: "1.1.24",
|
|
519521
519521
|
is_native_binary: isInBundledMode()
|
|
519522
519522
|
});
|
|
519523
519523
|
registerCleanup(async () => {
|
|
@@ -520301,7 +520301,7 @@ Usage: localclawd --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
520301
520301
|
pendingHookMessages
|
|
520302
520302
|
}, renderAndRun);
|
|
520303
520303
|
}
|
|
520304
|
-
}).version("1.1.
|
|
520304
|
+
}).version("1.1.24 (localclawd)", "-v, --version", "Output the version number");
|
|
520305
520305
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
520306
520306
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
520307
520307
|
if (canUserConfigureAdvisor()) {
|
|
@@ -520809,7 +520809,7 @@ if (false) {}
|
|
|
520809
520809
|
async function main2() {
|
|
520810
520810
|
const args = process.argv.slice(2);
|
|
520811
520811
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
520812
|
-
console.log(`${"1.1.
|
|
520812
|
+
console.log(`${"1.1.24"} (localclawd)`);
|
|
520813
520813
|
return;
|
|
520814
520814
|
}
|
|
520815
520815
|
const {
|
|
@@ -520906,4 +520906,4 @@ localclawd crashed: ${msg}
|
|
|
520906
520906
|
process.exit(1);
|
|
520907
520907
|
});
|
|
520908
520908
|
|
|
520909
|
-
//# debugId=
|
|
520909
|
+
//# debugId=E002A4E46DA80BB264756E2164756E21
|