localclawd 1.9.0 → 1.9.1
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 +113 -95
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -87608,7 +87608,7 @@ var init_isEqual = __esm(() => {
|
|
|
87608
87608
|
|
|
87609
87609
|
// src/utils/userAgent.ts
|
|
87610
87610
|
function getClaudeCodeUserAgent() {
|
|
87611
|
-
return `claude-code/${"1.9.
|
|
87611
|
+
return `claude-code/${"1.9.1"}`;
|
|
87612
87612
|
}
|
|
87613
87613
|
|
|
87614
87614
|
// src/utils/workloadContext.ts
|
|
@@ -87630,7 +87630,7 @@ function getUserAgent() {
|
|
|
87630
87630
|
const clientApp = process.env.CLAUDE_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}` : "";
|
|
87631
87631
|
const workload = getWorkload();
|
|
87632
87632
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
87633
|
-
return `claude-cli/${"1.9.
|
|
87633
|
+
return `claude-cli/${"1.9.1"} (${process.env.USER_TYPE}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
87634
87634
|
}
|
|
87635
87635
|
function getMCPUserAgent() {
|
|
87636
87636
|
const parts = [];
|
|
@@ -87644,7 +87644,7 @@ function getMCPUserAgent() {
|
|
|
87644
87644
|
parts.push(`client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}`);
|
|
87645
87645
|
}
|
|
87646
87646
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
87647
|
-
return `claude-code/${"1.9.
|
|
87647
|
+
return `claude-code/${"1.9.1"}${suffix}`;
|
|
87648
87648
|
}
|
|
87649
87649
|
function getWebFetchUserAgent() {
|
|
87650
87650
|
return `Claude-User (${getClaudeCodeUserAgent()}; +https://support.anthropic.com/)`;
|
|
@@ -130840,7 +130840,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
130840
130840
|
if (!isAttributionHeaderEnabled()) {
|
|
130841
130841
|
return "";
|
|
130842
130842
|
}
|
|
130843
|
-
const version = `${"1.9.
|
|
130843
|
+
const version = `${"1.9.1"}.${fingerprint}`;
|
|
130844
130844
|
const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
|
|
130845
130845
|
const cch = "";
|
|
130846
130846
|
const workload = getWorkload();
|
|
@@ -147029,7 +147029,7 @@ var init_metadata = __esm(() => {
|
|
|
147029
147029
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
147030
147030
|
WHITESPACE_REGEX = /\s+/;
|
|
147031
147031
|
getVersionBase = memoize_default(() => {
|
|
147032
|
-
const match = "1.9.
|
|
147032
|
+
const match = "1.9.1".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
147033
147033
|
return match ? match[0] : undefined;
|
|
147034
147034
|
});
|
|
147035
147035
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -147069,9 +147069,9 @@ var init_metadata = __esm(() => {
|
|
|
147069
147069
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
147070
147070
|
isClaudeCodeAction: isEnvTruthy(process.env.CLAUDE_CODE_ACTION),
|
|
147071
147071
|
isClaudeAiAuth: isClaudeAISubscriber(),
|
|
147072
|
-
version: "1.9.
|
|
147072
|
+
version: "1.9.1",
|
|
147073
147073
|
versionBase: getVersionBase(),
|
|
147074
|
-
buildTime: "2026-05-
|
|
147074
|
+
buildTime: "2026-05-07T18:03:44.736Z",
|
|
147075
147075
|
deploymentEnvironment: env3.detectDeploymentEnvironment(),
|
|
147076
147076
|
...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
|
|
147077
147077
|
githubEventName: process.env.GITHUB_EVENT_NAME,
|
|
@@ -179647,7 +179647,7 @@ function getTelemetryAttributes() {
|
|
|
179647
179647
|
attributes["session.id"] = sessionId;
|
|
179648
179648
|
}
|
|
179649
179649
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
179650
|
-
attributes["app.version"] = "1.9.
|
|
179650
|
+
attributes["app.version"] = "1.9.1";
|
|
179651
179651
|
}
|
|
179652
179652
|
const oauthAccount = getOauthAccountInfo();
|
|
179653
179653
|
if (oauthAccount) {
|
|
@@ -242448,7 +242448,7 @@ function getInstallationEnv() {
|
|
|
242448
242448
|
return;
|
|
242449
242449
|
}
|
|
242450
242450
|
function getClaudeCodeVersion() {
|
|
242451
|
-
return "1.9.
|
|
242451
|
+
return "1.9.1";
|
|
242452
242452
|
}
|
|
242453
242453
|
async function getInstalledVSCodeExtensionVersion(command) {
|
|
242454
242454
|
const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
|
|
@@ -247722,7 +247722,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
247722
247722
|
const client4 = new Client({
|
|
247723
247723
|
name: "localclawd",
|
|
247724
247724
|
title: "localclawd",
|
|
247725
|
-
version: "1.9.
|
|
247725
|
+
version: "1.9.1",
|
|
247726
247726
|
description: "local-first AI coding tool",
|
|
247727
247727
|
websiteUrl: PRODUCT_URL
|
|
247728
247728
|
}, {
|
|
@@ -248064,7 +248064,7 @@ var init_client9 = __esm(() => {
|
|
|
248064
248064
|
const client4 = new Client({
|
|
248065
248065
|
name: "localclawd",
|
|
248066
248066
|
title: "localclawd",
|
|
248067
|
-
version: "1.9.
|
|
248067
|
+
version: "1.9.1",
|
|
248068
248068
|
description: "local-first AI coding tool",
|
|
248069
248069
|
websiteUrl: PRODUCT_URL
|
|
248070
248070
|
}, {
|
|
@@ -262466,7 +262466,7 @@ function computeFingerprint(messageText, version) {
|
|
|
262466
262466
|
}
|
|
262467
262467
|
function computeFingerprintFromMessages(messages) {
|
|
262468
262468
|
const firstMessageText = extractFirstMessageText(messages);
|
|
262469
|
-
return computeFingerprint(firstMessageText, "1.9.
|
|
262469
|
+
return computeFingerprint(firstMessageText, "1.9.1");
|
|
262470
262470
|
}
|
|
262471
262471
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
262472
262472
|
var init_fingerprint = () => {};
|
|
@@ -262508,7 +262508,7 @@ async function sideQuery(opts) {
|
|
|
262508
262508
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
262509
262509
|
}
|
|
262510
262510
|
const messageText = extractFirstUserMessageText(messages);
|
|
262511
|
-
const fingerprint = computeFingerprint(messageText, "1.9.
|
|
262511
|
+
const fingerprint = computeFingerprint(messageText, "1.9.1");
|
|
262512
262512
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
262513
262513
|
const systemBlocks = [
|
|
262514
262514
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -283256,7 +283256,7 @@ var init_user = __esm(() => {
|
|
|
283256
283256
|
deviceId,
|
|
283257
283257
|
sessionId: getSessionId(),
|
|
283258
283258
|
email: getEmail(),
|
|
283259
|
-
appVersion: "1.9.
|
|
283259
|
+
appVersion: "1.9.1",
|
|
283260
283260
|
platform: getHostPlatformForAnalytics(),
|
|
283261
283261
|
organizationUuid,
|
|
283262
283262
|
accountUuid,
|
|
@@ -284321,7 +284321,7 @@ async function initializeBetaTracing(resource) {
|
|
|
284321
284321
|
});
|
|
284322
284322
|
logs.setGlobalLoggerProvider(loggerProvider);
|
|
284323
284323
|
setLoggerProvider(loggerProvider);
|
|
284324
|
-
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.9.
|
|
284324
|
+
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.9.1");
|
|
284325
284325
|
setEventLogger(eventLogger);
|
|
284326
284326
|
process.on("beforeExit", async () => {
|
|
284327
284327
|
await loggerProvider?.forceFlush();
|
|
@@ -284361,7 +284361,7 @@ async function initializeTelemetry() {
|
|
|
284361
284361
|
const platform2 = getPlatform();
|
|
284362
284362
|
const baseAttributes = {
|
|
284363
284363
|
[ATTR_SERVICE_NAME4]: "claude-code",
|
|
284364
|
-
[ATTR_SERVICE_VERSION4]: "1.9.
|
|
284364
|
+
[ATTR_SERVICE_VERSION4]: "1.9.1"
|
|
284365
284365
|
};
|
|
284366
284366
|
if (platform2 === "wsl") {
|
|
284367
284367
|
const wslVersion = getWslVersion();
|
|
@@ -284406,7 +284406,7 @@ async function initializeTelemetry() {
|
|
|
284406
284406
|
} catch {}
|
|
284407
284407
|
};
|
|
284408
284408
|
registerCleanup(shutdownTelemetry2);
|
|
284409
|
-
return meterProvider2.getMeter("com.anthropic.claude_code", "1.9.
|
|
284409
|
+
return meterProvider2.getMeter("com.anthropic.claude_code", "1.9.1");
|
|
284410
284410
|
}
|
|
284411
284411
|
const meterProvider = new MeterProvider4({
|
|
284412
284412
|
resource,
|
|
@@ -284426,7 +284426,7 @@ async function initializeTelemetry() {
|
|
|
284426
284426
|
});
|
|
284427
284427
|
logs.setGlobalLoggerProvider(loggerProvider);
|
|
284428
284428
|
setLoggerProvider(loggerProvider);
|
|
284429
|
-
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.9.
|
|
284429
|
+
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "1.9.1");
|
|
284430
284430
|
setEventLogger(eventLogger);
|
|
284431
284431
|
logForDebugging("[3P telemetry] Event logger set successfully");
|
|
284432
284432
|
process.on("beforeExit", async () => {
|
|
@@ -284488,7 +284488,7 @@ Current timeout: ${timeoutMs}ms
|
|
|
284488
284488
|
}
|
|
284489
284489
|
};
|
|
284490
284490
|
registerCleanup(shutdownTelemetry);
|
|
284491
|
-
return meterProvider.getMeter("com.anthropic.claude_code", "1.9.
|
|
284491
|
+
return meterProvider.getMeter("com.anthropic.claude_code", "1.9.1");
|
|
284492
284492
|
}
|
|
284493
284493
|
async function flushTelemetry() {
|
|
284494
284494
|
const meterProvider = getMeterProvider();
|
|
@@ -285678,7 +285678,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
285678
285678
|
}
|
|
285679
285679
|
async function getDoctorDiagnostic() {
|
|
285680
285680
|
const installationType = await getCurrentInstallationType();
|
|
285681
|
-
const version = typeof MACRO !== "undefined" ? "1.9.
|
|
285681
|
+
const version = typeof MACRO !== "undefined" ? "1.9.1" : "unknown";
|
|
285682
285682
|
const installationPath = await getInstallationPath();
|
|
285683
285683
|
const invokedBinary = getInvokedBinary();
|
|
285684
285684
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -286619,8 +286619,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
286619
286619
|
const maxVersion = await getMaxVersion();
|
|
286620
286620
|
if (maxVersion && gt(version, maxVersion)) {
|
|
286621
286621
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version} to ${maxVersion}`);
|
|
286622
|
-
if (gte("1.9.
|
|
286623
|
-
logForDebugging(`Native installer: current version ${"1.9.
|
|
286622
|
+
if (gte("1.9.1", maxVersion)) {
|
|
286623
|
+
logForDebugging(`Native installer: current version ${"1.9.1"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
286624
286624
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
286625
286625
|
latency_ms: Date.now() - startTime,
|
|
286626
286626
|
max_version: maxVersion,
|
|
@@ -286631,7 +286631,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
286631
286631
|
version = maxVersion;
|
|
286632
286632
|
}
|
|
286633
286633
|
}
|
|
286634
|
-
if (!forceReinstall && version === "1.9.
|
|
286634
|
+
if (!forceReinstall && version === "1.9.1" && await versionIsAvailable(version) && await isPossibleLocalClawdBinary(executablePath)) {
|
|
286635
286635
|
logForDebugging(`Found ${version} at ${executablePath}, skipping install`);
|
|
286636
286636
|
logEvent("tengu_native_update_complete", {
|
|
286637
286637
|
latency_ms: Date.now() - startTime,
|
|
@@ -323167,8 +323167,8 @@ var init_imagePipeline = __esm(() => {
|
|
|
323167
323167
|
inputs: { samples: ["3", 0], vae: ["4", 2] }
|
|
323168
323168
|
},
|
|
323169
323169
|
"9": {
|
|
323170
|
-
class_type: "
|
|
323171
|
-
inputs: { images: ["8", 0] }
|
|
323170
|
+
class_type: "SaveImage",
|
|
323171
|
+
inputs: { filename_prefix: "localclawd", images: ["8", 0] }
|
|
323172
323172
|
}
|
|
323173
323173
|
};
|
|
323174
323174
|
Z_IMAGE_TURBO_WORKFLOW = {
|
|
@@ -323195,7 +323195,7 @@ var init_imagePipeline = __esm(() => {
|
|
|
323195
323195
|
}
|
|
323196
323196
|
},
|
|
323197
323197
|
"8": { class_type: "VAEDecode", inputs: { samples: ["3", 0], vae: ["29", 0] } },
|
|
323198
|
-
"9": { class_type: "
|
|
323198
|
+
"9": { class_type: "SaveImage", inputs: { filename_prefix: "z-image-turbo", images: ["8", 0] } }
|
|
323199
323199
|
};
|
|
323200
323200
|
});
|
|
323201
323201
|
|
|
@@ -323360,16 +323360,27 @@ var init_GenerateImageTool = __esm(() => {
|
|
|
323360
323360
|
if (abortController.signal.aborted) {
|
|
323361
323361
|
return { data: { path: "", filename: "", promptId: "", seed: 0, backend: backendUrl, error: "Aborted" } };
|
|
323362
323362
|
}
|
|
323363
|
-
const model = input.model ?? config?.defaultModel ?? "v1-5-pruned-emaonly.safetensors";
|
|
323364
|
-
const width = input.width ?? config?.defaultWidth ?? 512;
|
|
323365
|
-
const height = input.height ?? config?.defaultHeight ?? 512;
|
|
323366
|
-
const steps = input.steps ?? config?.defaultSteps ?? 20;
|
|
323367
|
-
const cfg = input.cfg ?? config?.defaultCfg ?? 7;
|
|
323368
323363
|
const seed = input.seed ?? Math.floor(Math.random() * 2 ** 32);
|
|
323369
323364
|
const negativePrompt = input.negative_prompt ?? "blurry, low quality, watermark, deformed";
|
|
323370
323365
|
const workflowName = input.workflow ?? config?.defaultWorkflow;
|
|
323371
323366
|
const workflowBase = workflowName ? await loadWorkflow(projectRoot, workflowName) : null;
|
|
323372
|
-
const
|
|
323367
|
+
const usingBuiltIn = !workflowBase;
|
|
323368
|
+
const injectParams = usingBuiltIn ? {
|
|
323369
|
+
seed,
|
|
323370
|
+
model: input.model ?? config?.defaultModel ?? "v1-5-pruned-emaonly.safetensors",
|
|
323371
|
+
width: input.width ?? config?.defaultWidth ?? 512,
|
|
323372
|
+
height: input.height ?? config?.defaultHeight ?? 512,
|
|
323373
|
+
steps: input.steps ?? config?.defaultSteps ?? 20,
|
|
323374
|
+
cfg: input.cfg ?? config?.defaultCfg ?? 7
|
|
323375
|
+
} : {
|
|
323376
|
+
seed,
|
|
323377
|
+
...input.model && { model: input.model },
|
|
323378
|
+
...input.width && { width: input.width },
|
|
323379
|
+
...input.height && { height: input.height },
|
|
323380
|
+
...input.steps && { steps: input.steps },
|
|
323381
|
+
...input.cfg && { cfg: input.cfg }
|
|
323382
|
+
};
|
|
323383
|
+
const workflow = injectPrompt(workflowBase ?? DEFAULT_WORKFLOW, input.prompt, negativePrompt, injectParams);
|
|
323373
323384
|
let queued;
|
|
323374
323385
|
try {
|
|
323375
323386
|
queued = await queuePrompt(backendUrl, workflow);
|
|
@@ -331915,7 +331926,7 @@ function getAnthropicEnvMetadata() {
|
|
|
331915
331926
|
function getBuildAgeMinutes() {
|
|
331916
331927
|
if (false)
|
|
331917
331928
|
;
|
|
331918
|
-
const buildTime = new Date("2026-05-
|
|
331929
|
+
const buildTime = new Date("2026-05-07T18:03:44.736Z").getTime();
|
|
331919
331930
|
if (isNaN(buildTime))
|
|
331920
331931
|
return;
|
|
331921
331932
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -360745,7 +360756,7 @@ function Feedback({
|
|
|
360745
360756
|
platform: env3.platform,
|
|
360746
360757
|
gitRepo: envInfo.isGit,
|
|
360747
360758
|
terminal: env3.terminal,
|
|
360748
|
-
version: "1.9.
|
|
360759
|
+
version: "1.9.1",
|
|
360749
360760
|
transcript: normalizeMessagesForAPI(messages),
|
|
360750
360761
|
errors: sanitizedErrors,
|
|
360751
360762
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -360937,7 +360948,7 @@ function Feedback({
|
|
|
360937
360948
|
", ",
|
|
360938
360949
|
env3.terminal,
|
|
360939
360950
|
", v",
|
|
360940
|
-
"1.9.
|
|
360951
|
+
"1.9.1"
|
|
360941
360952
|
]
|
|
360942
360953
|
}, undefined, true, undefined, this)
|
|
360943
360954
|
]
|
|
@@ -361043,7 +361054,7 @@ ${sanitizedDescription}
|
|
|
361043
361054
|
` + `**Environment Info**
|
|
361044
361055
|
` + `- Platform: ${env3.platform}
|
|
361045
361056
|
` + `- Terminal: ${env3.terminal}
|
|
361046
|
-
` + `- Version: ${"1.9.
|
|
361057
|
+
` + `- Version: ${"1.9.1"}
|
|
361047
361058
|
` + `- Feedback ID: ${feedbackId}
|
|
361048
361059
|
` + `
|
|
361049
361060
|
**Errors**
|
|
@@ -363671,7 +363682,7 @@ function buildPrimarySection() {
|
|
|
363671
363682
|
}, undefined, false, undefined, this);
|
|
363672
363683
|
return [{
|
|
363673
363684
|
label: "Version",
|
|
363674
|
-
value: "1.9.
|
|
363685
|
+
value: "1.9.1"
|
|
363675
363686
|
}, {
|
|
363676
363687
|
label: "Session name",
|
|
363677
363688
|
value: nameValue
|
|
@@ -368352,7 +368363,7 @@ function Config({
|
|
|
368352
368363
|
}
|
|
368353
368364
|
}, undefined, false, undefined, this)
|
|
368354
368365
|
}, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime176.jsxDEV(ChannelDowngradeDialog, {
|
|
368355
|
-
currentVersion: "1.9.
|
|
368366
|
+
currentVersion: "1.9.1",
|
|
368356
368367
|
onChoice: (choice) => {
|
|
368357
368368
|
setShowSubmenu(null);
|
|
368358
368369
|
setTabsHidden(false);
|
|
@@ -368364,7 +368375,7 @@ function Config({
|
|
|
368364
368375
|
autoUpdatesChannel: "stable"
|
|
368365
368376
|
};
|
|
368366
368377
|
if (choice === "stay") {
|
|
368367
|
-
newSettings.minimumVersion = "1.9.
|
|
368378
|
+
newSettings.minimumVersion = "1.9.1";
|
|
368368
368379
|
}
|
|
368369
368380
|
updateSettingsForSource("userSettings", newSettings);
|
|
368370
368381
|
setSettingsData((prev_27) => ({
|
|
@@ -374790,16 +374801,20 @@ var call19 = async (onDone, _context, args) => {
|
|
|
374790
374801
|
].join(`
|
|
374791
374802
|
`), { display: "system" });
|
|
374792
374803
|
}
|
|
374804
|
+
const usingBuiltIn = !workflow;
|
|
374793
374805
|
if (!workflow)
|
|
374794
374806
|
workflow = DEFAULT_WORKFLOW;
|
|
374795
|
-
const model = config2?.defaultModel || "v1-5-pruned-emaonly.safetensors";
|
|
374796
|
-
const width = config2?.defaultWidth ?? 512;
|
|
374797
|
-
const height = config2?.defaultHeight ?? 512;
|
|
374798
|
-
const steps = config2?.defaultSteps ?? 20;
|
|
374799
|
-
const cfg = config2?.defaultCfg ?? 7;
|
|
374800
374807
|
const seed = Math.floor(Math.random() * 4294967296);
|
|
374801
374808
|
const negative = "blurry, low quality, watermark, deformed";
|
|
374802
|
-
const
|
|
374809
|
+
const injectParams = usingBuiltIn ? {
|
|
374810
|
+
seed,
|
|
374811
|
+
model: config2?.defaultModel || "v1-5-pruned-emaonly.safetensors",
|
|
374812
|
+
width: config2?.defaultWidth ?? 512,
|
|
374813
|
+
height: config2?.defaultHeight ?? 512,
|
|
374814
|
+
steps: config2?.defaultSteps ?? 20,
|
|
374815
|
+
cfg: config2?.defaultCfg ?? 7
|
|
374816
|
+
} : { seed };
|
|
374817
|
+
const finalWorkflow = injectPrompt(workflow, promptText, negative, injectParams);
|
|
374803
374818
|
let queued;
|
|
374804
374819
|
try {
|
|
374805
374820
|
queued = await queuePrompt(backendUrl, finalWorkflow);
|
|
@@ -374847,13 +374862,16 @@ var call19 = async (onDone, _context, args) => {
|
|
|
374847
374862
|
"",
|
|
374848
374863
|
` Saved to: ${savedPaths.join(`
|
|
374849
374864
|
`)}`,
|
|
374850
|
-
` Workflow: ${usedWorkflow}
|
|
374865
|
+
` Workflow: ${usedWorkflow}`,
|
|
374866
|
+
` Prompt: ${promptText.length > 80 ? promptText.slice(0, 80) + "…" : promptText}`,
|
|
374867
|
+
` Seed: ${seed}`
|
|
374851
374868
|
] : [
|
|
374852
374869
|
"◆ /image — Done (download failed)",
|
|
374853
374870
|
"",
|
|
374854
374871
|
" Job complete but image download failed.",
|
|
374855
374872
|
` ComfyUI filenames: ${comfyImages.join(", ") || "(none)"}`,
|
|
374856
|
-
` Workflow: ${usedWorkflow} · Seed: ${seed}
|
|
374873
|
+
` Workflow: ${usedWorkflow} · Seed: ${seed}`,
|
|
374874
|
+
` Try fetching manually: ${backendUrl}/view?filename=${comfyImages[0] ?? ""}&type=output`
|
|
374857
374875
|
];
|
|
374858
374876
|
onDone(lines.join(`
|
|
374859
374877
|
`), { display: "system" });
|
|
@@ -385819,7 +385837,7 @@ function Help(t0) {
|
|
|
385819
385837
|
let t6;
|
|
385820
385838
|
if ($2[31] !== tabs) {
|
|
385821
385839
|
t6 = /* @__PURE__ */ jsx_dev_runtime221.jsxDEV(Tabs, {
|
|
385822
|
-
title: `localclawd v${"1.9.
|
|
385840
|
+
title: `localclawd v${"1.9.1"}`,
|
|
385823
385841
|
color: "professionalBlue",
|
|
385824
385842
|
defaultTab: "general",
|
|
385825
385843
|
children: tabs
|
|
@@ -403081,7 +403099,7 @@ function getRecentReleaseNotes(currentVersion, previousVersion, changelogContent
|
|
|
403081
403099
|
}
|
|
403082
403100
|
return [];
|
|
403083
403101
|
}
|
|
403084
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.9.
|
|
403102
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.9.1") {
|
|
403085
403103
|
if (process.env.USER_TYPE === "ant") {
|
|
403086
403104
|
const changelog = MACRO.VERSION_CHANGELOG;
|
|
403087
403105
|
if (changelog) {
|
|
@@ -403108,7 +403126,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.9.0") {
|
|
|
403108
403126
|
releaseNotes
|
|
403109
403127
|
};
|
|
403110
403128
|
}
|
|
403111
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.9.
|
|
403129
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.9.1") {
|
|
403112
403130
|
if (process.env.USER_TYPE === "ant") {
|
|
403113
403131
|
const changelog = MACRO.VERSION_CHANGELOG;
|
|
403114
403132
|
if (changelog) {
|
|
@@ -403265,7 +403283,7 @@ function getRecentActivitySync() {
|
|
|
403265
403283
|
return cachedActivity;
|
|
403266
403284
|
}
|
|
403267
403285
|
function getLogoDisplayData() {
|
|
403268
|
-
const version = process.env.DEMO_VERSION ?? "1.9.
|
|
403286
|
+
const version = process.env.DEMO_VERSION ?? "1.9.1";
|
|
403269
403287
|
const serverUrl = getDirectConnectServerUrl();
|
|
403270
403288
|
const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
|
|
403271
403289
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -404365,7 +404383,7 @@ function Logo() {
|
|
|
404365
404383
|
if ($2[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
404366
404384
|
t2 = () => {
|
|
404367
404385
|
const currentConfig = getGlobalConfig();
|
|
404368
|
-
if (currentConfig.lastReleaseNotesSeen === "1.9.
|
|
404386
|
+
if (currentConfig.lastReleaseNotesSeen === "1.9.1") {
|
|
404369
404387
|
return;
|
|
404370
404388
|
}
|
|
404371
404389
|
saveGlobalConfig(_temp326);
|
|
@@ -405024,12 +405042,12 @@ function Logo() {
|
|
|
405024
405042
|
return t41;
|
|
405025
405043
|
}
|
|
405026
405044
|
function _temp326(current) {
|
|
405027
|
-
if (current.lastReleaseNotesSeen === "1.9.
|
|
405045
|
+
if (current.lastReleaseNotesSeen === "1.9.1") {
|
|
405028
405046
|
return current;
|
|
405029
405047
|
}
|
|
405030
405048
|
return {
|
|
405031
405049
|
...current,
|
|
405032
|
-
lastReleaseNotesSeen: "1.9.
|
|
405050
|
+
lastReleaseNotesSeen: "1.9.1"
|
|
405033
405051
|
};
|
|
405034
405052
|
}
|
|
405035
405053
|
function _temp241(s_0) {
|
|
@@ -435508,7 +435526,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
|
|
|
435508
435526
|
smapsRollup,
|
|
435509
435527
|
platform: process.platform,
|
|
435510
435528
|
nodeVersion: process.version,
|
|
435511
|
-
ccVersion: "1.9.
|
|
435529
|
+
ccVersion: "1.9.1"
|
|
435512
435530
|
};
|
|
435513
435531
|
}
|
|
435514
435532
|
async function performHeapDump(trigger = "manual", dumpNumber = 0) {
|
|
@@ -436093,7 +436111,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
436093
436111
|
var call87 = async () => {
|
|
436094
436112
|
return {
|
|
436095
436113
|
type: "text",
|
|
436096
|
-
value: `${"1.9.
|
|
436114
|
+
value: `${"1.9.1"} (built ${"2026-05-07T18:03:44.736Z"})`
|
|
436097
436115
|
};
|
|
436098
436116
|
}, version, version_default;
|
|
436099
436117
|
var init_version = __esm(() => {
|
|
@@ -444037,7 +444055,7 @@ function generateHtmlReport(data, insights) {
|
|
|
444037
444055
|
</html>`;
|
|
444038
444056
|
}
|
|
444039
444057
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
444040
|
-
const version2 = typeof MACRO !== "undefined" ? "1.9.
|
|
444058
|
+
const version2 = typeof MACRO !== "undefined" ? "1.9.1" : "unknown";
|
|
444041
444059
|
const remote_hosts_collected = remoteStats?.hosts.filter((h) => h.sessionCount > 0).map((h) => h.name);
|
|
444042
444060
|
const facets_summary = {
|
|
444043
444061
|
total: facets.size,
|
|
@@ -448238,7 +448256,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
448238
448256
|
init_settings2();
|
|
448239
448257
|
init_slowOperations();
|
|
448240
448258
|
init_uuid();
|
|
448241
|
-
VERSION6 = typeof MACRO !== "undefined" ? "1.9.
|
|
448259
|
+
VERSION6 = typeof MACRO !== "undefined" ? "1.9.1" : "unknown";
|
|
448242
448260
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
448243
448261
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
448244
448262
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -449439,7 +449457,7 @@ var init_filesystem = __esm(() => {
|
|
|
449439
449457
|
});
|
|
449440
449458
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
449441
449459
|
const nonce = randomBytes20(16).toString("hex");
|
|
449442
|
-
return join151(getClaudeTempDir(), "bundled-skills", "1.9.
|
|
449460
|
+
return join151(getClaudeTempDir(), "bundled-skills", "1.9.1", nonce);
|
|
449443
449461
|
});
|
|
449444
449462
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
449445
449463
|
});
|
|
@@ -458676,7 +458694,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
458676
458694
|
slash_commands: inputs.commands.filter((c5) => c5.userInvocable !== false).map((c5) => c5.name),
|
|
458677
458695
|
apiKeySource: getAnthropicApiKeyWithSource().source,
|
|
458678
458696
|
betas: getSdkBetas(),
|
|
458679
|
-
claude_code_version: "1.9.
|
|
458697
|
+
claude_code_version: "1.9.1",
|
|
458680
458698
|
output_style: outputStyle2,
|
|
458681
458699
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
458682
458700
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
|
|
@@ -472833,7 +472851,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
472833
472851
|
function getSemverPart(version2) {
|
|
472834
472852
|
return `${import_semver10.major(version2, { loose: true })}.${import_semver10.minor(version2, { loose: true })}.${import_semver10.patch(version2, { loose: true })}`;
|
|
472835
472853
|
}
|
|
472836
|
-
function useUpdateNotification(updatedVersion, initialVersion = "1.9.
|
|
472854
|
+
function useUpdateNotification(updatedVersion, initialVersion = "1.9.1") {
|
|
472837
472855
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react214.useState(() => getSemverPart(initialVersion));
|
|
472838
472856
|
if (!updatedVersion) {
|
|
472839
472857
|
return null;
|
|
@@ -472873,7 +472891,7 @@ function AutoUpdater({
|
|
|
472873
472891
|
return;
|
|
472874
472892
|
}
|
|
472875
472893
|
if (false) {}
|
|
472876
|
-
const currentVersion = "1.9.
|
|
472894
|
+
const currentVersion = "1.9.1";
|
|
472877
472895
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
472878
472896
|
let latestVersion = await getLatestVersion(channel);
|
|
472879
472897
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -473084,12 +473102,12 @@ function NativeAutoUpdater({
|
|
|
473084
473102
|
logEvent("tengu_native_auto_updater_start", {});
|
|
473085
473103
|
try {
|
|
473086
473104
|
const maxVersion = await getMaxVersion();
|
|
473087
|
-
if (maxVersion && gt("1.9.
|
|
473105
|
+
if (maxVersion && gt("1.9.1", maxVersion)) {
|
|
473088
473106
|
const msg = await getMaxVersionMessage();
|
|
473089
473107
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
473090
473108
|
}
|
|
473091
473109
|
const result = await installLatest(channel);
|
|
473092
|
-
const currentVersion = "1.9.
|
|
473110
|
+
const currentVersion = "1.9.1";
|
|
473093
473111
|
const latencyMs = Date.now() - startTime;
|
|
473094
473112
|
if (result.lockFailed) {
|
|
473095
473113
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -473224,17 +473242,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
473224
473242
|
const maxVersion = await getMaxVersion();
|
|
473225
473243
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
473226
473244
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
473227
|
-
if (gte("1.9.
|
|
473228
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.9.
|
|
473245
|
+
if (gte("1.9.1", maxVersion)) {
|
|
473246
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.9.1"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
473229
473247
|
setUpdateAvailable(false);
|
|
473230
473248
|
return;
|
|
473231
473249
|
}
|
|
473232
473250
|
latest = maxVersion;
|
|
473233
473251
|
}
|
|
473234
|
-
const hasUpdate = latest && !gte("1.9.
|
|
473252
|
+
const hasUpdate = latest && !gte("1.9.1", latest) && !shouldSkipVersion(latest);
|
|
473235
473253
|
setUpdateAvailable(!!hasUpdate);
|
|
473236
473254
|
if (hasUpdate) {
|
|
473237
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.9.
|
|
473255
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.9.1"} -> ${latest}`);
|
|
473238
473256
|
}
|
|
473239
473257
|
};
|
|
473240
473258
|
$2[0] = t1;
|
|
@@ -473268,7 +473286,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
473268
473286
|
wrap: "truncate",
|
|
473269
473287
|
children: [
|
|
473270
473288
|
"currentVersion: ",
|
|
473271
|
-
"1.9.
|
|
473289
|
+
"1.9.1"
|
|
473272
473290
|
]
|
|
473273
473291
|
}, undefined, true, undefined, this);
|
|
473274
473292
|
$2[3] = verbose;
|
|
@@ -480828,7 +480846,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
480828
480846
|
project_dir: getOriginalCwd(),
|
|
480829
480847
|
added_dirs: addedDirs
|
|
480830
480848
|
},
|
|
480831
|
-
version: "1.9.
|
|
480849
|
+
version: "1.9.1",
|
|
480832
480850
|
output_style: {
|
|
480833
480851
|
name: outputStyleName
|
|
480834
480852
|
},
|
|
@@ -492400,7 +492418,7 @@ async function submitTranscriptShare(messages, trigger, appearanceId) {
|
|
|
492400
492418
|
} catch {}
|
|
492401
492419
|
const data = {
|
|
492402
492420
|
trigger,
|
|
492403
|
-
version: "1.9.
|
|
492421
|
+
version: "1.9.1",
|
|
492404
492422
|
platform: process.platform,
|
|
492405
492423
|
transcript,
|
|
492406
492424
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -509309,7 +509327,7 @@ function appendToLog(path17, message) {
|
|
|
509309
509327
|
cwd: getFsImplementation().cwd(),
|
|
509310
509328
|
userType: process.env.USER_TYPE,
|
|
509311
509329
|
sessionId: getSessionId(),
|
|
509312
|
-
version: "1.9.
|
|
509330
|
+
version: "1.9.1"
|
|
509313
509331
|
};
|
|
509314
509332
|
getLogWriter(path17).write(messageWithTimestamp);
|
|
509315
509333
|
}
|
|
@@ -513333,8 +513351,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
513333
513351
|
}
|
|
513334
513352
|
async function checkEnvLessBridgeMinVersion() {
|
|
513335
513353
|
const cfg = await getEnvLessBridgeConfig();
|
|
513336
|
-
if (cfg.min_version && lt("1.9.
|
|
513337
|
-
return `Your version of localclawd (${"1.9.
|
|
513354
|
+
if (cfg.min_version && lt("1.9.1", cfg.min_version)) {
|
|
513355
|
+
return `Your version of localclawd (${"1.9.1"}) is too old for Remote Control.
|
|
513338
513356
|
Version ${cfg.min_version} or higher is required. Run \`localclawd update\` to update.`;
|
|
513339
513357
|
}
|
|
513340
513358
|
return null;
|
|
@@ -513806,7 +513824,7 @@ async function initBridgeCore(params) {
|
|
|
513806
513824
|
const rawApi = createBridgeApiClient({
|
|
513807
513825
|
baseUrl,
|
|
513808
513826
|
getAccessToken,
|
|
513809
|
-
runnerVersion: "1.9.
|
|
513827
|
+
runnerVersion: "1.9.1",
|
|
513810
513828
|
onDebug: logForDebugging,
|
|
513811
513829
|
onAuth401,
|
|
513812
513830
|
getTrustedDeviceToken
|
|
@@ -519525,7 +519543,7 @@ async function startMCPServer(cwd3, debug4, verbose) {
|
|
|
519525
519543
|
setCwd(cwd3);
|
|
519526
519544
|
const server = new Server({
|
|
519527
519545
|
name: "claude/tengu",
|
|
519528
|
-
version: "1.9.
|
|
519546
|
+
version: "1.9.1"
|
|
519529
519547
|
}, {
|
|
519530
519548
|
capabilities: {
|
|
519531
519549
|
tools: {}
|
|
@@ -520606,7 +520624,7 @@ function WelcomeLogo() {
|
|
|
520606
520624
|
dimColor: true,
|
|
520607
520625
|
children: [
|
|
520608
520626
|
"v",
|
|
520609
|
-
"1.9.
|
|
520627
|
+
"1.9.1"
|
|
520610
520628
|
]
|
|
520611
520629
|
}, undefined, true, undefined, this)
|
|
520612
520630
|
]
|
|
@@ -520797,7 +520815,7 @@ __export(exports_update, {
|
|
|
520797
520815
|
});
|
|
520798
520816
|
async function update() {
|
|
520799
520817
|
logEvent("tengu_update_check", {});
|
|
520800
|
-
writeToStdout(`Current version: ${"1.9.
|
|
520818
|
+
writeToStdout(`Current version: ${"1.9.1"}
|
|
520801
520819
|
`);
|
|
520802
520820
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
520803
520821
|
writeToStdout(`Checking for updates to ${channel} version...
|
|
@@ -520872,8 +520890,8 @@ async function update() {
|
|
|
520872
520890
|
writeToStdout(`localclawd is managed by Homebrew.
|
|
520873
520891
|
`);
|
|
520874
520892
|
const latest = await getLatestVersion(channel);
|
|
520875
|
-
if (latest && !gte("1.9.
|
|
520876
|
-
writeToStdout(`Update available: ${"1.9.
|
|
520893
|
+
if (latest && !gte("1.9.1", latest)) {
|
|
520894
|
+
writeToStdout(`Update available: ${"1.9.1"} → ${latest}
|
|
520877
520895
|
`);
|
|
520878
520896
|
writeToStdout(`
|
|
520879
520897
|
`);
|
|
@@ -520889,8 +520907,8 @@ async function update() {
|
|
|
520889
520907
|
writeToStdout(`localclawd is managed by winget.
|
|
520890
520908
|
`);
|
|
520891
520909
|
const latest = await getLatestVersion(channel);
|
|
520892
|
-
if (latest && !gte("1.9.
|
|
520893
|
-
writeToStdout(`Update available: ${"1.9.
|
|
520910
|
+
if (latest && !gte("1.9.1", latest)) {
|
|
520911
|
+
writeToStdout(`Update available: ${"1.9.1"} → ${latest}
|
|
520894
520912
|
`);
|
|
520895
520913
|
writeToStdout(`
|
|
520896
520914
|
`);
|
|
@@ -520904,8 +520922,8 @@ async function update() {
|
|
|
520904
520922
|
writeToStdout(`localclawd is managed by apk.
|
|
520905
520923
|
`);
|
|
520906
520924
|
const latest = await getLatestVersion(channel);
|
|
520907
|
-
if (latest && !gte("1.9.
|
|
520908
|
-
writeToStdout(`Update available: ${"1.9.
|
|
520925
|
+
if (latest && !gte("1.9.1", latest)) {
|
|
520926
|
+
writeToStdout(`Update available: ${"1.9.1"} → ${latest}
|
|
520909
520927
|
`);
|
|
520910
520928
|
writeToStdout(`
|
|
520911
520929
|
`);
|
|
@@ -520970,11 +520988,11 @@ async function update() {
|
|
|
520970
520988
|
`);
|
|
520971
520989
|
await gracefulShutdown(1);
|
|
520972
520990
|
}
|
|
520973
|
-
if (result.latestVersion === "1.9.
|
|
520974
|
-
writeToStdout(source_default.green(`localclawd is up to date (${"1.9.
|
|
520991
|
+
if (result.latestVersion === "1.9.1") {
|
|
520992
|
+
writeToStdout(source_default.green(`localclawd is up to date (${"1.9.1"})`) + `
|
|
520975
520993
|
`);
|
|
520976
520994
|
} else {
|
|
520977
|
-
writeToStdout(source_default.green(`Successfully updated from ${"1.9.
|
|
520995
|
+
writeToStdout(source_default.green(`Successfully updated from ${"1.9.1"} to version ${result.latestVersion}`) + `
|
|
520978
520996
|
`);
|
|
520979
520997
|
await regenerateCompletionCache();
|
|
520980
520998
|
}
|
|
@@ -521034,12 +521052,12 @@ async function update() {
|
|
|
521034
521052
|
`);
|
|
521035
521053
|
await gracefulShutdown(1);
|
|
521036
521054
|
}
|
|
521037
|
-
if (latestVersion === "1.9.
|
|
521038
|
-
writeToStdout(source_default.green(`localclawd is up to date (${"1.9.
|
|
521055
|
+
if (latestVersion === "1.9.1") {
|
|
521056
|
+
writeToStdout(source_default.green(`localclawd is up to date (${"1.9.1"})`) + `
|
|
521039
521057
|
`);
|
|
521040
521058
|
await gracefulShutdown(0);
|
|
521041
521059
|
}
|
|
521042
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"1.9.
|
|
521060
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"1.9.1"})
|
|
521043
521061
|
`);
|
|
521044
521062
|
writeToStdout(`Installing update...
|
|
521045
521063
|
`);
|
|
@@ -521084,7 +521102,7 @@ async function update() {
|
|
|
521084
521102
|
logForDebugging(`update: Installation status: ${status2}`);
|
|
521085
521103
|
switch (status2) {
|
|
521086
521104
|
case "success":
|
|
521087
|
-
writeToStdout(source_default.green(`Successfully updated from ${"1.9.
|
|
521105
|
+
writeToStdout(source_default.green(`Successfully updated from ${"1.9.1"} to version ${latestVersion}`) + `
|
|
521088
521106
|
`);
|
|
521089
521107
|
await regenerateCompletionCache();
|
|
521090
521108
|
break;
|
|
@@ -522326,7 +522344,7 @@ Run with --debug for more details.
|
|
|
522326
522344
|
}
|
|
522327
522345
|
}
|
|
522328
522346
|
logForDiagnosticsNoPII("info", "started", {
|
|
522329
|
-
version: "1.9.
|
|
522347
|
+
version: "1.9.1",
|
|
522330
522348
|
is_native_binary: isInBundledMode()
|
|
522331
522349
|
});
|
|
522332
522350
|
registerCleanup(async () => {
|
|
@@ -523110,7 +523128,7 @@ Usage: localclawd --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
523110
523128
|
pendingHookMessages
|
|
523111
523129
|
}, renderAndRun);
|
|
523112
523130
|
}
|
|
523113
|
-
}).version("1.9.
|
|
523131
|
+
}).version("1.9.1 (localclawd)", "-v, --version", "Output the version number");
|
|
523114
523132
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
523115
523133
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
523116
523134
|
if (canUserConfigureAdvisor()) {
|
|
@@ -523624,7 +523642,7 @@ if (false) {}
|
|
|
523624
523642
|
async function main2() {
|
|
523625
523643
|
const args = process.argv.slice(2);
|
|
523626
523644
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
523627
|
-
console.log(`${"1.9.
|
|
523645
|
+
console.log(`${"1.9.1"} (localclawd)`);
|
|
523628
523646
|
return;
|
|
523629
523647
|
}
|
|
523630
523648
|
const {
|
|
@@ -523707,4 +523725,4 @@ localclawd crashed: ${msg}
|
|
|
523707
523725
|
process.exit(1);
|
|
523708
523726
|
});
|
|
523709
523727
|
|
|
523710
|
-
//# debugId=
|
|
523728
|
+
//# debugId=C4269632DEB59EC664756E2164756E21
|