localclawd 1.1.28 → 1.1.29
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 +85 -83
- 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.29"}`;
|
|
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.29"} (${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.29"}${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.29"}.${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.29".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.29",
|
|
132768
132768
|
versionBase: getVersionBase(),
|
|
132769
|
-
buildTime: "2026-04-13T03:
|
|
132769
|
+
buildTime: "2026-04-13T03:37:48.750Z",
|
|
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.29";
|
|
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.29";
|
|
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.29",
|
|
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.29",
|
|
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.29",
|
|
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.29");
|
|
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.29"
|
|
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.29");
|
|
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.29");
|
|
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.29");
|
|
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.29" : "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.29", maxVersion)) {
|
|
262123
|
+
logForDebugging(`Native installer: current version ${"1.1.29"} 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.29" && 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-13T03:
|
|
333552
|
+
const buildTime = new Date("2026-04-13T03:37:48.750Z").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.29",
|
|
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.29"
|
|
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.29"}
|
|
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.29"
|
|
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.29",
|
|
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.29";
|
|
365581
365581
|
}
|
|
365582
365582
|
updateSettingsForSource("userSettings", newSettings);
|
|
365583
365583
|
setSettingsData((prev_27) => ({
|
|
@@ -374458,7 +374458,7 @@ function Help(t0) {
|
|
|
374458
374458
|
let t6;
|
|
374459
374459
|
if ($2[31] !== tabs) {
|
|
374460
374460
|
t6 = /* @__PURE__ */ jsx_dev_runtime211.jsxDEV(Tabs, {
|
|
374461
|
-
title: `localclawd v${"1.1.
|
|
374461
|
+
title: `localclawd v${"1.1.29"}`,
|
|
374462
374462
|
color: "professionalBlue",
|
|
374463
374463
|
defaultTab: "general",
|
|
374464
374464
|
children: tabs
|
|
@@ -398616,7 +398616,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
398616
398616
|
return [];
|
|
398617
398617
|
}
|
|
398618
398618
|
}
|
|
398619
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.
|
|
398619
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.29") {
|
|
398620
398620
|
if (process.env.USER_TYPE === "ant") {
|
|
398621
398621
|
const changelog = MACRO.VERSION_CHANGELOG;
|
|
398622
398622
|
if (changelog) {
|
|
@@ -398643,7 +398643,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.1.28")
|
|
|
398643
398643
|
releaseNotes
|
|
398644
398644
|
};
|
|
398645
398645
|
}
|
|
398646
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.1.
|
|
398646
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.1.29") {
|
|
398647
398647
|
if (process.env.USER_TYPE === "ant") {
|
|
398648
398648
|
const changelog = MACRO.VERSION_CHANGELOG;
|
|
398649
398649
|
if (changelog) {
|
|
@@ -399825,7 +399825,7 @@ function getRecentActivitySync() {
|
|
|
399825
399825
|
return cachedActivity;
|
|
399826
399826
|
}
|
|
399827
399827
|
function getLogoDisplayData() {
|
|
399828
|
-
const version = process.env.DEMO_VERSION ?? "1.1.
|
|
399828
|
+
const version = process.env.DEMO_VERSION ?? "1.1.29";
|
|
399829
399829
|
const serverUrl = getDirectConnectServerUrl();
|
|
399830
399830
|
const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
|
|
399831
399831
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -399909,19 +399909,21 @@ function Clawd({ pose: _pose = "default" }) {
|
|
|
399909
399909
|
}, index, false, undefined, this))
|
|
399910
399910
|
}, undefined, false, undefined, this);
|
|
399911
399911
|
}
|
|
399912
|
-
var jsx_dev_runtime252, CLAWD_HEIGHT =
|
|
399912
|
+
var jsx_dev_runtime252, CLAWD_HEIGHT = 5, ROWS, ROW_COLORS;
|
|
399913
399913
|
var init_Clawd = __esm(() => {
|
|
399914
399914
|
init_ink2();
|
|
399915
399915
|
jsx_dev_runtime252 = __toESM(require_jsx_dev_runtime(), 1);
|
|
399916
399916
|
ROWS = [
|
|
399917
|
-
"
|
|
399918
|
-
"
|
|
399919
|
-
"
|
|
399920
|
-
" ▄▄
|
|
399917
|
+
" ▄████▄ ",
|
|
399918
|
+
" ▗██████▖ ",
|
|
399919
|
+
" ▐ ▄ ▄ ▌ ",
|
|
399920
|
+
" ▐ ▄▄ ▌ ",
|
|
399921
|
+
" ▐▌ ▐▌ "
|
|
399921
399922
|
];
|
|
399922
399923
|
ROW_COLORS = [
|
|
399923
399924
|
"#6366f1",
|
|
399924
399925
|
"#6366f1",
|
|
399926
|
+
"#818cf8",
|
|
399925
399927
|
"#6366f1",
|
|
399926
399928
|
"#818cf8"
|
|
399927
399929
|
];
|
|
@@ -400930,7 +400932,7 @@ function Logo() {
|
|
|
400930
400932
|
if ($2[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
400931
400933
|
t2 = () => {
|
|
400932
400934
|
const currentConfig = getGlobalConfig();
|
|
400933
|
-
if (currentConfig.lastReleaseNotesSeen === "1.1.
|
|
400935
|
+
if (currentConfig.lastReleaseNotesSeen === "1.1.29") {
|
|
400934
400936
|
return;
|
|
400935
400937
|
}
|
|
400936
400938
|
saveGlobalConfig(_temp327);
|
|
@@ -401589,12 +401591,12 @@ function Logo() {
|
|
|
401589
401591
|
return t41;
|
|
401590
401592
|
}
|
|
401591
401593
|
function _temp327(current) {
|
|
401592
|
-
if (current.lastReleaseNotesSeen === "1.1.
|
|
401594
|
+
if (current.lastReleaseNotesSeen === "1.1.29") {
|
|
401593
401595
|
return current;
|
|
401594
401596
|
}
|
|
401595
401597
|
return {
|
|
401596
401598
|
...current,
|
|
401597
|
-
lastReleaseNotesSeen: "1.1.
|
|
401599
|
+
lastReleaseNotesSeen: "1.1.29"
|
|
401598
401600
|
};
|
|
401599
401601
|
}
|
|
401600
401602
|
function _temp243(s_0) {
|
|
@@ -427832,7 +427834,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
|
|
|
427832
427834
|
smapsRollup,
|
|
427833
427835
|
platform: process.platform,
|
|
427834
427836
|
nodeVersion: process.version,
|
|
427835
|
-
ccVersion: "1.1.
|
|
427837
|
+
ccVersion: "1.1.29"
|
|
427836
427838
|
};
|
|
427837
427839
|
}
|
|
427838
427840
|
async function performHeapDump(trigger = "manual", dumpNumber = 0) {
|
|
@@ -428417,7 +428419,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
428417
428419
|
var call63 = async () => {
|
|
428418
428420
|
return {
|
|
428419
428421
|
type: "text",
|
|
428420
|
-
value: `${"1.1.
|
|
428422
|
+
value: `${"1.1.29"} (built ${"2026-04-13T03:37:48.750Z"})`
|
|
428421
428423
|
};
|
|
428422
428424
|
}, version, version_default;
|
|
428423
428425
|
var init_version = __esm(() => {
|
|
@@ -437371,7 +437373,7 @@ function generateHtmlReport(data, insights) {
|
|
|
437371
437373
|
</html>`;
|
|
437372
437374
|
}
|
|
437373
437375
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
437374
|
-
const version2 = typeof MACRO !== "undefined" ? "1.1.
|
|
437376
|
+
const version2 = typeof MACRO !== "undefined" ? "1.1.29" : "unknown";
|
|
437375
437377
|
const remote_hosts_collected = remoteStats?.hosts.filter((h) => h.sessionCount > 0).map((h) => h.name);
|
|
437376
437378
|
const facets_summary = {
|
|
437377
437379
|
total: facets.size,
|
|
@@ -441536,7 +441538,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
441536
441538
|
init_settings2();
|
|
441537
441539
|
init_slowOperations();
|
|
441538
441540
|
init_uuid();
|
|
441539
|
-
VERSION6 = typeof MACRO !== "undefined" ? "1.1.
|
|
441541
|
+
VERSION6 = typeof MACRO !== "undefined" ? "1.1.29" : "unknown";
|
|
441540
441542
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
441541
441543
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
441542
441544
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -442738,7 +442740,7 @@ var init_filesystem = __esm(() => {
|
|
|
442738
442740
|
});
|
|
442739
442741
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
442740
442742
|
const nonce = randomBytes19(16).toString("hex");
|
|
442741
|
-
return join130(getClaudeTempDir(), "bundled-skills", "1.1.
|
|
442743
|
+
return join130(getClaudeTempDir(), "bundled-skills", "1.1.29", nonce);
|
|
442742
442744
|
});
|
|
442743
442745
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
442744
442746
|
});
|
|
@@ -448748,7 +448750,7 @@ function computeFingerprint(messageText, version2) {
|
|
|
448748
448750
|
}
|
|
448749
448751
|
function computeFingerprintFromMessages(messages) {
|
|
448750
448752
|
const firstMessageText = extractFirstMessageText(messages);
|
|
448751
|
-
return computeFingerprint(firstMessageText, "1.1.
|
|
448753
|
+
return computeFingerprint(firstMessageText, "1.1.29");
|
|
448752
448754
|
}
|
|
448753
448755
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
448754
448756
|
var init_fingerprint = () => {};
|
|
@@ -450603,7 +450605,7 @@ async function sideQuery(opts) {
|
|
|
450603
450605
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
450604
450606
|
}
|
|
450605
450607
|
const messageText = extractFirstUserMessageText(messages);
|
|
450606
|
-
const fingerprint = computeFingerprint(messageText, "1.1.
|
|
450608
|
+
const fingerprint = computeFingerprint(messageText, "1.1.29");
|
|
450607
450609
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
450608
450610
|
const systemBlocks = [
|
|
450609
450611
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -455401,7 +455403,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
455401
455403
|
slash_commands: inputs.commands.filter((c5) => c5.userInvocable !== false).map((c5) => c5.name),
|
|
455402
455404
|
apiKeySource: getAnthropicApiKeyWithSource().source,
|
|
455403
455405
|
betas: getSdkBetas(),
|
|
455404
|
-
claude_code_version: "1.1.
|
|
455406
|
+
claude_code_version: "1.1.29",
|
|
455405
455407
|
output_style: outputStyle2,
|
|
455406
455408
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
455407
455409
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
|
|
@@ -469980,7 +469982,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
469980
469982
|
function getSemverPart(version2) {
|
|
469981
469983
|
return `${import_semver12.major(version2, { loose: true })}.${import_semver12.minor(version2, { loose: true })}.${import_semver12.patch(version2, { loose: true })}`;
|
|
469982
469984
|
}
|
|
469983
|
-
function useUpdateNotification(updatedVersion, initialVersion = "1.1.
|
|
469985
|
+
function useUpdateNotification(updatedVersion, initialVersion = "1.1.29") {
|
|
469984
469986
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react224.useState(() => getSemverPart(initialVersion));
|
|
469985
469987
|
if (!updatedVersion) {
|
|
469986
469988
|
return null;
|
|
@@ -470020,7 +470022,7 @@ function AutoUpdater({
|
|
|
470020
470022
|
return;
|
|
470021
470023
|
}
|
|
470022
470024
|
if (false) {}
|
|
470023
|
-
const currentVersion = "1.1.
|
|
470025
|
+
const currentVersion = "1.1.29";
|
|
470024
470026
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
470025
470027
|
let latestVersion = await getLatestVersion(channel);
|
|
470026
470028
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -470231,12 +470233,12 @@ function NativeAutoUpdater({
|
|
|
470231
470233
|
logEvent("tengu_native_auto_updater_start", {});
|
|
470232
470234
|
try {
|
|
470233
470235
|
const maxVersion = await getMaxVersion();
|
|
470234
|
-
if (maxVersion && gt("1.1.
|
|
470236
|
+
if (maxVersion && gt("1.1.29", maxVersion)) {
|
|
470235
470237
|
const msg = await getMaxVersionMessage();
|
|
470236
470238
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
470237
470239
|
}
|
|
470238
470240
|
const result = await installLatest(channel);
|
|
470239
|
-
const currentVersion = "1.1.
|
|
470241
|
+
const currentVersion = "1.1.29";
|
|
470240
470242
|
const latencyMs = Date.now() - startTime;
|
|
470241
470243
|
if (result.lockFailed) {
|
|
470242
470244
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -470371,17 +470373,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
470371
470373
|
const maxVersion = await getMaxVersion();
|
|
470372
470374
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
470373
470375
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
470374
|
-
if (gte("1.1.
|
|
470375
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.1.
|
|
470376
|
+
if (gte("1.1.29", maxVersion)) {
|
|
470377
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.1.29"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
470376
470378
|
setUpdateAvailable(false);
|
|
470377
470379
|
return;
|
|
470378
470380
|
}
|
|
470379
470381
|
latest = maxVersion;
|
|
470380
470382
|
}
|
|
470381
|
-
const hasUpdate = latest && !gte("1.1.
|
|
470383
|
+
const hasUpdate = latest && !gte("1.1.29", latest) && !shouldSkipVersion(latest);
|
|
470382
470384
|
setUpdateAvailable(!!hasUpdate);
|
|
470383
470385
|
if (hasUpdate) {
|
|
470384
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.1.
|
|
470386
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.1.29"} -> ${latest}`);
|
|
470385
470387
|
}
|
|
470386
470388
|
};
|
|
470387
470389
|
$2[0] = t1;
|
|
@@ -470415,7 +470417,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
470415
470417
|
wrap: "truncate",
|
|
470416
470418
|
children: [
|
|
470417
470419
|
"currentVersion: ",
|
|
470418
|
-
"1.1.
|
|
470420
|
+
"1.1.29"
|
|
470419
470421
|
]
|
|
470420
470422
|
}, undefined, true, undefined, this);
|
|
470421
470423
|
$2[3] = verbose;
|
|
@@ -477973,7 +477975,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
477973
477975
|
project_dir: getOriginalCwd(),
|
|
477974
477976
|
added_dirs: addedDirs
|
|
477975
477977
|
},
|
|
477976
|
-
version: "1.1.
|
|
477978
|
+
version: "1.1.29",
|
|
477977
477979
|
output_style: {
|
|
477978
477980
|
name: outputStyleName
|
|
477979
477981
|
},
|
|
@@ -489541,7 +489543,7 @@ async function submitTranscriptShare(messages, trigger, appearanceId) {
|
|
|
489541
489543
|
} catch {}
|
|
489542
489544
|
const data = {
|
|
489543
489545
|
trigger,
|
|
489544
|
-
version: "1.1.
|
|
489546
|
+
version: "1.1.29",
|
|
489545
489547
|
platform: process.platform,
|
|
489546
489548
|
transcript,
|
|
489547
489549
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -505986,7 +505988,7 @@ function appendToLog(path17, message) {
|
|
|
505986
505988
|
cwd: getFsImplementation().cwd(),
|
|
505987
505989
|
userType: process.env.USER_TYPE,
|
|
505988
505990
|
sessionId: getSessionId(),
|
|
505989
|
-
version: "1.1.
|
|
505991
|
+
version: "1.1.29"
|
|
505990
505992
|
};
|
|
505991
505993
|
getLogWriter(path17).write(messageWithTimestamp);
|
|
505992
505994
|
}
|
|
@@ -509985,8 +509987,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
509985
509987
|
}
|
|
509986
509988
|
async function checkEnvLessBridgeMinVersion() {
|
|
509987
509989
|
const cfg = await getEnvLessBridgeConfig();
|
|
509988
|
-
if (cfg.min_version && lt("1.1.
|
|
509989
|
-
return `Your version of localclawd (${"1.1.
|
|
509990
|
+
if (cfg.min_version && lt("1.1.29", cfg.min_version)) {
|
|
509991
|
+
return `Your version of localclawd (${"1.1.29"}) is too old for Remote Control.
|
|
509990
509992
|
Version ${cfg.min_version} or higher is required. Run \`localclawd update\` to update.`;
|
|
509991
509993
|
}
|
|
509992
509994
|
return null;
|
|
@@ -510458,7 +510460,7 @@ async function initBridgeCore(params) {
|
|
|
510458
510460
|
const rawApi = createBridgeApiClient({
|
|
510459
510461
|
baseUrl,
|
|
510460
510462
|
getAccessToken,
|
|
510461
|
-
runnerVersion: "1.1.
|
|
510463
|
+
runnerVersion: "1.1.29",
|
|
510462
510464
|
onDebug: logForDebugging,
|
|
510463
510465
|
onAuth401,
|
|
510464
510466
|
getTrustedDeviceToken
|
|
@@ -516114,7 +516116,7 @@ async function startMCPServer(cwd3, debug4, verbose) {
|
|
|
516114
516116
|
setCwd(cwd3);
|
|
516115
516117
|
const server = new Server({
|
|
516116
516118
|
name: "claude/tengu",
|
|
516117
|
-
version: "1.1.
|
|
516119
|
+
version: "1.1.29"
|
|
516118
516120
|
}, {
|
|
516119
516121
|
capabilities: {
|
|
516120
516122
|
tools: {}
|
|
@@ -517195,7 +517197,7 @@ function WelcomeLogo() {
|
|
|
517195
517197
|
dimColor: true,
|
|
517196
517198
|
children: [
|
|
517197
517199
|
"v",
|
|
517198
|
-
"1.1.
|
|
517200
|
+
"1.1.29"
|
|
517199
517201
|
]
|
|
517200
517202
|
}, undefined, true, undefined, this)
|
|
517201
517203
|
]
|
|
@@ -517764,7 +517766,7 @@ __export(exports_update, {
|
|
|
517764
517766
|
});
|
|
517765
517767
|
async function update() {
|
|
517766
517768
|
logEvent("tengu_update_check", {});
|
|
517767
|
-
writeToStdout(`Current version: ${"1.1.
|
|
517769
|
+
writeToStdout(`Current version: ${"1.1.29"}
|
|
517768
517770
|
`);
|
|
517769
517771
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
517770
517772
|
writeToStdout(`Checking for updates to ${channel} version...
|
|
@@ -517839,8 +517841,8 @@ async function update() {
|
|
|
517839
517841
|
writeToStdout(`localclawd is managed by Homebrew.
|
|
517840
517842
|
`);
|
|
517841
517843
|
const latest = await getLatestVersion(channel);
|
|
517842
|
-
if (latest && !gte("1.1.
|
|
517843
|
-
writeToStdout(`Update available: ${"1.1.
|
|
517844
|
+
if (latest && !gte("1.1.29", latest)) {
|
|
517845
|
+
writeToStdout(`Update available: ${"1.1.29"} → ${latest}
|
|
517844
517846
|
`);
|
|
517845
517847
|
writeToStdout(`
|
|
517846
517848
|
`);
|
|
@@ -517856,8 +517858,8 @@ async function update() {
|
|
|
517856
517858
|
writeToStdout(`localclawd is managed by winget.
|
|
517857
517859
|
`);
|
|
517858
517860
|
const latest = await getLatestVersion(channel);
|
|
517859
|
-
if (latest && !gte("1.1.
|
|
517860
|
-
writeToStdout(`Update available: ${"1.1.
|
|
517861
|
+
if (latest && !gte("1.1.29", latest)) {
|
|
517862
|
+
writeToStdout(`Update available: ${"1.1.29"} → ${latest}
|
|
517861
517863
|
`);
|
|
517862
517864
|
writeToStdout(`
|
|
517863
517865
|
`);
|
|
@@ -517871,8 +517873,8 @@ async function update() {
|
|
|
517871
517873
|
writeToStdout(`localclawd is managed by apk.
|
|
517872
517874
|
`);
|
|
517873
517875
|
const latest = await getLatestVersion(channel);
|
|
517874
|
-
if (latest && !gte("1.1.
|
|
517875
|
-
writeToStdout(`Update available: ${"1.1.
|
|
517876
|
+
if (latest && !gte("1.1.29", latest)) {
|
|
517877
|
+
writeToStdout(`Update available: ${"1.1.29"} → ${latest}
|
|
517876
517878
|
`);
|
|
517877
517879
|
writeToStdout(`
|
|
517878
517880
|
`);
|
|
@@ -517937,11 +517939,11 @@ async function update() {
|
|
|
517937
517939
|
`);
|
|
517938
517940
|
await gracefulShutdown(1);
|
|
517939
517941
|
}
|
|
517940
|
-
if (result.latestVersion === "1.1.
|
|
517941
|
-
writeToStdout(source_default.green(`localclawd is up to date (${"1.1.
|
|
517942
|
+
if (result.latestVersion === "1.1.29") {
|
|
517943
|
+
writeToStdout(source_default.green(`localclawd is up to date (${"1.1.29"})`) + `
|
|
517942
517944
|
`);
|
|
517943
517945
|
} else {
|
|
517944
|
-
writeToStdout(source_default.green(`Successfully updated from ${"1.1.
|
|
517946
|
+
writeToStdout(source_default.green(`Successfully updated from ${"1.1.29"} to version ${result.latestVersion}`) + `
|
|
517945
517947
|
`);
|
|
517946
517948
|
await regenerateCompletionCache();
|
|
517947
517949
|
}
|
|
@@ -518001,12 +518003,12 @@ async function update() {
|
|
|
518001
518003
|
`);
|
|
518002
518004
|
await gracefulShutdown(1);
|
|
518003
518005
|
}
|
|
518004
|
-
if (latestVersion === "1.1.
|
|
518005
|
-
writeToStdout(source_default.green(`localclawd is up to date (${"1.1.
|
|
518006
|
+
if (latestVersion === "1.1.29") {
|
|
518007
|
+
writeToStdout(source_default.green(`localclawd is up to date (${"1.1.29"})`) + `
|
|
518006
518008
|
`);
|
|
518007
518009
|
await gracefulShutdown(0);
|
|
518008
518010
|
}
|
|
518009
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"1.1.
|
|
518011
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"1.1.29"})
|
|
518010
518012
|
`);
|
|
518011
518013
|
writeToStdout(`Installing update...
|
|
518012
518014
|
`);
|
|
@@ -518051,7 +518053,7 @@ async function update() {
|
|
|
518051
518053
|
logForDebugging(`update: Installation status: ${status2}`);
|
|
518052
518054
|
switch (status2) {
|
|
518053
518055
|
case "success":
|
|
518054
|
-
writeToStdout(source_default.green(`Successfully updated from ${"1.1.
|
|
518056
|
+
writeToStdout(source_default.green(`Successfully updated from ${"1.1.29"} to version ${latestVersion}`) + `
|
|
518055
518057
|
`);
|
|
518056
518058
|
await regenerateCompletionCache();
|
|
518057
518059
|
break;
|
|
@@ -519346,7 +519348,7 @@ Run with --debug for more details.
|
|
|
519346
519348
|
}
|
|
519347
519349
|
}
|
|
519348
519350
|
logForDiagnosticsNoPII("info", "started", {
|
|
519349
|
-
version: "1.1.
|
|
519351
|
+
version: "1.1.29",
|
|
519350
519352
|
is_native_binary: isInBundledMode()
|
|
519351
519353
|
});
|
|
519352
519354
|
registerCleanup(async () => {
|
|
@@ -520130,7 +520132,7 @@ Usage: localclawd --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
520130
520132
|
pendingHookMessages
|
|
520131
520133
|
}, renderAndRun);
|
|
520132
520134
|
}
|
|
520133
|
-
}).version("1.1.
|
|
520135
|
+
}).version("1.1.29 (localclawd)", "-v, --version", "Output the version number");
|
|
520134
520136
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
520135
520137
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
520136
520138
|
if (canUserConfigureAdvisor()) {
|
|
@@ -520638,7 +520640,7 @@ if (false) {}
|
|
|
520638
520640
|
async function main2() {
|
|
520639
520641
|
const args = process.argv.slice(2);
|
|
520640
520642
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
520641
|
-
console.log(`${"1.1.
|
|
520643
|
+
console.log(`${"1.1.29"} (localclawd)`);
|
|
520642
520644
|
return;
|
|
520643
520645
|
}
|
|
520644
520646
|
const {
|
|
@@ -520735,4 +520737,4 @@ localclawd crashed: ${msg}
|
|
|
520735
520737
|
process.exit(1);
|
|
520736
520738
|
});
|
|
520737
520739
|
|
|
520738
|
-
//# debugId=
|
|
520740
|
+
//# debugId=64A65F356790539664756E2164756E21
|