langcli-com 0.1.2 → 0.1.3
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.js +91 -88
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -134818,6 +134818,9 @@ function getPublicModelDisplayName(model) {
|
|
|
134818
134818
|
if (model === "glm-5.1") {
|
|
134819
134819
|
return "GLM 5.1";
|
|
134820
134820
|
}
|
|
134821
|
+
if (model === "gpt-5.3-codex") {
|
|
134822
|
+
return "GPT 5.3 codex";
|
|
134823
|
+
}
|
|
134821
134824
|
return null;
|
|
134822
134825
|
}
|
|
134823
134826
|
function renderModelName(model) {
|
|
@@ -189422,7 +189425,7 @@ var init_auth2 = __esm(() => {
|
|
|
189422
189425
|
|
|
189423
189426
|
// src/utils/userAgent.ts
|
|
189424
189427
|
function getClaudeCodeUserAgent() {
|
|
189425
|
-
return `claude-code/${"0.1.
|
|
189428
|
+
return `claude-code/${"0.1.3"}`;
|
|
189426
189429
|
}
|
|
189427
189430
|
|
|
189428
189431
|
// src/utils/workloadContext.ts
|
|
@@ -189444,7 +189447,7 @@ function getUserAgent() {
|
|
|
189444
189447
|
const clientApp = process.env.CLAUDE_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}` : "";
|
|
189445
189448
|
const workload = getWorkload();
|
|
189446
189449
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
189447
|
-
return `langcli/${"0.1.
|
|
189450
|
+
return `langcli/${"0.1.3"} (${process.env.USER_TYPE}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
189448
189451
|
}
|
|
189449
189452
|
function getMCPUserAgent() {
|
|
189450
189453
|
const parts = [];
|
|
@@ -189458,7 +189461,7 @@ function getMCPUserAgent() {
|
|
|
189458
189461
|
parts.push(`client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}`);
|
|
189459
189462
|
}
|
|
189460
189463
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
189461
|
-
return `claude-code/${"0.1.
|
|
189464
|
+
return `claude-code/${"0.1.3"}${suffix}`;
|
|
189462
189465
|
}
|
|
189463
189466
|
function getWebFetchUserAgent() {
|
|
189464
189467
|
return `Claude-User (${getClaudeCodeUserAgent()}; +https://support.anthropic.com/)`;
|
|
@@ -189596,7 +189599,7 @@ var init_user = __esm(() => {
|
|
|
189596
189599
|
deviceId,
|
|
189597
189600
|
sessionId: getSessionId(),
|
|
189598
189601
|
email: getEmail(),
|
|
189599
|
-
appVersion: "0.1.
|
|
189602
|
+
appVersion: "0.1.3",
|
|
189600
189603
|
platform: getHostPlatformForAnalytics(),
|
|
189601
189604
|
organizationUuid,
|
|
189602
189605
|
accountUuid,
|
|
@@ -197290,7 +197293,7 @@ var init_metadata = __esm(() => {
|
|
|
197290
197293
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
197291
197294
|
WHITESPACE_REGEX = /\s+/;
|
|
197292
197295
|
getVersionBase = memoize_default(() => {
|
|
197293
|
-
const match = "0.1.
|
|
197296
|
+
const match = "0.1.3".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
197294
197297
|
return match ? match[0] : undefined;
|
|
197295
197298
|
});
|
|
197296
197299
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -197330,9 +197333,9 @@ var init_metadata = __esm(() => {
|
|
|
197330
197333
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
197331
197334
|
isClaudeCodeAction: isEnvTruthy(process.env.CLAUDE_CODE_ACTION),
|
|
197332
197335
|
isClaudeAiAuth: isClaudeAISubscriber(),
|
|
197333
|
-
version: "0.1.
|
|
197336
|
+
version: "0.1.3",
|
|
197334
197337
|
versionBase: getVersionBase(),
|
|
197335
|
-
buildTime: "2026-04-
|
|
197338
|
+
buildTime: "2026-04-10T09:09:45.867Z",
|
|
197336
197339
|
deploymentEnvironment: env4.detectDeploymentEnvironment(),
|
|
197337
197340
|
...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
|
|
197338
197341
|
githubEventName: process.env.GITHUB_EVENT_NAME,
|
|
@@ -198000,7 +198003,7 @@ function initialize1PEventLogging() {
|
|
|
198000
198003
|
const platform4 = getPlatform();
|
|
198001
198004
|
const attributes = {
|
|
198002
198005
|
[import_semantic_conventions.ATTR_SERVICE_NAME]: "claude-code",
|
|
198003
|
-
[import_semantic_conventions.ATTR_SERVICE_VERSION]: "0.1.
|
|
198006
|
+
[import_semantic_conventions.ATTR_SERVICE_VERSION]: "0.1.3"
|
|
198004
198007
|
};
|
|
198005
198008
|
if (platform4 === "wsl") {
|
|
198006
198009
|
const wslVersion = getWslVersion();
|
|
@@ -198027,7 +198030,7 @@ function initialize1PEventLogging() {
|
|
|
198027
198030
|
})
|
|
198028
198031
|
]
|
|
198029
198032
|
});
|
|
198030
|
-
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.anthropic.claude_code.events", "0.1.
|
|
198033
|
+
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.anthropic.claude_code.events", "0.1.3");
|
|
198031
198034
|
}
|
|
198032
198035
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
198033
198036
|
if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
|
|
@@ -199970,7 +199973,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
199970
199973
|
if (!isAttributionHeaderEnabled()) {
|
|
199971
199974
|
return "";
|
|
199972
199975
|
}
|
|
199973
|
-
const version6 = `${"0.1.
|
|
199976
|
+
const version6 = `${"0.1.3"}.${fingerprint}`;
|
|
199974
199977
|
const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
|
|
199975
199978
|
const cch = "";
|
|
199976
199979
|
const workload = getWorkload();
|
|
@@ -383171,7 +383174,7 @@ function getTelemetryAttributes() {
|
|
|
383171
383174
|
attributes["session.id"] = sessionId;
|
|
383172
383175
|
}
|
|
383173
383176
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
383174
|
-
attributes["app.version"] = "0.1.
|
|
383177
|
+
attributes["app.version"] = "0.1.3";
|
|
383175
383178
|
}
|
|
383176
383179
|
const oauthAccount = getOauthAccountInfo();
|
|
383177
383180
|
if (oauthAccount) {
|
|
@@ -406669,7 +406672,7 @@ function getInstallationEnv() {
|
|
|
406669
406672
|
return;
|
|
406670
406673
|
}
|
|
406671
406674
|
function getClaudeCodeVersion() {
|
|
406672
|
-
return "0.1.
|
|
406675
|
+
return "0.1.3";
|
|
406673
406676
|
}
|
|
406674
406677
|
async function getInstalledVSCodeExtensionVersion(command) {
|
|
406675
406678
|
const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
|
|
@@ -409392,7 +409395,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
409392
409395
|
const client5 = new Client({
|
|
409393
409396
|
name: "claude-code",
|
|
409394
409397
|
title: "Claude Code",
|
|
409395
|
-
version: "0.1.
|
|
409398
|
+
version: "0.1.3",
|
|
409396
409399
|
description: "Anthropic's agentic coding tool",
|
|
409397
409400
|
websiteUrl: PRODUCT_URL
|
|
409398
409401
|
}, {
|
|
@@ -409747,7 +409750,7 @@ var init_client9 = __esm(() => {
|
|
|
409747
409750
|
const client5 = new Client({
|
|
409748
409751
|
name: "claude-code",
|
|
409749
409752
|
title: "Claude Code",
|
|
409750
|
-
version: "0.1.
|
|
409753
|
+
version: "0.1.3",
|
|
409751
409754
|
description: "Anthropic's agentic coding tool",
|
|
409752
409755
|
websiteUrl: PRODUCT_URL
|
|
409753
409756
|
}, {
|
|
@@ -448207,7 +448210,7 @@ function initSentry() {
|
|
|
448207
448210
|
}
|
|
448208
448211
|
init3({
|
|
448209
448212
|
dsn,
|
|
448210
|
-
release: typeof MACRO !== "undefined" ? "0.1.
|
|
448213
|
+
release: typeof MACRO !== "undefined" ? "0.1.3" : undefined,
|
|
448211
448214
|
environment: typeof BUILD_ENV !== "undefined" ? BUILD_ENV : "development",
|
|
448212
448215
|
maxBreadcrumbs: 20,
|
|
448213
448216
|
sampleRate: 1,
|
|
@@ -487131,7 +487134,7 @@ async function initializeBetaTracing(resource) {
|
|
|
487131
487134
|
});
|
|
487132
487135
|
import_api_logs.logs.setGlobalLoggerProvider(loggerProvider);
|
|
487133
487136
|
setLoggerProvider(loggerProvider);
|
|
487134
|
-
const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "0.1.
|
|
487137
|
+
const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "0.1.3");
|
|
487135
487138
|
setEventLogger(eventLogger);
|
|
487136
487139
|
process.on("beforeExit", async () => {
|
|
487137
487140
|
await loggerProvider?.forceFlush();
|
|
@@ -487171,7 +487174,7 @@ async function initializeTelemetry() {
|
|
|
487171
487174
|
const platform7 = getPlatform();
|
|
487172
487175
|
const baseAttributes = {
|
|
487173
487176
|
[import_semantic_conventions11.ATTR_SERVICE_NAME]: "claude-code",
|
|
487174
|
-
[import_semantic_conventions11.ATTR_SERVICE_VERSION]: "0.1.
|
|
487177
|
+
[import_semantic_conventions11.ATTR_SERVICE_VERSION]: "0.1.3"
|
|
487175
487178
|
};
|
|
487176
487179
|
if (platform7 === "wsl") {
|
|
487177
487180
|
const wslVersion = getWslVersion();
|
|
@@ -487216,7 +487219,7 @@ async function initializeTelemetry() {
|
|
|
487216
487219
|
} catch {}
|
|
487217
487220
|
};
|
|
487218
487221
|
registerCleanup(shutdownTelemetry2);
|
|
487219
|
-
return meterProvider2.getMeter("com.anthropic.claude_code", "0.1.
|
|
487222
|
+
return meterProvider2.getMeter("com.anthropic.claude_code", "0.1.3");
|
|
487220
487223
|
}
|
|
487221
487224
|
const meterProvider = new import_sdk_metrics2.MeterProvider({
|
|
487222
487225
|
resource,
|
|
@@ -487236,7 +487239,7 @@ async function initializeTelemetry() {
|
|
|
487236
487239
|
});
|
|
487237
487240
|
import_api_logs.logs.setGlobalLoggerProvider(loggerProvider);
|
|
487238
487241
|
setLoggerProvider(loggerProvider);
|
|
487239
|
-
const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "0.1.
|
|
487242
|
+
const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "0.1.3");
|
|
487240
487243
|
setEventLogger(eventLogger);
|
|
487241
487244
|
logForDebugging("[3P telemetry] Event logger set successfully");
|
|
487242
487245
|
process.on("beforeExit", async () => {
|
|
@@ -487298,7 +487301,7 @@ Current timeout: ${timeoutMs}ms
|
|
|
487298
487301
|
}
|
|
487299
487302
|
};
|
|
487300
487303
|
registerCleanup(shutdownTelemetry);
|
|
487301
|
-
return meterProvider.getMeter("com.anthropic.claude_code", "0.1.
|
|
487304
|
+
return meterProvider.getMeter("com.anthropic.claude_code", "0.1.3");
|
|
487302
487305
|
}
|
|
487303
487306
|
async function flushTelemetry() {
|
|
487304
487307
|
const meterProvider = getMeterProvider();
|
|
@@ -487962,9 +487965,9 @@ async function assertMinVersion() {
|
|
|
487962
487965
|
if (false) {}
|
|
487963
487966
|
try {
|
|
487964
487967
|
const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
|
|
487965
|
-
if (versionConfig.minVersion && lt("0.1.
|
|
487968
|
+
if (versionConfig.minVersion && lt("0.1.3", versionConfig.minVersion)) {
|
|
487966
487969
|
console.error(`
|
|
487967
|
-
It looks like your version of Claude Code (${"0.1.
|
|
487970
|
+
It looks like your version of Claude Code (${"0.1.3"}) needs an update.
|
|
487968
487971
|
A newer version (${versionConfig.minVersion} or higher) is required to continue.
|
|
487969
487972
|
|
|
487970
487973
|
To update, please run:
|
|
@@ -488180,7 +488183,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
488180
488183
|
logError2(new AutoUpdaterError("Another process is currently installing an update"));
|
|
488181
488184
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
488182
488185
|
pid: process.pid,
|
|
488183
|
-
currentVersion: "0.1.
|
|
488186
|
+
currentVersion: "0.1.3"
|
|
488184
488187
|
});
|
|
488185
488188
|
return "in_progress";
|
|
488186
488189
|
}
|
|
@@ -488189,7 +488192,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
488189
488192
|
if (!env4.isRunningWithBun() && env4.isNpmFromWindowsPath()) {
|
|
488190
488193
|
logError2(new Error("Windows NPM detected in WSL environment"));
|
|
488191
488194
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
488192
|
-
currentVersion: "0.1.
|
|
488195
|
+
currentVersion: "0.1.3"
|
|
488193
488196
|
});
|
|
488194
488197
|
console.error(`
|
|
488195
488198
|
Error: Windows NPM detected in WSL
|
|
@@ -488722,7 +488725,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
488722
488725
|
}
|
|
488723
488726
|
async function getDoctorDiagnostic() {
|
|
488724
488727
|
const installationType = await getCurrentInstallationType();
|
|
488725
|
-
const version6 = typeof MACRO !== "undefined" ? "0.1.
|
|
488728
|
+
const version6 = typeof MACRO !== "undefined" ? "0.1.3" : "unknown";
|
|
488726
488729
|
const installationPath = await getInstallationPath();
|
|
488727
488730
|
const invokedBinary = getInvokedBinary();
|
|
488728
488731
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -489655,8 +489658,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
489655
489658
|
const maxVersion = await getMaxVersion();
|
|
489656
489659
|
if (maxVersion && gt(version6, maxVersion)) {
|
|
489657
489660
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version6} to ${maxVersion}`);
|
|
489658
|
-
if (gte("0.1.
|
|
489659
|
-
logForDebugging(`Native installer: current version ${"0.1.
|
|
489661
|
+
if (gte("0.1.3", maxVersion)) {
|
|
489662
|
+
logForDebugging(`Native installer: current version ${"0.1.3"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
489660
489663
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
489661
489664
|
latency_ms: Date.now() - startTime,
|
|
489662
489665
|
max_version: maxVersion,
|
|
@@ -489667,7 +489670,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
489667
489670
|
version6 = maxVersion;
|
|
489668
489671
|
}
|
|
489669
489672
|
}
|
|
489670
|
-
if (!forceReinstall && version6 === "0.1.
|
|
489673
|
+
if (!forceReinstall && version6 === "0.1.3" && await versionIsAvailable(version6) && await isPossibleClaudeBinary(executablePath)) {
|
|
489671
489674
|
logForDebugging(`Found ${version6} at ${executablePath}, skipping install`);
|
|
489672
489675
|
logEvent("tengu_native_update_complete", {
|
|
489673
489676
|
latency_ms: Date.now() - startTime,
|
|
@@ -579523,7 +579526,7 @@ function getAnthropicEnvMetadata() {
|
|
|
579523
579526
|
function getBuildAgeMinutes() {
|
|
579524
579527
|
if (false)
|
|
579525
579528
|
;
|
|
579526
|
-
const buildTime = new Date("2026-04-
|
|
579529
|
+
const buildTime = new Date("2026-04-10T09:09:45.867Z").getTime();
|
|
579527
579530
|
if (isNaN(buildTime))
|
|
579528
579531
|
return;
|
|
579529
579532
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -602617,7 +602620,7 @@ function Feedback({
|
|
|
602617
602620
|
platform: env4.platform,
|
|
602618
602621
|
gitRepo: envInfo.isGit,
|
|
602619
602622
|
terminal: env4.terminal,
|
|
602620
|
-
version: "0.1.
|
|
602623
|
+
version: "0.1.3",
|
|
602621
602624
|
transcript: normalizeMessagesForAPI(messages),
|
|
602622
602625
|
errors: sanitizedErrors,
|
|
602623
602626
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -602802,7 +602805,7 @@ function Feedback({
|
|
|
602802
602805
|
", ",
|
|
602803
602806
|
env4.terminal,
|
|
602804
602807
|
", v",
|
|
602805
|
-
"0.1.
|
|
602808
|
+
"0.1.3"
|
|
602806
602809
|
]
|
|
602807
602810
|
}, undefined, true, undefined, this)
|
|
602808
602811
|
]
|
|
@@ -602908,7 +602911,7 @@ ${sanitizedDescription}
|
|
|
602908
602911
|
` + `**Environment Info**
|
|
602909
602912
|
` + `- Platform: ${env4.platform}
|
|
602910
602913
|
` + `- Terminal: ${env4.terminal}
|
|
602911
|
-
` + `- Version: ${"0.1.
|
|
602914
|
+
` + `- Version: ${"0.1.3"}
|
|
602912
602915
|
` + `- Feedback ID: ${feedbackId}
|
|
602913
602916
|
` + `
|
|
602914
602917
|
**Errors**
|
|
@@ -605642,7 +605645,7 @@ function buildPrimarySection() {
|
|
|
605642
605645
|
children: "/rename to add a name"
|
|
605643
605646
|
}, undefined, false, undefined, this);
|
|
605644
605647
|
return [
|
|
605645
|
-
{ label: "Version", value: "0.1.
|
|
605648
|
+
{ label: "Version", value: "0.1.3" },
|
|
605646
605649
|
{ label: "Session name", value: nameValue },
|
|
605647
605650
|
{ label: "Session ID", value: sessionId },
|
|
605648
605651
|
{ label: "cwd", value: getCwd() },
|
|
@@ -608400,7 +608403,7 @@ function Config({
|
|
|
608400
608403
|
}
|
|
608401
608404
|
}, undefined, false, undefined, this)
|
|
608402
608405
|
}, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime175.jsxDEV(ChannelDowngradeDialog, {
|
|
608403
|
-
currentVersion: "0.1.
|
|
608406
|
+
currentVersion: "0.1.3",
|
|
608404
608407
|
onChoice: (choice) => {
|
|
608405
608408
|
setShowSubmenu(null);
|
|
608406
608409
|
setTabsHidden(false);
|
|
@@ -608412,7 +608415,7 @@ function Config({
|
|
|
608412
608415
|
autoUpdatesChannel: "stable"
|
|
608413
608416
|
};
|
|
608414
608417
|
if (choice === "stay") {
|
|
608415
|
-
newSettings.minimumVersion = "0.1.
|
|
608418
|
+
newSettings.minimumVersion = "0.1.3";
|
|
608416
608419
|
}
|
|
608417
608420
|
updateSettingsForSource("userSettings", newSettings);
|
|
608418
608421
|
setSettingsData((prev) => ({
|
|
@@ -613840,7 +613843,7 @@ function HelpV2({ onClose, commands }) {
|
|
|
613840
613843
|
color: "professionalBlue",
|
|
613841
613844
|
children: [
|
|
613842
613845
|
/* @__PURE__ */ jsx_dev_runtime202.jsxDEV(Tabs, {
|
|
613843
|
-
title: process.env.USER_TYPE === "ant" ? "/help" : `Langcli v${"0.1.
|
|
613846
|
+
title: process.env.USER_TYPE === "ant" ? "/help" : `Langcli v${"0.1.3"}`,
|
|
613844
613847
|
color: "professionalBlue",
|
|
613845
613848
|
defaultTab: "general",
|
|
613846
613849
|
children: tabs
|
|
@@ -633898,7 +633901,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
633898
633901
|
return [];
|
|
633899
633902
|
}
|
|
633900
633903
|
}
|
|
633901
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "0.1.
|
|
633904
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "0.1.3") {
|
|
633902
633905
|
if (process.env.USER_TYPE === "ant") {
|
|
633903
633906
|
const changelog = "";
|
|
633904
633907
|
if (changelog) {
|
|
@@ -633925,7 +633928,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "0.1.2") {
|
|
|
633925
633928
|
releaseNotes
|
|
633926
633929
|
};
|
|
633927
633930
|
}
|
|
633928
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "0.1.
|
|
633931
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "0.1.3") {
|
|
633929
633932
|
if (process.env.USER_TYPE === "ant") {
|
|
633930
633933
|
const changelog = "";
|
|
633931
633934
|
if (changelog) {
|
|
@@ -637008,7 +637011,7 @@ function getRecentActivitySync() {
|
|
|
637008
637011
|
return cachedActivity;
|
|
637009
637012
|
}
|
|
637010
637013
|
function getLogoDisplayData() {
|
|
637011
|
-
const version6 = process.env.DEMO_VERSION ?? "0.1.
|
|
637014
|
+
const version6 = process.env.DEMO_VERSION ?? "0.1.3";
|
|
637012
637015
|
const serverUrl = getDirectConnectServerUrl();
|
|
637013
637016
|
const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
|
|
637014
637017
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -638016,13 +638019,13 @@ function LogoV2() {
|
|
|
638016
638019
|
const { hasReleaseNotes } = checkForReleaseNotesSync(config7.lastReleaseNotesSeen);
|
|
638017
638020
|
import_react161.useEffect(() => {
|
|
638018
638021
|
const currentConfig = getGlobalConfig();
|
|
638019
|
-
if (currentConfig.lastReleaseNotesSeen === "0.1.
|
|
638022
|
+
if (currentConfig.lastReleaseNotesSeen === "0.1.3") {
|
|
638020
638023
|
return;
|
|
638021
638024
|
}
|
|
638022
638025
|
saveGlobalConfig((current) => {
|
|
638023
|
-
if (current.lastReleaseNotesSeen === "0.1.
|
|
638026
|
+
if (current.lastReleaseNotesSeen === "0.1.3")
|
|
638024
638027
|
return current;
|
|
638025
|
-
return { ...current, lastReleaseNotesSeen: "0.1.
|
|
638028
|
+
return { ...current, lastReleaseNotesSeen: "0.1.3" };
|
|
638026
638029
|
});
|
|
638027
638030
|
if (showOnboarding) {
|
|
638028
638031
|
incrementProjectOnboardingSeenCount();
|
|
@@ -655052,7 +655055,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
|
|
|
655052
655055
|
smapsRollup,
|
|
655053
655056
|
platform: process.platform,
|
|
655054
655057
|
nodeVersion: process.version,
|
|
655055
|
-
ccVersion: "0.1.
|
|
655058
|
+
ccVersion: "0.1.3"
|
|
655056
655059
|
};
|
|
655057
655060
|
}
|
|
655058
655061
|
async function performHeapDump(trigger = "manual", dumpNumber = 0) {
|
|
@@ -655638,7 +655641,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
655638
655641
|
var call53 = async () => {
|
|
655639
655642
|
return {
|
|
655640
655643
|
type: "text",
|
|
655641
|
-
value: `${"0.1.
|
|
655644
|
+
value: `${"0.1.3"} (built ${"2026-04-10T09:09:45.867Z"})`
|
|
655642
655645
|
};
|
|
655643
655646
|
}, version6, version_default;
|
|
655644
655647
|
var init_version2 = __esm(() => {
|
|
@@ -662986,7 +662989,7 @@ function generateHtmlReport(data, insights) {
|
|
|
662986
662989
|
</html>`;
|
|
662987
662990
|
}
|
|
662988
662991
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
662989
|
-
const version7 = typeof MACRO !== "undefined" ? "0.1.
|
|
662992
|
+
const version7 = typeof MACRO !== "undefined" ? "0.1.3" : "unknown";
|
|
662990
662993
|
const remote_hosts_collected = remoteStats?.hosts.filter((h3) => h3.sessionCount > 0).map((h3) => h3.name);
|
|
662991
662994
|
const facets_summary = {
|
|
662992
662995
|
total: facets.size,
|
|
@@ -667089,7 +667092,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
667089
667092
|
init_settings2();
|
|
667090
667093
|
init_slowOperations();
|
|
667091
667094
|
init_uuid();
|
|
667092
|
-
VERSION6 = typeof MACRO !== "undefined" ? "0.1.
|
|
667095
|
+
VERSION6 = typeof MACRO !== "undefined" ? "0.1.3" : "unknown";
|
|
667093
667096
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
667094
667097
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
667095
667098
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -668295,7 +668298,7 @@ var init_filesystem = __esm(() => {
|
|
|
668295
668298
|
});
|
|
668296
668299
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
668297
668300
|
const nonce = randomBytes19(16).toString("hex");
|
|
668298
|
-
return join142(getClaudeTempDir(), "bundled-skills", "0.1.
|
|
668301
|
+
return join142(getClaudeTempDir(), "bundled-skills", "0.1.3", nonce);
|
|
668299
668302
|
});
|
|
668300
668303
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
668301
668304
|
});
|
|
@@ -674325,7 +674328,7 @@ function computeFingerprint(messageText, version7) {
|
|
|
674325
674328
|
}
|
|
674326
674329
|
function computeFingerprintFromMessages(messages) {
|
|
674327
674330
|
const firstMessageText = extractFirstMessageText(messages);
|
|
674328
|
-
return computeFingerprint(firstMessageText, "0.1.
|
|
674331
|
+
return computeFingerprint(firstMessageText, "0.1.3");
|
|
674329
674332
|
}
|
|
674330
674333
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
674331
674334
|
var init_fingerprint = () => {};
|
|
@@ -683251,7 +683254,7 @@ async function sideQuery(opts) {
|
|
|
683251
683254
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
683252
683255
|
}
|
|
683253
683256
|
const messageText = extractFirstUserMessageText(messages);
|
|
683254
|
-
const fingerprint = computeFingerprint(messageText, "0.1.
|
|
683257
|
+
const fingerprint = computeFingerprint(messageText, "0.1.3");
|
|
683255
683258
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
683256
683259
|
const systemBlocks = [
|
|
683257
683260
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -687824,7 +687827,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
687824
687827
|
slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
|
|
687825
687828
|
apiKeySource: getAnthropicApiKeyWithSource().source,
|
|
687826
687829
|
betas: getSdkBetas(),
|
|
687827
|
-
claude_code_version: "0.1.
|
|
687830
|
+
claude_code_version: "0.1.3",
|
|
687828
687831
|
output_style: outputStyle2,
|
|
687829
687832
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
687830
687833
|
skills: inputs.skills.filter((s2) => s2.userInvocable !== false).map((skill) => skill.name),
|
|
@@ -698992,7 +698995,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
698992
698995
|
function getSemverPart(version7) {
|
|
698993
698996
|
return `${import_semver13.major(version7, { loose: true })}.${import_semver13.minor(version7, { loose: true })}.${import_semver13.patch(version7, { loose: true })}`;
|
|
698994
698997
|
}
|
|
698995
|
-
function useUpdateNotification(updatedVersion, initialVersion = "0.1.
|
|
698998
|
+
function useUpdateNotification(updatedVersion, initialVersion = "0.1.3") {
|
|
698996
698999
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react250.useState(() => getSemverPart(initialVersion));
|
|
698997
699000
|
if (!updatedVersion) {
|
|
698998
699001
|
return null;
|
|
@@ -699032,7 +699035,7 @@ function AutoUpdater({
|
|
|
699032
699035
|
return;
|
|
699033
699036
|
}
|
|
699034
699037
|
if (false) {}
|
|
699035
|
-
const currentVersion = "0.1.
|
|
699038
|
+
const currentVersion = "0.1.3";
|
|
699036
699039
|
const channel3 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
699037
699040
|
let latestVersion = await getLatestVersion(channel3);
|
|
699038
699041
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -699239,12 +699242,12 @@ function NativeAutoUpdater({
|
|
|
699239
699242
|
logEvent("tengu_native_auto_updater_start", {});
|
|
699240
699243
|
try {
|
|
699241
699244
|
const maxVersion = await getMaxVersion();
|
|
699242
|
-
if (maxVersion && gt("0.1.
|
|
699245
|
+
if (maxVersion && gt("0.1.3", maxVersion)) {
|
|
699243
699246
|
const msg = await getMaxVersionMessage();
|
|
699244
699247
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
699245
699248
|
}
|
|
699246
699249
|
const result = await installLatest(channel3);
|
|
699247
|
-
const currentVersion = "0.1.
|
|
699250
|
+
const currentVersion = "0.1.3";
|
|
699248
699251
|
const latencyMs = Date.now() - startTime;
|
|
699249
699252
|
if (result.lockFailed) {
|
|
699250
699253
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -699389,17 +699392,17 @@ function PackageManagerAutoUpdater({ verbose }) {
|
|
|
699389
699392
|
const maxVersion = await getMaxVersion();
|
|
699390
699393
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
699391
699394
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
699392
|
-
if (gte("0.1.
|
|
699393
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"0.1.
|
|
699395
|
+
if (gte("0.1.3", maxVersion)) {
|
|
699396
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"0.1.3"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
699394
699397
|
setUpdateAvailable(false);
|
|
699395
699398
|
return;
|
|
699396
699399
|
}
|
|
699397
699400
|
latest = maxVersion;
|
|
699398
699401
|
}
|
|
699399
|
-
const hasUpdate = latest && !gte("0.1.
|
|
699402
|
+
const hasUpdate = latest && !gte("0.1.3", latest) && !shouldSkipVersion(latest);
|
|
699400
699403
|
setUpdateAvailable(!!hasUpdate);
|
|
699401
699404
|
if (hasUpdate) {
|
|
699402
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"0.1.
|
|
699405
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"0.1.3"} -> ${latest}`);
|
|
699403
699406
|
}
|
|
699404
699407
|
}, []);
|
|
699405
699408
|
React152.useEffect(() => {
|
|
@@ -699417,7 +699420,7 @@ function PackageManagerAutoUpdater({ verbose }) {
|
|
|
699417
699420
|
wrap: "truncate",
|
|
699418
699421
|
children: [
|
|
699419
699422
|
"currentVersion: ",
|
|
699420
|
-
"0.1.
|
|
699423
|
+
"0.1.3"
|
|
699421
699424
|
]
|
|
699422
699425
|
}, undefined, true, undefined, this),
|
|
699423
699426
|
/* @__PURE__ */ jsx_dev_runtime405.jsxDEV(ThemedText, {
|
|
@@ -704778,7 +704781,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
704778
704781
|
project_dir: getOriginalCwd(),
|
|
704779
704782
|
added_dirs: addedDirs
|
|
704780
704783
|
},
|
|
704781
|
-
version: "0.1.
|
|
704784
|
+
version: "0.1.3",
|
|
704782
704785
|
output_style: {
|
|
704783
704786
|
name: outputStyleName
|
|
704784
704787
|
},
|
|
@@ -723691,7 +723694,7 @@ async function submitTranscriptShare(messages, trigger, appearanceId) {
|
|
|
723691
723694
|
} catch {}
|
|
723692
723695
|
const data = {
|
|
723693
723696
|
trigger,
|
|
723694
|
-
version: "0.1.
|
|
723697
|
+
version: "0.1.3",
|
|
723695
723698
|
platform: process.platform,
|
|
723696
723699
|
transcript,
|
|
723697
723700
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -734213,7 +734216,7 @@ function WelcomeV2() {
|
|
|
734213
734216
|
dimColor: true,
|
|
734214
734217
|
children: [
|
|
734215
734218
|
"v",
|
|
734216
|
-
"0.1.
|
|
734219
|
+
"0.1.3",
|
|
734217
734220
|
" "
|
|
734218
734221
|
]
|
|
734219
734222
|
}, undefined, true, undefined, this)
|
|
@@ -734330,7 +734333,7 @@ function WelcomeV2() {
|
|
|
734330
734333
|
dimColor: true,
|
|
734331
734334
|
children: [
|
|
734332
734335
|
"v",
|
|
734333
|
-
"0.1.
|
|
734336
|
+
"0.1.3",
|
|
734334
734337
|
" "
|
|
734335
734338
|
]
|
|
734336
734339
|
}, undefined, true, undefined, this)
|
|
@@ -734466,7 +734469,7 @@ function AppleTerminalWelcomeV2({
|
|
|
734466
734469
|
dimColor: true,
|
|
734467
734470
|
children: [
|
|
734468
734471
|
"v",
|
|
734469
|
-
"0.1.
|
|
734472
|
+
"0.1.3",
|
|
734470
734473
|
" "
|
|
734471
734474
|
]
|
|
734472
734475
|
}, undefined, true, undefined, this)
|
|
@@ -734611,7 +734614,7 @@ function AppleTerminalWelcomeV2({
|
|
|
734611
734614
|
dimColor: true,
|
|
734612
734615
|
children: [
|
|
734613
734616
|
"v",
|
|
734614
|
-
"0.1.
|
|
734617
|
+
"0.1.3",
|
|
734615
734618
|
" "
|
|
734616
734619
|
]
|
|
734617
734620
|
}, undefined, true, undefined, this)
|
|
@@ -735583,7 +735586,7 @@ function completeOnboarding() {
|
|
|
735583
735586
|
saveGlobalConfig((current) => ({
|
|
735584
735587
|
...current,
|
|
735585
735588
|
hasCompletedOnboarding: true,
|
|
735586
|
-
lastOnboardingVersion: "0.1.
|
|
735589
|
+
lastOnboardingVersion: "0.1.3"
|
|
735587
735590
|
}));
|
|
735588
735591
|
}
|
|
735589
735592
|
function showDialog(root2, renderer) {
|
|
@@ -739861,7 +739864,7 @@ function appendToLog(path29, message) {
|
|
|
739861
739864
|
cwd: getFsImplementation().cwd(),
|
|
739862
739865
|
userType: process.env.USER_TYPE,
|
|
739863
739866
|
sessionId: getSessionId(),
|
|
739864
|
-
version: "0.1.
|
|
739867
|
+
version: "0.1.3"
|
|
739865
739868
|
};
|
|
739866
739869
|
getLogWriter(path29).write(messageWithTimestamp);
|
|
739867
739870
|
}
|
|
@@ -744307,8 +744310,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
744307
744310
|
}
|
|
744308
744311
|
async function checkEnvLessBridgeMinVersion() {
|
|
744309
744312
|
const cfg = await getEnvLessBridgeConfig();
|
|
744310
|
-
if (cfg.min_version && lt("0.1.
|
|
744311
|
-
return `Your version of Claude Code (${"0.1.
|
|
744313
|
+
if (cfg.min_version && lt("0.1.3", cfg.min_version)) {
|
|
744314
|
+
return `Your version of Claude Code (${"0.1.3"}) is too old for Remote Control.
|
|
744312
744315
|
Version ${cfg.min_version} or higher is required. Run \`claude update\` to update.`;
|
|
744313
744316
|
}
|
|
744314
744317
|
return null;
|
|
@@ -744782,7 +744785,7 @@ async function initBridgeCore(params) {
|
|
|
744782
744785
|
const rawApi = createBridgeApiClient({
|
|
744783
744786
|
baseUrl,
|
|
744784
744787
|
getAccessToken,
|
|
744785
|
-
runnerVersion: "0.1.
|
|
744788
|
+
runnerVersion: "0.1.3",
|
|
744786
744789
|
onDebug: logForDebugging,
|
|
744787
744790
|
onAuth401,
|
|
744788
744791
|
getTrustedDeviceToken
|
|
@@ -749871,7 +749874,7 @@ async function startMCPServer(cwd3, debug5, verbose) {
|
|
|
749871
749874
|
setCwd(cwd3);
|
|
749872
749875
|
const server = new Server({
|
|
749873
749876
|
name: "claude/tengu",
|
|
749874
|
-
version: "0.1.
|
|
749877
|
+
version: "0.1.3"
|
|
749875
749878
|
}, {
|
|
749876
749879
|
capabilities: {
|
|
749877
749880
|
tools: {}
|
|
@@ -751392,7 +751395,7 @@ __export(exports_update, {
|
|
|
751392
751395
|
});
|
|
751393
751396
|
async function update() {
|
|
751394
751397
|
logEvent("tengu_update_check", {});
|
|
751395
|
-
writeToStdout(`Current version: ${"0.1.
|
|
751398
|
+
writeToStdout(`Current version: ${"0.1.3"}
|
|
751396
751399
|
`);
|
|
751397
751400
|
const channel3 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
751398
751401
|
writeToStdout(`Checking for updates to ${channel3} version...
|
|
@@ -751467,8 +751470,8 @@ async function update() {
|
|
|
751467
751470
|
writeToStdout(`Claude is managed by Homebrew.
|
|
751468
751471
|
`);
|
|
751469
751472
|
const latest = await getLatestVersion(channel3);
|
|
751470
|
-
if (latest && !gte("0.1.
|
|
751471
|
-
writeToStdout(`Update available: ${"0.1.
|
|
751473
|
+
if (latest && !gte("0.1.3", latest)) {
|
|
751474
|
+
writeToStdout(`Update available: ${"0.1.3"} → ${latest}
|
|
751472
751475
|
`);
|
|
751473
751476
|
writeToStdout(`
|
|
751474
751477
|
`);
|
|
@@ -751484,8 +751487,8 @@ async function update() {
|
|
|
751484
751487
|
writeToStdout(`Claude is managed by winget.
|
|
751485
751488
|
`);
|
|
751486
751489
|
const latest = await getLatestVersion(channel3);
|
|
751487
|
-
if (latest && !gte("0.1.
|
|
751488
|
-
writeToStdout(`Update available: ${"0.1.
|
|
751490
|
+
if (latest && !gte("0.1.3", latest)) {
|
|
751491
|
+
writeToStdout(`Update available: ${"0.1.3"} → ${latest}
|
|
751489
751492
|
`);
|
|
751490
751493
|
writeToStdout(`
|
|
751491
751494
|
`);
|
|
@@ -751501,8 +751504,8 @@ async function update() {
|
|
|
751501
751504
|
writeToStdout(`Claude is managed by apk.
|
|
751502
751505
|
`);
|
|
751503
751506
|
const latest = await getLatestVersion(channel3);
|
|
751504
|
-
if (latest && !gte("0.1.
|
|
751505
|
-
writeToStdout(`Update available: ${"0.1.
|
|
751507
|
+
if (latest && !gte("0.1.3", latest)) {
|
|
751508
|
+
writeToStdout(`Update available: ${"0.1.3"} → ${latest}
|
|
751506
751509
|
`);
|
|
751507
751510
|
writeToStdout(`
|
|
751508
751511
|
`);
|
|
@@ -751567,11 +751570,11 @@ async function update() {
|
|
|
751567
751570
|
`);
|
|
751568
751571
|
await gracefulShutdown(1);
|
|
751569
751572
|
}
|
|
751570
|
-
if (result.latestVersion === "0.1.
|
|
751571
|
-
writeToStdout(source_default.green(`Claude Code is up to date (${"0.1.
|
|
751573
|
+
if (result.latestVersion === "0.1.3") {
|
|
751574
|
+
writeToStdout(source_default.green(`Claude Code is up to date (${"0.1.3"})`) + `
|
|
751572
751575
|
`);
|
|
751573
751576
|
} else {
|
|
751574
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.1.
|
|
751577
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.1.3"} to version ${result.latestVersion}`) + `
|
|
751575
751578
|
`);
|
|
751576
751579
|
await regenerateCompletionCache();
|
|
751577
751580
|
}
|
|
@@ -751628,12 +751631,12 @@ async function update() {
|
|
|
751628
751631
|
`);
|
|
751629
751632
|
await gracefulShutdown(1);
|
|
751630
751633
|
}
|
|
751631
|
-
if (latestVersion === "0.1.
|
|
751632
|
-
writeToStdout(source_default.green(`Claude Code is up to date (${"0.1.
|
|
751634
|
+
if (latestVersion === "0.1.3") {
|
|
751635
|
+
writeToStdout(source_default.green(`Claude Code is up to date (${"0.1.3"})`) + `
|
|
751633
751636
|
`);
|
|
751634
751637
|
await gracefulShutdown(0);
|
|
751635
751638
|
}
|
|
751636
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"0.1.
|
|
751639
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"0.1.3"})
|
|
751637
751640
|
`);
|
|
751638
751641
|
writeToStdout(`Installing update...
|
|
751639
751642
|
`);
|
|
@@ -751678,7 +751681,7 @@ async function update() {
|
|
|
751678
751681
|
logForDebugging(`update: Installation status: ${status2}`);
|
|
751679
751682
|
switch (status2) {
|
|
751680
751683
|
case "success":
|
|
751681
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.1.
|
|
751684
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.1.3"} to version ${latestVersion}`) + `
|
|
751682
751685
|
`);
|
|
751683
751686
|
await regenerateCompletionCache();
|
|
751684
751687
|
break;
|
|
@@ -752903,7 +752906,7 @@ ${customInstructions}` : customInstructions;
|
|
|
752903
752906
|
}
|
|
752904
752907
|
}
|
|
752905
752908
|
logForDiagnosticsNoPII("info", "started", {
|
|
752906
|
-
version: "0.1.
|
|
752909
|
+
version: "0.1.3",
|
|
752907
752910
|
is_native_binary: isInBundledMode()
|
|
752908
752911
|
});
|
|
752909
752912
|
registerCleanup(async () => {
|
|
@@ -753705,7 +753708,7 @@ Usage: claude --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
753705
753708
|
pendingHookMessages
|
|
753706
753709
|
}, renderAndRun);
|
|
753707
753710
|
}
|
|
753708
|
-
}).version("0.1.
|
|
753711
|
+
}).version("0.1.3 (Claude Code)", "-v, --version", "Output the version number");
|
|
753709
753712
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
753710
753713
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
753711
753714
|
if (canUserConfigureAdvisor()) {
|
|
@@ -754234,7 +754237,7 @@ if (false) {}
|
|
|
754234
754237
|
async function main2() {
|
|
754235
754238
|
const args = process.argv.slice(2);
|
|
754236
754239
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
754237
|
-
console.log(`${"0.1.
|
|
754240
|
+
console.log(`${"0.1.3"} (Claude Code)`);
|
|
754238
754241
|
return;
|
|
754239
754242
|
}
|
|
754240
754243
|
const { profileCheckpoint: profileCheckpoint2 } = await Promise.resolve().then(() => (init_startupProfiler(), exports_startupProfiler));
|