@rayu-dev/rayu-cli 1.3.448 → 1.3.449
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/rayu.js +82 -82
- package/package.json +1 -1
package/dist/rayu.js
CHANGED
|
@@ -148367,7 +148367,7 @@ var init_auth = __esm(() => {
|
|
|
148367
148367
|
|
|
148368
148368
|
// src/utils/userAgent.ts
|
|
148369
148369
|
function getRayuUserAgent() {
|
|
148370
|
-
return `rayu/${"1.3.
|
|
148370
|
+
return `rayu/${"1.3.449"}`;
|
|
148371
148371
|
}
|
|
148372
148372
|
var getClaudeCodeUserAgent;
|
|
148373
148373
|
var init_userAgent = __esm(() => {
|
|
@@ -148393,7 +148393,7 @@ function getUserAgent() {
|
|
|
148393
148393
|
const clientApp = process.env.RAYU_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.RAYU_AGENT_SDK_CLIENT_APP}` : "";
|
|
148394
148394
|
const workload = getWorkload();
|
|
148395
148395
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
148396
|
-
return `rayu/${"1.3.
|
|
148396
|
+
return `rayu/${"1.3.449"} (${"external"}, ${process.env.RAYU_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
148397
148397
|
}
|
|
148398
148398
|
function getMCPUserAgent() {
|
|
148399
148399
|
const parts = [];
|
|
@@ -148407,7 +148407,7 @@ function getMCPUserAgent() {
|
|
|
148407
148407
|
parts.push(`client-app/${process.env.RAYU_AGENT_SDK_CLIENT_APP}`);
|
|
148408
148408
|
}
|
|
148409
148409
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
148410
|
-
return `rayu/${"1.3.
|
|
148410
|
+
return `rayu/${"1.3.449"}${suffix}`;
|
|
148411
148411
|
}
|
|
148412
148412
|
function getWebFetchUserAgent() {
|
|
148413
148413
|
return `Rayu-User (${getRayuUserAgent()})`;
|
|
@@ -148530,7 +148530,7 @@ var init_user = __esm(() => {
|
|
|
148530
148530
|
deviceId,
|
|
148531
148531
|
sessionId: getSessionId(),
|
|
148532
148532
|
email: getEmail(),
|
|
148533
|
-
appVersion: "1.3.
|
|
148533
|
+
appVersion: "1.3.449",
|
|
148534
148534
|
platform: getHostPlatformForAnalytics(),
|
|
148535
148535
|
organizationUuid,
|
|
148536
148536
|
accountUuid,
|
|
@@ -184625,7 +184625,7 @@ var init_metadata = __esm(() => {
|
|
|
184625
184625
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
184626
184626
|
WHITESPACE_REGEX = /\s+/;
|
|
184627
184627
|
getVersionBase = memoize_default(() => {
|
|
184628
|
-
const match = "1.3.
|
|
184628
|
+
const match = "1.3.449".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
184629
184629
|
return match ? match[0] : undefined;
|
|
184630
184630
|
});
|
|
184631
184631
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -184664,7 +184664,7 @@ var init_metadata = __esm(() => {
|
|
|
184664
184664
|
},
|
|
184665
184665
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
184666
184666
|
isRayuAction: isEnvTruthy(process.env.RAYU_ACTION),
|
|
184667
|
-
version: "1.3.
|
|
184667
|
+
version: "1.3.449",
|
|
184668
184668
|
versionBase: getVersionBase(),
|
|
184669
184669
|
buildTime: "",
|
|
184670
184670
|
deploymentEnvironment: env4.detectDeploymentEnvironment(),
|
|
@@ -185276,7 +185276,7 @@ function initialize1PEventLogging() {
|
|
|
185276
185276
|
const platform2 = getPlatform();
|
|
185277
185277
|
const attributes = {
|
|
185278
185278
|
[import_semantic_conventions.ATTR_SERVICE_NAME]: "rayu",
|
|
185279
|
-
[import_semantic_conventions.ATTR_SERVICE_VERSION]: "1.3.
|
|
185279
|
+
[import_semantic_conventions.ATTR_SERVICE_VERSION]: "1.3.449"
|
|
185280
185280
|
};
|
|
185281
185281
|
if (platform2 === "wsl") {
|
|
185282
185282
|
const wslVersion = getWslVersion();
|
|
@@ -185303,7 +185303,7 @@ function initialize1PEventLogging() {
|
|
|
185303
185303
|
})
|
|
185304
185304
|
]
|
|
185305
185305
|
});
|
|
185306
|
-
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("io.rayu.events", "1.3.
|
|
185306
|
+
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("io.rayu.events", "1.3.449");
|
|
185307
185307
|
}
|
|
185308
185308
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
185309
185309
|
if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
|
|
@@ -216974,7 +216974,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
216974
216974
|
if (!isAttributionHeaderEnabled()) {
|
|
216975
216975
|
return "";
|
|
216976
216976
|
}
|
|
216977
|
-
const version2 = `${"1.3.
|
|
216977
|
+
const version2 = `${"1.3.449"}.${fingerprint}`;
|
|
216978
216978
|
const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
|
|
216979
216979
|
const cch = "";
|
|
216980
216980
|
const workload = getWorkload();
|
|
@@ -301958,7 +301958,7 @@ function getTelemetryAttributes() {
|
|
|
301958
301958
|
attributes["session.id"] = sessionId;
|
|
301959
301959
|
}
|
|
301960
301960
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
301961
|
-
attributes["app.version"] = "1.3.
|
|
301961
|
+
attributes["app.version"] = "1.3.449";
|
|
301962
301962
|
}
|
|
301963
301963
|
const oauthAccount = getOauthAccountInfo();
|
|
301964
301964
|
if (oauthAccount) {
|
|
@@ -412321,7 +412321,7 @@ function getInstallationEnv() {
|
|
|
412321
412321
|
return;
|
|
412322
412322
|
}
|
|
412323
412323
|
function getClaudeCodeVersion() {
|
|
412324
|
-
return "1.3.
|
|
412324
|
+
return "1.3.449";
|
|
412325
412325
|
}
|
|
412326
412326
|
async function getInstalledVSCodeExtensionVersion(command) {
|
|
412327
412327
|
const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
|
|
@@ -417559,7 +417559,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
417559
417559
|
const client4 = new Client({
|
|
417560
417560
|
name: "claude-code",
|
|
417561
417561
|
title: "RAYU",
|
|
417562
|
-
version: "1.3.
|
|
417562
|
+
version: "1.3.449",
|
|
417563
417563
|
description: "Anthropic's agentic coding tool",
|
|
417564
417564
|
websiteUrl: PRODUCT_URL
|
|
417565
417565
|
}, {
|
|
@@ -417876,7 +417876,7 @@ var init_client7 = __esm(() => {
|
|
|
417876
417876
|
const client4 = new Client({
|
|
417877
417877
|
name: "claude-code",
|
|
417878
417878
|
title: "RAYU",
|
|
417879
|
-
version: "1.3.
|
|
417879
|
+
version: "1.3.449",
|
|
417880
417880
|
description: "Anthropic's agentic coding tool",
|
|
417881
417881
|
websiteUrl: PRODUCT_URL
|
|
417882
417882
|
}, {
|
|
@@ -432681,7 +432681,7 @@ function computeFingerprint(messageText, version2) {
|
|
|
432681
432681
|
}
|
|
432682
432682
|
function computeFingerprintFromMessages(messages) {
|
|
432683
432683
|
const firstMessageText = extractFirstMessageText(messages);
|
|
432684
|
-
return computeFingerprint(firstMessageText, "1.3.
|
|
432684
|
+
return computeFingerprint(firstMessageText, "1.3.449");
|
|
432685
432685
|
}
|
|
432686
432686
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
432687
432687
|
var init_fingerprint = () => {};
|
|
@@ -432723,7 +432723,7 @@ async function sideQuery(opts) {
|
|
|
432723
432723
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
432724
432724
|
}
|
|
432725
432725
|
const messageText = extractFirstUserMessageText(messages);
|
|
432726
|
-
const fingerprint = computeFingerprint(messageText, "1.3.
|
|
432726
|
+
const fingerprint = computeFingerprint(messageText, "1.3.449");
|
|
432727
432727
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
432728
432728
|
const systemBlocks = [
|
|
432729
432729
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -528055,7 +528055,7 @@ function Feedback({
|
|
|
528055
528055
|
platform: env4.platform,
|
|
528056
528056
|
gitRepo: envInfo.isGit,
|
|
528057
528057
|
terminal: env4.terminal,
|
|
528058
|
-
version: "1.3.
|
|
528058
|
+
version: "1.3.449",
|
|
528059
528059
|
transcript: normalizeMessagesForAPI(messages),
|
|
528060
528060
|
errors: sanitizedErrors,
|
|
528061
528061
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -528247,7 +528247,7 @@ function Feedback({
|
|
|
528247
528247
|
", ",
|
|
528248
528248
|
env4.terminal,
|
|
528249
528249
|
", v",
|
|
528250
|
-
"1.3.
|
|
528250
|
+
"1.3.449"
|
|
528251
528251
|
]
|
|
528252
528252
|
})
|
|
528253
528253
|
]
|
|
@@ -528353,7 +528353,7 @@ ${sanitizedDescription}
|
|
|
528353
528353
|
` + `**Environment Info**
|
|
528354
528354
|
` + `- Platform: ${env4.platform}
|
|
528355
528355
|
` + `- Terminal: ${env4.terminal}
|
|
528356
|
-
` + `- Version: ${"1.3.
|
|
528356
|
+
` + `- Version: ${"1.3.449"}
|
|
528357
528357
|
` + `- Feedback ID: ${feedbackId}
|
|
528358
528358
|
` + `
|
|
528359
528359
|
**Errors**
|
|
@@ -531193,9 +531193,9 @@ async function assertMinVersion() {
|
|
|
531193
531193
|
if (false) {}
|
|
531194
531194
|
try {
|
|
531195
531195
|
const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
|
|
531196
|
-
if (versionConfig.minVersion && lt("1.3.
|
|
531196
|
+
if (versionConfig.minVersion && lt("1.3.449", versionConfig.minVersion)) {
|
|
531197
531197
|
console.error(`
|
|
531198
|
-
It looks like your version of RAYU (${"1.3.
|
|
531198
|
+
It looks like your version of RAYU (${"1.3.449"}) needs an update.
|
|
531199
531199
|
A newer version (${versionConfig.minVersion} or higher) is required to continue.
|
|
531200
531200
|
|
|
531201
531201
|
To update, please run:
|
|
@@ -531421,7 +531421,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
531421
531421
|
logError2(new AutoUpdaterError("Another process is currently installing an update"));
|
|
531422
531422
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
531423
531423
|
pid: process.pid,
|
|
531424
|
-
currentVersion: "1.3.
|
|
531424
|
+
currentVersion: "1.3.449"
|
|
531425
531425
|
});
|
|
531426
531426
|
return "in_progress";
|
|
531427
531427
|
}
|
|
@@ -531430,7 +531430,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
531430
531430
|
if (!env4.isRunningWithBun() && env4.isNpmFromWindowsPath()) {
|
|
531431
531431
|
logError2(new Error("Windows NPM detected in WSL environment"));
|
|
531432
531432
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
531433
|
-
currentVersion: "1.3.
|
|
531433
|
+
currentVersion: "1.3.449"
|
|
531434
531434
|
});
|
|
531435
531435
|
console.error(`
|
|
531436
531436
|
Error: Windows NPM detected in WSL
|
|
@@ -531962,7 +531962,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
531962
531962
|
}
|
|
531963
531963
|
async function getDoctorDiagnostic() {
|
|
531964
531964
|
const installationType = await getCurrentInstallationType();
|
|
531965
|
-
const version2 = typeof MACRO !== "undefined" ? "1.3.
|
|
531965
|
+
const version2 = typeof MACRO !== "undefined" ? "1.3.449" : "unknown";
|
|
531966
531966
|
const installationPath = await getInstallationPath();
|
|
531967
531967
|
const invokedBinary = getInvokedBinary();
|
|
531968
531968
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -532757,8 +532757,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
532757
532757
|
const maxVersion = await getMaxVersion();
|
|
532758
532758
|
if (maxVersion && gt(version2, maxVersion)) {
|
|
532759
532759
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
|
|
532760
|
-
if (gte("1.3.
|
|
532761
|
-
logForDebugging(`Native installer: current version ${"1.3.
|
|
532760
|
+
if (gte("1.3.449", maxVersion)) {
|
|
532761
|
+
logForDebugging(`Native installer: current version ${"1.3.449"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
532762
532762
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
532763
532763
|
latency_ms: Date.now() - startTime2,
|
|
532764
532764
|
max_version: maxVersion,
|
|
@@ -532769,7 +532769,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
532769
532769
|
version2 = maxVersion;
|
|
532770
532770
|
}
|
|
532771
532771
|
}
|
|
532772
|
-
if (!forceReinstall && version2 === "1.3.
|
|
532772
|
+
if (!forceReinstall && version2 === "1.3.449" && await versionIsAvailable(version2) && await isPossibleClaudeBinary(executablePath)) {
|
|
532773
532773
|
logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
|
|
532774
532774
|
logEvent("tengu_native_update_complete", {
|
|
532775
532775
|
latency_ms: Date.now() - startTime2,
|
|
@@ -533965,7 +533965,7 @@ function buildPrimarySection() {
|
|
|
533965
533965
|
});
|
|
533966
533966
|
return [{
|
|
533967
533967
|
label: "Version",
|
|
533968
|
-
value: "1.3.
|
|
533968
|
+
value: "1.3.449"
|
|
533969
533969
|
}, {
|
|
533970
533970
|
label: "Session name",
|
|
533971
533971
|
value: nameValue
|
|
@@ -537656,7 +537656,7 @@ function Config({
|
|
|
537656
537656
|
}
|
|
537657
537657
|
})
|
|
537658
537658
|
}) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_runtime170.jsx(ChannelDowngradeDialog, {
|
|
537659
|
-
currentVersion: "1.3.
|
|
537659
|
+
currentVersion: "1.3.449",
|
|
537660
537660
|
onChoice: (choice) => {
|
|
537661
537661
|
setShowSubmenu(null);
|
|
537662
537662
|
setTabsHidden(false);
|
|
@@ -537668,7 +537668,7 @@ function Config({
|
|
|
537668
537668
|
autoUpdatesChannel: "stable"
|
|
537669
537669
|
};
|
|
537670
537670
|
if (choice === "stay") {
|
|
537671
|
-
newSettings.minimumVersion = "1.3.
|
|
537671
|
+
newSettings.minimumVersion = "1.3.449";
|
|
537672
537672
|
}
|
|
537673
537673
|
updateSettingsForSource("userSettings", newSettings);
|
|
537674
537674
|
setSettingsData((prev_27) => ({
|
|
@@ -545730,7 +545730,7 @@ function HelpV2(t0) {
|
|
|
545730
545730
|
let t6;
|
|
545731
545731
|
if ($3[31] !== tabs) {
|
|
545732
545732
|
t6 = /* @__PURE__ */ jsx_runtime197.jsx(Tabs, {
|
|
545733
|
-
title: `Rayu-CLI v${"1.3.
|
|
545733
|
+
title: `Rayu-CLI v${"1.3.449"}`,
|
|
545734
545734
|
color: "professionalBlue",
|
|
545735
545735
|
defaultTab: "general",
|
|
545736
545736
|
children: tabs
|
|
@@ -565817,7 +565817,7 @@ function getRecentReleaseNotes(currentVersion, previousVersion, changelogContent
|
|
|
565817
565817
|
}
|
|
565818
565818
|
return [];
|
|
565819
565819
|
}
|
|
565820
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.3.
|
|
565820
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.3.449") {
|
|
565821
565821
|
if (false) {}
|
|
565822
565822
|
const cachedChangelog = await getStoredChangelog();
|
|
565823
565823
|
if (lastSeenVersion !== currentVersion || !cachedChangelog) {
|
|
@@ -565830,7 +565830,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.3.448")
|
|
|
565830
565830
|
releaseNotes
|
|
565831
565831
|
};
|
|
565832
565832
|
}
|
|
565833
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.3.
|
|
565833
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.3.449") {
|
|
565834
565834
|
if (false) {}
|
|
565835
565835
|
const releaseNotes = getRecentReleaseNotes(currentVersion, lastSeenVersion);
|
|
565836
565836
|
return {
|
|
@@ -565958,7 +565958,7 @@ function getRecentActivitySync() {
|
|
|
565958
565958
|
return cachedActivity;
|
|
565959
565959
|
}
|
|
565960
565960
|
function getLogoDisplayData() {
|
|
565961
|
-
const version2 = process.env.DEMO_VERSION ?? "1.3.
|
|
565961
|
+
const version2 = process.env.DEMO_VERSION ?? "1.3.449";
|
|
565962
565962
|
const serverUrl = getDirectConnectServerUrl();
|
|
565963
565963
|
const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
|
|
565964
565964
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -567205,7 +567205,7 @@ function LogoV2() {
|
|
|
567205
567205
|
if ($3[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
567206
567206
|
t2 = () => {
|
|
567207
567207
|
const currentConfig = getGlobalConfig();
|
|
567208
|
-
if (currentConfig.lastReleaseNotesSeen === "1.3.
|
|
567208
|
+
if (currentConfig.lastReleaseNotesSeen === "1.3.449") {
|
|
567209
567209
|
return;
|
|
567210
567210
|
}
|
|
567211
567211
|
saveGlobalConfig(_temp327);
|
|
@@ -567683,7 +567683,7 @@ function LogoV2() {
|
|
|
567683
567683
|
t24 = $3[61];
|
|
567684
567684
|
}
|
|
567685
567685
|
const _latestNpm = getCachedLatestNpmVersionSync();
|
|
567686
|
-
const _updateFeeds = _latestNpm && gt(_latestNpm, "1.3.
|
|
567686
|
+
const _updateFeeds = _latestNpm && gt(_latestNpm, "1.3.449") ? [createUpdateAvailableFeed("1.3.449", _latestNpm)] : [];
|
|
567687
567687
|
const t25 = layoutMode === "horizontal" && /* @__PURE__ */ jsx_runtime239.jsx(FeedColumn, {
|
|
567688
567688
|
feeds: showOnboarding ? [createProjectOnboardingFeed(getSteps()), createRecentActivityFeed(activities)] : showGuestPassesUpsell ? [createRecentActivityFeed(activities), createGuestPassesFeed()] : showOverageCreditUpsell ? [createRecentActivityFeed(activities), createOverageCreditFeed()] : [createRecentActivityFeed(activities), ..._updateFeeds, createWhatsNewFeed(changelog)],
|
|
567689
567689
|
maxWidth: rightWidth
|
|
@@ -567883,12 +567883,12 @@ function LogoV2() {
|
|
|
567883
567883
|
return t41;
|
|
567884
567884
|
}
|
|
567885
567885
|
function _temp327(current) {
|
|
567886
|
-
if (current.lastReleaseNotesSeen === "1.3.
|
|
567886
|
+
if (current.lastReleaseNotesSeen === "1.3.449") {
|
|
567887
567887
|
return current;
|
|
567888
567888
|
}
|
|
567889
567889
|
return {
|
|
567890
567890
|
...current,
|
|
567891
|
-
lastReleaseNotesSeen: "1.3.
|
|
567891
|
+
lastReleaseNotesSeen: "1.3.449"
|
|
567892
567892
|
};
|
|
567893
567893
|
}
|
|
567894
567894
|
function _temp241(s_0) {
|
|
@@ -592797,7 +592797,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
|
|
|
592797
592797
|
smapsRollup,
|
|
592798
592798
|
platform: process.platform,
|
|
592799
592799
|
nodeVersion: process.version,
|
|
592800
|
-
ccVersion: "1.3.
|
|
592800
|
+
ccVersion: "1.3.449"
|
|
592801
592801
|
};
|
|
592802
592802
|
}
|
|
592803
592803
|
async function performHeapDump(trigger = "manual", dumpNumber = 0) {
|
|
@@ -593319,7 +593319,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
593319
593319
|
var call49 = async () => {
|
|
593320
593320
|
return {
|
|
593321
593321
|
type: "text",
|
|
593322
|
-
value: "1.3.
|
|
593322
|
+
value: "1.3.449"
|
|
593323
593323
|
};
|
|
593324
593324
|
}, version2, version_default;
|
|
593325
593325
|
var init_version = __esm(() => {
|
|
@@ -603272,7 +603272,7 @@ function generateHtmlReport(data, insights) {
|
|
|
603272
603272
|
</html>`;
|
|
603273
603273
|
}
|
|
603274
603274
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
603275
|
-
const version3 = typeof MACRO !== "undefined" ? "1.3.
|
|
603275
|
+
const version3 = typeof MACRO !== "undefined" ? "1.3.449" : "unknown";
|
|
603276
603276
|
const remote_hosts_collected = remoteStats?.hosts.filter((h3) => h3.sessionCount > 0).map((h3) => h3.name);
|
|
603277
603277
|
const facets_summary = {
|
|
603278
603278
|
total: facets.size,
|
|
@@ -607182,7 +607182,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
607182
607182
|
init_settings2();
|
|
607183
607183
|
init_slowOperations();
|
|
607184
607184
|
init_uuid();
|
|
607185
|
-
VERSION6 = typeof MACRO !== "undefined" ? "1.3.
|
|
607185
|
+
VERSION6 = typeof MACRO !== "undefined" ? "1.3.449" : "unknown";
|
|
607186
607186
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
607187
607187
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
607188
607188
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -608402,7 +608402,7 @@ var init_filesystem = __esm(() => {
|
|
|
608402
608402
|
});
|
|
608403
608403
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
608404
608404
|
const nonce = randomBytes19(16).toString("hex");
|
|
608405
|
-
return join154(getClaudeTempDir(), "bundled-skills", "1.3.
|
|
608405
|
+
return join154(getClaudeTempDir(), "bundled-skills", "1.3.449", nonce);
|
|
608406
608406
|
});
|
|
608407
608407
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
608408
608408
|
});
|
|
@@ -613517,7 +613517,7 @@ __export(exports_update, {
|
|
|
613517
613517
|
import { execFileSync as execFileSync3 } from "node:child_process";
|
|
613518
613518
|
import { homedir as homedir35 } from "os";
|
|
613519
613519
|
async function update() {
|
|
613520
|
-
writeToStdout(`Current version: ${"1.3.
|
|
613520
|
+
writeToStdout(`Current version: ${"1.3.449"}
|
|
613521
613521
|
`);
|
|
613522
613522
|
const isBundled = isInBundledMode();
|
|
613523
613523
|
if (isBundled) {
|
|
@@ -613543,13 +613543,13 @@ Manual check: npm view ${"@rayu-dev/rayu-cli"} version
|
|
|
613543
613543
|
process.exit(1);
|
|
613544
613544
|
return;
|
|
613545
613545
|
}
|
|
613546
|
-
if (latestVersion === "1.3.
|
|
613546
|
+
if (latestVersion === "1.3.449") {
|
|
613547
613547
|
writeToStdout(source_default.green(`
|
|
613548
|
-
Rayu CLI is up to date (${"1.3.
|
|
613548
|
+
Rayu CLI is up to date (${"1.3.449"})
|
|
613549
613549
|
`));
|
|
613550
613550
|
process.exit(0);
|
|
613551
613551
|
}
|
|
613552
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"1.3.
|
|
613552
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"1.3.449"})
|
|
613553
613553
|
`);
|
|
613554
613554
|
writeToStdout(`Installing update...
|
|
613555
613555
|
|
|
@@ -613573,7 +613573,7 @@ Try manually:
|
|
|
613573
613573
|
return;
|
|
613574
613574
|
}
|
|
613575
613575
|
writeToStdout(source_default.green(`
|
|
613576
|
-
Successfully updated from ${"1.3.
|
|
613576
|
+
Successfully updated from ${"1.3.449"} to ${latestVersion}
|
|
613577
613577
|
`));
|
|
613578
613578
|
process.exit(0);
|
|
613579
613579
|
}
|
|
@@ -613587,14 +613587,14 @@ async function updateNativeBinary() {
|
|
|
613587
613587
|
} catch {
|
|
613588
613588
|
latestVersion = "";
|
|
613589
613589
|
}
|
|
613590
|
-
if (latestVersion && latestVersion === "1.3.
|
|
613590
|
+
if (latestVersion && latestVersion === "1.3.449") {
|
|
613591
613591
|
writeToStdout(source_default.green(`
|
|
613592
|
-
Rayu CLI is up to date (1.3.
|
|
613592
|
+
Rayu CLI is up to date (1.3.449)
|
|
613593
613593
|
`));
|
|
613594
613594
|
process.exit(0);
|
|
613595
613595
|
}
|
|
613596
613596
|
if (latestVersion) {
|
|
613597
|
-
writeToStdout(`New version available: ${latestVersion} (current: 1.3.
|
|
613597
|
+
writeToStdout(`New version available: ${latestVersion} (current: 1.3.449)
|
|
613598
613598
|
`);
|
|
613599
613599
|
}
|
|
613600
613600
|
writeToStdout(`Downloading and installing update...
|
|
@@ -613609,13 +613609,13 @@ Rayu CLI is up to date (1.3.448)
|
|
|
613609
613609
|
return;
|
|
613610
613610
|
}
|
|
613611
613611
|
writeToStdout(source_default.green(`
|
|
613612
|
-
Rayu CLI is up to date (1.3.
|
|
613612
|
+
Rayu CLI is up to date (1.3.449)
|
|
613613
613613
|
`));
|
|
613614
613614
|
process.exit(0);
|
|
613615
613615
|
}
|
|
613616
613616
|
const updatedTo = result.latestVersion ?? latestVersion ?? "latest";
|
|
613617
613617
|
writeToStdout(source_default.green(`
|
|
613618
|
-
Successfully updated from 1.3.
|
|
613618
|
+
Successfully updated from 1.3.449 to ${updatedTo}
|
|
613619
613619
|
`));
|
|
613620
613620
|
writeToStdout(`Restart your terminal to use the new version.
|
|
613621
613621
|
`);
|
|
@@ -613646,7 +613646,7 @@ __export(exports_uninstall, {
|
|
|
613646
613646
|
import { execFileSync as execFileSync4 } from "node:child_process";
|
|
613647
613647
|
import { homedir as homedir36 } from "os";
|
|
613648
613648
|
async function uninstall() {
|
|
613649
|
-
writeToStdout(`Uninstalling Rayu CLI (${"1.3.
|
|
613649
|
+
writeToStdout(`Uninstalling Rayu CLI (${"1.3.449"})...
|
|
613650
613650
|
`);
|
|
613651
613651
|
writeToStdout(`Running: npm uninstall -g ${"@rayu-dev/rayu-cli"}
|
|
613652
613652
|
|
|
@@ -613669,7 +613669,7 @@ Try running manually:
|
|
|
613669
613669
|
process.exit(1);
|
|
613670
613670
|
}
|
|
613671
613671
|
writeToStdout(source_default.green(`
|
|
613672
|
-
Successfully uninstalled ${"@rayu-dev/rayu-cli"} ${"1.3.
|
|
613672
|
+
Successfully uninstalled ${"@rayu-dev/rayu-cli"} ${"1.3.449"}
|
|
613673
613673
|
`));
|
|
613674
613674
|
writeToStdout(`Thanks for using Rayu CLI!
|
|
613675
613675
|
`);
|
|
@@ -613721,7 +613721,7 @@ function showFirstRunWelcome() {
|
|
|
613721
613721
|
`);
|
|
613722
613722
|
try {
|
|
613723
613723
|
mkdirSync16(getRayuConfigHomeDir(), { recursive: true });
|
|
613724
|
-
writeFileSync18(markerPath(), "1.3.
|
|
613724
|
+
writeFileSync18(markerPath(), "1.3.449", "utf8");
|
|
613725
613725
|
} catch {}
|
|
613726
613726
|
}
|
|
613727
613727
|
var init_firstRun = __esm(() => {
|
|
@@ -625564,7 +625564,7 @@ async function initializeBetaTracing(resource) {
|
|
|
625564
625564
|
});
|
|
625565
625565
|
import_api_logs.logs.setGlobalLoggerProvider(loggerProvider);
|
|
625566
625566
|
setLoggerProvider(loggerProvider);
|
|
625567
|
-
const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "1.3.
|
|
625567
|
+
const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "1.3.449");
|
|
625568
625568
|
setEventLogger(eventLogger);
|
|
625569
625569
|
process.on("beforeExit", async () => {
|
|
625570
625570
|
await loggerProvider?.forceFlush();
|
|
@@ -625604,7 +625604,7 @@ async function initializeTelemetry() {
|
|
|
625604
625604
|
const platform4 = getPlatform();
|
|
625605
625605
|
const baseAttributes = {
|
|
625606
625606
|
[import_semantic_conventions2.ATTR_SERVICE_NAME]: "claude-code",
|
|
625607
|
-
[import_semantic_conventions2.ATTR_SERVICE_VERSION]: "1.3.
|
|
625607
|
+
[import_semantic_conventions2.ATTR_SERVICE_VERSION]: "1.3.449"
|
|
625608
625608
|
};
|
|
625609
625609
|
if (platform4 === "wsl") {
|
|
625610
625610
|
const wslVersion = getWslVersion();
|
|
@@ -625649,7 +625649,7 @@ async function initializeTelemetry() {
|
|
|
625649
625649
|
} catch {}
|
|
625650
625650
|
};
|
|
625651
625651
|
registerCleanup(shutdownTelemetry2);
|
|
625652
|
-
return meterProvider2.getMeter("com.anthropic.claude_code", "1.3.
|
|
625652
|
+
return meterProvider2.getMeter("com.anthropic.claude_code", "1.3.449");
|
|
625653
625653
|
}
|
|
625654
625654
|
const meterProvider = new import_sdk_metrics2.MeterProvider({
|
|
625655
625655
|
resource,
|
|
@@ -625669,7 +625669,7 @@ async function initializeTelemetry() {
|
|
|
625669
625669
|
});
|
|
625670
625670
|
import_api_logs.logs.setGlobalLoggerProvider(loggerProvider);
|
|
625671
625671
|
setLoggerProvider(loggerProvider);
|
|
625672
|
-
const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "1.3.
|
|
625672
|
+
const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "1.3.449");
|
|
625673
625673
|
setEventLogger(eventLogger);
|
|
625674
625674
|
logForDebugging("[3P telemetry] Event logger set successfully");
|
|
625675
625675
|
process.on("beforeExit", async () => {
|
|
@@ -625731,7 +625731,7 @@ Current timeout: ${timeoutMs}ms
|
|
|
625731
625731
|
}
|
|
625732
625732
|
};
|
|
625733
625733
|
registerCleanup(shutdownTelemetry);
|
|
625734
|
-
return meterProvider.getMeter("com.anthropic.claude_code", "1.3.
|
|
625734
|
+
return meterProvider.getMeter("com.anthropic.claude_code", "1.3.449");
|
|
625735
625735
|
}
|
|
625736
625736
|
async function flushTelemetry() {
|
|
625737
625737
|
const meterProvider = getMeterProvider();
|
|
@@ -627244,7 +627244,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
627244
627244
|
slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
|
|
627245
627245
|
apiKeySource: getAnthropicApiKeyWithSource().source,
|
|
627246
627246
|
betas: getSdkBetas(),
|
|
627247
|
-
claude_code_version: "1.3.
|
|
627247
|
+
claude_code_version: "1.3.449",
|
|
627248
627248
|
output_style: outputStyle2,
|
|
627249
627249
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
627250
627250
|
skills: inputs.skills.filter((s2) => s2.userInvocable !== false).map((skill) => skill.name),
|
|
@@ -643578,7 +643578,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
643578
643578
|
function getSemverPart(version3) {
|
|
643579
643579
|
return `${import_semver12.major(version3, { loose: true })}.${import_semver12.minor(version3, { loose: true })}.${import_semver12.patch(version3, { loose: true })}`;
|
|
643580
643580
|
}
|
|
643581
|
-
function useUpdateNotification(updatedVersion, initialVersion = "1.3.
|
|
643581
|
+
function useUpdateNotification(updatedVersion, initialVersion = "1.3.449") {
|
|
643582
643582
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react217.useState(() => getSemverPart(initialVersion));
|
|
643583
643583
|
if (!updatedVersion) {
|
|
643584
643584
|
return null;
|
|
@@ -643618,7 +643618,7 @@ function AutoUpdater({
|
|
|
643618
643618
|
return;
|
|
643619
643619
|
}
|
|
643620
643620
|
if (false) {}
|
|
643621
|
-
const currentVersion = "1.3.
|
|
643621
|
+
const currentVersion = "1.3.449";
|
|
643622
643622
|
const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
643623
643623
|
let latestVersion = await getLatestVersion(channel2);
|
|
643624
643624
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -643831,12 +643831,12 @@ function NativeAutoUpdater({
|
|
|
643831
643831
|
logEvent("tengu_native_auto_updater_start", {});
|
|
643832
643832
|
try {
|
|
643833
643833
|
const maxVersion = await getMaxVersion();
|
|
643834
|
-
if (maxVersion && gt("1.3.
|
|
643834
|
+
if (maxVersion && gt("1.3.449", maxVersion)) {
|
|
643835
643835
|
const msg = await getMaxVersionMessage();
|
|
643836
643836
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
643837
643837
|
}
|
|
643838
643838
|
const result = await installLatest(channel2);
|
|
643839
|
-
const currentVersion = "1.3.
|
|
643839
|
+
const currentVersion = "1.3.449";
|
|
643840
643840
|
const latencyMs = Date.now() - startTime2;
|
|
643841
643841
|
if (result.lockFailed) {
|
|
643842
643842
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -643973,17 +643973,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
643973
643973
|
const maxVersion = await getMaxVersion();
|
|
643974
643974
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
643975
643975
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
643976
|
-
if (gte("1.3.
|
|
643977
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.3.
|
|
643976
|
+
if (gte("1.3.449", maxVersion)) {
|
|
643977
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.3.449"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
643978
643978
|
setUpdateAvailable(false);
|
|
643979
643979
|
return;
|
|
643980
643980
|
}
|
|
643981
643981
|
latest = maxVersion;
|
|
643982
643982
|
}
|
|
643983
|
-
const hasUpdate = latest && !gte("1.3.
|
|
643983
|
+
const hasUpdate = latest && !gte("1.3.449", latest) && !shouldSkipVersion(latest);
|
|
643984
643984
|
setUpdateAvailable(!!hasUpdate);
|
|
643985
643985
|
if (hasUpdate) {
|
|
643986
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.3.
|
|
643986
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.3.449"} -> ${latest}`);
|
|
643987
643987
|
}
|
|
643988
643988
|
};
|
|
643989
643989
|
$3[0] = t1;
|
|
@@ -644017,7 +644017,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
644017
644017
|
wrap: "truncate",
|
|
644018
644018
|
children: [
|
|
644019
644019
|
"currentVersion: ",
|
|
644020
|
-
"1.3.
|
|
644020
|
+
"1.3.449"
|
|
644021
644021
|
]
|
|
644022
644022
|
});
|
|
644023
644023
|
$3[3] = verbose;
|
|
@@ -652182,7 +652182,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
652182
652182
|
project_dir: getOriginalCwd(),
|
|
652183
652183
|
added_dirs: addedDirs
|
|
652184
652184
|
},
|
|
652185
|
-
version: "1.3.
|
|
652185
|
+
version: "1.3.449",
|
|
652186
652186
|
output_style: {
|
|
652187
652187
|
name: outputStyleName
|
|
652188
652188
|
},
|
|
@@ -663680,7 +663680,7 @@ async function submitTranscriptShare(messages, trigger, appearanceId) {
|
|
|
663680
663680
|
} catch {}
|
|
663681
663681
|
const data = {
|
|
663682
663682
|
trigger,
|
|
663683
|
-
version: "1.3.
|
|
663683
|
+
version: "1.3.449",
|
|
663684
663684
|
platform: process.platform,
|
|
663685
663685
|
transcript,
|
|
663686
663686
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -675867,7 +675867,7 @@ function WelcomeV2() {
|
|
|
675867
675867
|
dimColor: true,
|
|
675868
675868
|
children: [
|
|
675869
675869
|
"v",
|
|
675870
|
-
"1.3.
|
|
675870
|
+
"1.3.449"
|
|
675871
675871
|
]
|
|
675872
675872
|
})
|
|
675873
675873
|
]
|
|
@@ -677601,7 +677601,7 @@ function completeOnboarding() {
|
|
|
677601
677601
|
saveGlobalConfig((current) => ({
|
|
677602
677602
|
...current,
|
|
677603
677603
|
hasCompletedOnboarding: true,
|
|
677604
|
-
lastOnboardingVersion: "1.3.
|
|
677604
|
+
lastOnboardingVersion: "1.3.449"
|
|
677605
677605
|
}));
|
|
677606
677606
|
}
|
|
677607
677607
|
function showDialog(root2, renderer) {
|
|
@@ -682551,7 +682551,7 @@ function appendToLog(path30, message) {
|
|
|
682551
682551
|
cwd: getFsImplementation().cwd(),
|
|
682552
682552
|
userType: "external",
|
|
682553
682553
|
sessionId: getSessionId(),
|
|
682554
|
-
version: "1.3.
|
|
682554
|
+
version: "1.3.449"
|
|
682555
682555
|
};
|
|
682556
682556
|
getLogWriter(path30).write(messageWithTimestamp);
|
|
682557
682557
|
}
|
|
@@ -686659,8 +686659,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
686659
686659
|
}
|
|
686660
686660
|
async function checkEnvLessBridgeMinVersion() {
|
|
686661
686661
|
const cfg = await getEnvLessBridgeConfig();
|
|
686662
|
-
if (cfg.min_version && lt("1.3.
|
|
686663
|
-
return `Your version of RAYU (${"1.3.
|
|
686662
|
+
if (cfg.min_version && lt("1.3.449", cfg.min_version)) {
|
|
686663
|
+
return `Your version of RAYU (${"1.3.449"}) is too old for Remote Control.
|
|
686664
686664
|
Version ${cfg.min_version} or higher is required. Run \`claude update\` to update.`;
|
|
686665
686665
|
}
|
|
686666
686666
|
return null;
|
|
@@ -687134,7 +687134,7 @@ async function initBridgeCore(params) {
|
|
|
687134
687134
|
const rawApi = createBridgeApiClient({
|
|
687135
687135
|
baseUrl,
|
|
687136
687136
|
getAccessToken,
|
|
687137
|
-
runnerVersion: "1.3.
|
|
687137
|
+
runnerVersion: "1.3.449",
|
|
687138
687138
|
onDebug: logForDebugging,
|
|
687139
687139
|
onAuth401,
|
|
687140
687140
|
getTrustedDeviceToken
|
|
@@ -692496,7 +692496,7 @@ async function startMCPServer(cwd3, debug4, verbose) {
|
|
|
692496
692496
|
setCwd(cwd3);
|
|
692497
692497
|
const server = new Server({
|
|
692498
692498
|
name: "claude/tengu",
|
|
692499
|
-
version: "1.3.
|
|
692499
|
+
version: "1.3.449"
|
|
692500
692500
|
}, {
|
|
692501
692501
|
capabilities: {
|
|
692502
692502
|
tools: {}
|
|
@@ -695022,7 +695022,7 @@ ${customInstructions}` : customInstructions;
|
|
|
695022
695022
|
}
|
|
695023
695023
|
}
|
|
695024
695024
|
logForDiagnosticsNoPII("info", "started", {
|
|
695025
|
-
version: "1.3.
|
|
695025
|
+
version: "1.3.449",
|
|
695026
695026
|
is_native_binary: isInBundledMode()
|
|
695027
695027
|
});
|
|
695028
695028
|
registerCleanup(async () => {
|
|
@@ -695741,7 +695741,7 @@ Usage: rayu --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
695741
695741
|
pendingHookMessages
|
|
695742
695742
|
}, renderAndRun);
|
|
695743
695743
|
}
|
|
695744
|
-
}).version("1.3.
|
|
695744
|
+
}).version("1.3.449 (Rayu-CLI)", "-v, --version", "Output the version number");
|
|
695745
695745
|
program.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
695746
695746
|
program.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
695747
695747
|
if (canUserConfigureAdvisor()) {
|
|
@@ -696203,7 +696203,7 @@ if (false) {}
|
|
|
696203
696203
|
async function main2() {
|
|
696204
696204
|
const args = process.argv.slice(2);
|
|
696205
696205
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
696206
|
-
console.log(`${"1.3.
|
|
696206
|
+
console.log(`${"1.3.449"} (Rayu-CLI)`);
|
|
696207
696207
|
return;
|
|
696208
696208
|
}
|
|
696209
696209
|
if (!isEnvTruthy(process.env.CLAUDE_CODE_DISABLE_TERMINAL_TITLE)) {
|