@rayu-dev/rayu-cli 1.3.432 → 1.3.433
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 +120 -87
- package/package.json +1 -1
package/dist/rayu.js
CHANGED
|
@@ -19390,6 +19390,33 @@ var init_contextPrepCache = __esm(() => {
|
|
|
19390
19390
|
searchResults = new Map;
|
|
19391
19391
|
});
|
|
19392
19392
|
|
|
19393
|
+
// src/utils/curatedProviderModels.ts
|
|
19394
|
+
var DOUBLEWORD_MODELS, CURATED_PROVIDER_MODELS;
|
|
19395
|
+
var init_curatedProviderModels = __esm(() => {
|
|
19396
|
+
DOUBLEWORD_MODELS = [
|
|
19397
|
+
"Qwen/Qwen3-14B-FP8",
|
|
19398
|
+
"Qwen/Qwen3-VL-235B-A22B-Instruct-FP8",
|
|
19399
|
+
"Qwen/Qwen3-VL-30B-A3B-Instruct-FP8",
|
|
19400
|
+
"Qwen/Qwen3.5-35B-A3B-FP8",
|
|
19401
|
+
"Qwen/Qwen3.5-397B-A17B-FP8",
|
|
19402
|
+
"Qwen/Qwen3.5-9B",
|
|
19403
|
+
"Qwen/Qwen3.6-35B-A3B-FP8",
|
|
19404
|
+
"deepseek-ai/DeepSeek-V4-Flash",
|
|
19405
|
+
"deepseek-ai/DeepSeek-V4-Pro",
|
|
19406
|
+
"google/gemma-4-31B-it",
|
|
19407
|
+
"mistralai/Devstral-2-123B-Instruct-2512",
|
|
19408
|
+
"moonshotai/Kimi-K2.6",
|
|
19409
|
+
"nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4",
|
|
19410
|
+
"nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-NVFP4",
|
|
19411
|
+
"openai/gpt-oss-120b",
|
|
19412
|
+
"openai/gpt-oss-20b",
|
|
19413
|
+
"zai-org/GLM-5.1-FP8"
|
|
19414
|
+
];
|
|
19415
|
+
CURATED_PROVIDER_MODELS = {
|
|
19416
|
+
doubleword: DOUBLEWORD_MODELS
|
|
19417
|
+
};
|
|
19418
|
+
});
|
|
19419
|
+
|
|
19393
19420
|
// src/utils/rayuDiagnostics.ts
|
|
19394
19421
|
import { appendFileSync as appendFileSync2, existsSync as existsSync4, mkdirSync as mkdirSync3, readFileSync as readFileSync3 } from "fs";
|
|
19395
19422
|
import { join as join6 } from "path";
|
|
@@ -36705,28 +36732,33 @@ async function fetchProviderModels(p) {
|
|
|
36705
36732
|
}
|
|
36706
36733
|
if (p.kind !== "openai-compatible" || !p.baseURL)
|
|
36707
36734
|
return [];
|
|
36735
|
+
const curated = CURATED_PROVIDER_MODELS[p.id] ?? [];
|
|
36708
36736
|
const url = p.baseURL.replace(/\/+$/, "") + "/models";
|
|
36737
|
+
let fetched = [];
|
|
36709
36738
|
try {
|
|
36710
36739
|
const res = await fetch(url, {
|
|
36711
36740
|
headers: p.apiKey ? { Authorization: `Bearer ${p.apiKey}` } : {},
|
|
36712
36741
|
signal: AbortSignal.timeout(15000)
|
|
36713
36742
|
});
|
|
36714
|
-
if (
|
|
36743
|
+
if (res.ok) {
|
|
36744
|
+
const json = await res.json();
|
|
36745
|
+
fetched = (json.data ?? []).map((m2) => m2.id).filter((id) => typeof id === "string" && id.length > 0);
|
|
36746
|
+
} else {
|
|
36715
36747
|
reportIssue("rayu_models.fetch_failed", "provider /models returned non-OK", {
|
|
36716
36748
|
provider: p.id,
|
|
36717
36749
|
status: res.status
|
|
36718
36750
|
});
|
|
36719
|
-
return [];
|
|
36720
36751
|
}
|
|
36721
|
-
const json = await res.json();
|
|
36722
|
-
return (json.data ?? []).map((m2) => m2.id).filter((id) => typeof id === "string" && id.length > 0).sort();
|
|
36723
36752
|
} catch (e2) {
|
|
36724
36753
|
reportIssue("rayu_models.fetch_error", "provider /models request failed", {
|
|
36725
36754
|
provider: p.id,
|
|
36726
36755
|
error: e2 instanceof Error ? e2.message : String(e2)
|
|
36727
36756
|
});
|
|
36728
|
-
return [];
|
|
36729
36757
|
}
|
|
36758
|
+
if (curated.length) {
|
|
36759
|
+
return [...new Set([...fetched, ...curated])].sort();
|
|
36760
|
+
}
|
|
36761
|
+
return fetched.sort();
|
|
36730
36762
|
}
|
|
36731
36763
|
async function refreshActiveProviderModels() {
|
|
36732
36764
|
const p = getActiveProvider();
|
|
@@ -36805,6 +36837,7 @@ var FILE_NAME2 = "providers.json", cache2 = null, NON_CHAT_MODEL_RE, KNOWN_MODEL
|
|
|
36805
36837
|
var init_rayuConfig = __esm(() => {
|
|
36806
36838
|
init_envUtils();
|
|
36807
36839
|
init_contextPrepCache();
|
|
36840
|
+
init_curatedProviderModels();
|
|
36808
36841
|
init_rayuDiagnostics();
|
|
36809
36842
|
NON_CHAT_MODEL_RE = /embed|bge-|rerank|reward|guard|safety|moderation|topic-control|ocr|parse|deplot|nvclip|clip|whisper|tts|stt|video|detector|nemoretriever|content-safety/i;
|
|
36810
36843
|
KNOWN_MODEL_CONTEXT = [
|
|
@@ -148272,7 +148305,7 @@ var init_auth = __esm(() => {
|
|
|
148272
148305
|
|
|
148273
148306
|
// src/utils/userAgent.ts
|
|
148274
148307
|
function getRayuUserAgent() {
|
|
148275
|
-
return `rayu/${"1.3.
|
|
148308
|
+
return `rayu/${"1.3.433"}`;
|
|
148276
148309
|
}
|
|
148277
148310
|
var getClaudeCodeUserAgent;
|
|
148278
148311
|
var init_userAgent = __esm(() => {
|
|
@@ -148298,7 +148331,7 @@ function getUserAgent() {
|
|
|
148298
148331
|
const clientApp = process.env.RAYU_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.RAYU_AGENT_SDK_CLIENT_APP}` : "";
|
|
148299
148332
|
const workload = getWorkload();
|
|
148300
148333
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
148301
|
-
return `rayu/${"1.3.
|
|
148334
|
+
return `rayu/${"1.3.433"} (${"external"}, ${process.env.RAYU_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
148302
148335
|
}
|
|
148303
148336
|
function getMCPUserAgent() {
|
|
148304
148337
|
const parts = [];
|
|
@@ -148312,7 +148345,7 @@ function getMCPUserAgent() {
|
|
|
148312
148345
|
parts.push(`client-app/${process.env.RAYU_AGENT_SDK_CLIENT_APP}`);
|
|
148313
148346
|
}
|
|
148314
148347
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
148315
|
-
return `rayu/${"1.3.
|
|
148348
|
+
return `rayu/${"1.3.433"}${suffix}`;
|
|
148316
148349
|
}
|
|
148317
148350
|
function getWebFetchUserAgent() {
|
|
148318
148351
|
return `Rayu-User (${getRayuUserAgent()})`;
|
|
@@ -148435,7 +148468,7 @@ var init_user = __esm(() => {
|
|
|
148435
148468
|
deviceId,
|
|
148436
148469
|
sessionId: getSessionId(),
|
|
148437
148470
|
email: getEmail(),
|
|
148438
|
-
appVersion: "1.3.
|
|
148471
|
+
appVersion: "1.3.433",
|
|
148439
148472
|
platform: getHostPlatformForAnalytics(),
|
|
148440
148473
|
organizationUuid,
|
|
148441
148474
|
accountUuid,
|
|
@@ -183947,7 +183980,7 @@ var init_metadata = __esm(() => {
|
|
|
183947
183980
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
183948
183981
|
WHITESPACE_REGEX = /\s+/;
|
|
183949
183982
|
getVersionBase = memoize_default(() => {
|
|
183950
|
-
const match = "1.3.
|
|
183983
|
+
const match = "1.3.433".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
183951
183984
|
return match ? match[0] : undefined;
|
|
183952
183985
|
});
|
|
183953
183986
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -183986,7 +184019,7 @@ var init_metadata = __esm(() => {
|
|
|
183986
184019
|
},
|
|
183987
184020
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
183988
184021
|
isRayuAction: isEnvTruthy(process.env.RAYU_ACTION),
|
|
183989
|
-
version: "1.3.
|
|
184022
|
+
version: "1.3.433",
|
|
183990
184023
|
versionBase: getVersionBase(),
|
|
183991
184024
|
buildTime: "",
|
|
183992
184025
|
deploymentEnvironment: env4.detectDeploymentEnvironment(),
|
|
@@ -184600,7 +184633,7 @@ function initialize1PEventLogging() {
|
|
|
184600
184633
|
const platform2 = getPlatform();
|
|
184601
184634
|
const attributes = {
|
|
184602
184635
|
[import_semantic_conventions.ATTR_SERVICE_NAME]: "rayu",
|
|
184603
|
-
[import_semantic_conventions.ATTR_SERVICE_VERSION]: "1.3.
|
|
184636
|
+
[import_semantic_conventions.ATTR_SERVICE_VERSION]: "1.3.433"
|
|
184604
184637
|
};
|
|
184605
184638
|
if (platform2 === "wsl") {
|
|
184606
184639
|
const wslVersion = getWslVersion();
|
|
@@ -184627,7 +184660,7 @@ function initialize1PEventLogging() {
|
|
|
184627
184660
|
})
|
|
184628
184661
|
]
|
|
184629
184662
|
});
|
|
184630
|
-
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("io.rayu.events", "1.3.
|
|
184663
|
+
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("io.rayu.events", "1.3.433");
|
|
184631
184664
|
}
|
|
184632
184665
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
184633
184666
|
if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
|
|
@@ -220543,7 +220576,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
220543
220576
|
if (!isAttributionHeaderEnabled()) {
|
|
220544
220577
|
return "";
|
|
220545
220578
|
}
|
|
220546
|
-
const version2 = `${"1.3.
|
|
220579
|
+
const version2 = `${"1.3.433"}.${fingerprint}`;
|
|
220547
220580
|
const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
|
|
220548
220581
|
const cch = "";
|
|
220549
220582
|
const workload = getWorkload();
|
|
@@ -305233,7 +305266,7 @@ function getTelemetryAttributes() {
|
|
|
305233
305266
|
attributes["session.id"] = sessionId;
|
|
305234
305267
|
}
|
|
305235
305268
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
305236
|
-
attributes["app.version"] = "1.3.
|
|
305269
|
+
attributes["app.version"] = "1.3.433";
|
|
305237
305270
|
}
|
|
305238
305271
|
const oauthAccount = getOauthAccountInfo();
|
|
305239
305272
|
if (oauthAccount) {
|
|
@@ -415543,7 +415576,7 @@ function getInstallationEnv() {
|
|
|
415543
415576
|
return;
|
|
415544
415577
|
}
|
|
415545
415578
|
function getClaudeCodeVersion() {
|
|
415546
|
-
return "1.3.
|
|
415579
|
+
return "1.3.433";
|
|
415547
415580
|
}
|
|
415548
415581
|
async function getInstalledVSCodeExtensionVersion(command) {
|
|
415549
415582
|
const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
|
|
@@ -420781,7 +420814,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
420781
420814
|
const client4 = new Client({
|
|
420782
420815
|
name: "claude-code",
|
|
420783
420816
|
title: "RAYU",
|
|
420784
|
-
version: "1.3.
|
|
420817
|
+
version: "1.3.433",
|
|
420785
420818
|
description: "Anthropic's agentic coding tool",
|
|
420786
420819
|
websiteUrl: PRODUCT_URL
|
|
420787
420820
|
}, {
|
|
@@ -421098,7 +421131,7 @@ var init_client7 = __esm(() => {
|
|
|
421098
421131
|
const client4 = new Client({
|
|
421099
421132
|
name: "claude-code",
|
|
421100
421133
|
title: "RAYU",
|
|
421101
|
-
version: "1.3.
|
|
421134
|
+
version: "1.3.433",
|
|
421102
421135
|
description: "Anthropic's agentic coding tool",
|
|
421103
421136
|
websiteUrl: PRODUCT_URL
|
|
421104
421137
|
}, {
|
|
@@ -435903,7 +435936,7 @@ function computeFingerprint(messageText, version2) {
|
|
|
435903
435936
|
}
|
|
435904
435937
|
function computeFingerprintFromMessages(messages) {
|
|
435905
435938
|
const firstMessageText = extractFirstMessageText(messages);
|
|
435906
|
-
return computeFingerprint(firstMessageText, "1.3.
|
|
435939
|
+
return computeFingerprint(firstMessageText, "1.3.433");
|
|
435907
435940
|
}
|
|
435908
435941
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
435909
435942
|
var init_fingerprint = () => {};
|
|
@@ -435945,7 +435978,7 @@ async function sideQuery(opts) {
|
|
|
435945
435978
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
435946
435979
|
}
|
|
435947
435980
|
const messageText = extractFirstUserMessageText(messages);
|
|
435948
|
-
const fingerprint = computeFingerprint(messageText, "1.3.
|
|
435981
|
+
const fingerprint = computeFingerprint(messageText, "1.3.433");
|
|
435949
435982
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
435950
435983
|
const systemBlocks = [
|
|
435951
435984
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -530919,7 +530952,7 @@ function Feedback({
|
|
|
530919
530952
|
platform: env4.platform,
|
|
530920
530953
|
gitRepo: envInfo.isGit,
|
|
530921
530954
|
terminal: env4.terminal,
|
|
530922
|
-
version: "1.3.
|
|
530955
|
+
version: "1.3.433",
|
|
530923
530956
|
transcript: normalizeMessagesForAPI(messages),
|
|
530924
530957
|
errors: sanitizedErrors,
|
|
530925
530958
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -531111,7 +531144,7 @@ function Feedback({
|
|
|
531111
531144
|
", ",
|
|
531112
531145
|
env4.terminal,
|
|
531113
531146
|
", v",
|
|
531114
|
-
"1.3.
|
|
531147
|
+
"1.3.433"
|
|
531115
531148
|
]
|
|
531116
531149
|
}, undefined, true, undefined, this)
|
|
531117
531150
|
]
|
|
@@ -531217,7 +531250,7 @@ ${sanitizedDescription}
|
|
|
531217
531250
|
` + `**Environment Info**
|
|
531218
531251
|
` + `- Platform: ${env4.platform}
|
|
531219
531252
|
` + `- Terminal: ${env4.terminal}
|
|
531220
|
-
` + `- Version: ${"1.3.
|
|
531253
|
+
` + `- Version: ${"1.3.433"}
|
|
531221
531254
|
` + `- Feedback ID: ${feedbackId}
|
|
531222
531255
|
` + `
|
|
531223
531256
|
**Errors**
|
|
@@ -534057,9 +534090,9 @@ async function assertMinVersion() {
|
|
|
534057
534090
|
if (false) {}
|
|
534058
534091
|
try {
|
|
534059
534092
|
const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
|
|
534060
|
-
if (versionConfig.minVersion && lt("1.3.
|
|
534093
|
+
if (versionConfig.minVersion && lt("1.3.433", versionConfig.minVersion)) {
|
|
534061
534094
|
console.error(`
|
|
534062
|
-
It looks like your version of RAYU (${"1.3.
|
|
534095
|
+
It looks like your version of RAYU (${"1.3.433"}) needs an update.
|
|
534063
534096
|
A newer version (${versionConfig.minVersion} or higher) is required to continue.
|
|
534064
534097
|
|
|
534065
534098
|
To update, please run:
|
|
@@ -534285,7 +534318,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
534285
534318
|
logError2(new AutoUpdaterError("Another process is currently installing an update"));
|
|
534286
534319
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
534287
534320
|
pid: process.pid,
|
|
534288
|
-
currentVersion: "1.3.
|
|
534321
|
+
currentVersion: "1.3.433"
|
|
534289
534322
|
});
|
|
534290
534323
|
return "in_progress";
|
|
534291
534324
|
}
|
|
@@ -534294,7 +534327,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
534294
534327
|
if (!env4.isRunningWithBun() && env4.isNpmFromWindowsPath()) {
|
|
534295
534328
|
logError2(new Error("Windows NPM detected in WSL environment"));
|
|
534296
534329
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
534297
|
-
currentVersion: "1.3.
|
|
534330
|
+
currentVersion: "1.3.433"
|
|
534298
534331
|
});
|
|
534299
534332
|
console.error(`
|
|
534300
534333
|
Error: Windows NPM detected in WSL
|
|
@@ -534830,7 +534863,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
534830
534863
|
}
|
|
534831
534864
|
async function getDoctorDiagnostic() {
|
|
534832
534865
|
const installationType = await getCurrentInstallationType();
|
|
534833
|
-
const version2 = typeof MACRO !== "undefined" ? "1.3.
|
|
534866
|
+
const version2 = typeof MACRO !== "undefined" ? "1.3.433" : "unknown";
|
|
534834
534867
|
const installationPath = await getInstallationPath();
|
|
534835
534868
|
const invokedBinary = getInvokedBinary();
|
|
534836
534869
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -535625,8 +535658,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
535625
535658
|
const maxVersion = await getMaxVersion();
|
|
535626
535659
|
if (maxVersion && gt(version2, maxVersion)) {
|
|
535627
535660
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
|
|
535628
|
-
if (gte("1.3.
|
|
535629
|
-
logForDebugging(`Native installer: current version ${"1.3.
|
|
535661
|
+
if (gte("1.3.433", maxVersion)) {
|
|
535662
|
+
logForDebugging(`Native installer: current version ${"1.3.433"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
535630
535663
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
535631
535664
|
latency_ms: Date.now() - startTime,
|
|
535632
535665
|
max_version: maxVersion,
|
|
@@ -535637,7 +535670,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
535637
535670
|
version2 = maxVersion;
|
|
535638
535671
|
}
|
|
535639
535672
|
}
|
|
535640
|
-
if (!forceReinstall && version2 === "1.3.
|
|
535673
|
+
if (!forceReinstall && version2 === "1.3.433" && await versionIsAvailable(version2) && await isPossibleClaudeBinary(executablePath)) {
|
|
535641
535674
|
logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
|
|
535642
535675
|
logEvent("tengu_native_update_complete", {
|
|
535643
535676
|
latency_ms: Date.now() - startTime,
|
|
@@ -536833,7 +536866,7 @@ function buildPrimarySection() {
|
|
|
536833
536866
|
}, undefined, false, undefined, this);
|
|
536834
536867
|
return [{
|
|
536835
536868
|
label: "Version",
|
|
536836
|
-
value: "1.3.
|
|
536869
|
+
value: "1.3.433"
|
|
536837
536870
|
}, {
|
|
536838
536871
|
label: "Session name",
|
|
536839
536872
|
value: nameValue
|
|
@@ -540524,7 +540557,7 @@ function Config({
|
|
|
540524
540557
|
}
|
|
540525
540558
|
}, undefined, false, undefined, this)
|
|
540526
540559
|
}, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime170.jsxDEV(ChannelDowngradeDialog, {
|
|
540527
|
-
currentVersion: "1.3.
|
|
540560
|
+
currentVersion: "1.3.433",
|
|
540528
540561
|
onChoice: (choice) => {
|
|
540529
540562
|
setShowSubmenu(null);
|
|
540530
540563
|
setTabsHidden(false);
|
|
@@ -540536,7 +540569,7 @@ function Config({
|
|
|
540536
540569
|
autoUpdatesChannel: "stable"
|
|
540537
540570
|
};
|
|
540538
540571
|
if (choice === "stay") {
|
|
540539
|
-
newSettings.minimumVersion = "1.3.
|
|
540572
|
+
newSettings.minimumVersion = "1.3.433";
|
|
540540
540573
|
}
|
|
540541
540574
|
updateSettingsForSource("userSettings", newSettings);
|
|
540542
540575
|
setSettingsData((prev_27) => ({
|
|
@@ -548598,7 +548631,7 @@ function HelpV2(t0) {
|
|
|
548598
548631
|
let t6;
|
|
548599
548632
|
if ($3[31] !== tabs) {
|
|
548600
548633
|
t6 = /* @__PURE__ */ jsx_dev_runtime197.jsxDEV(Tabs, {
|
|
548601
|
-
title: `Rayu-CLI v${"1.3.
|
|
548634
|
+
title: `Rayu-CLI v${"1.3.433"}`,
|
|
548602
548635
|
color: "professionalBlue",
|
|
548603
548636
|
defaultTab: "general",
|
|
548604
548637
|
children: tabs
|
|
@@ -568630,7 +568663,7 @@ function getRecentReleaseNotes(currentVersion, previousVersion, changelogContent
|
|
|
568630
568663
|
}
|
|
568631
568664
|
return [];
|
|
568632
568665
|
}
|
|
568633
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.3.
|
|
568666
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.3.433") {
|
|
568634
568667
|
if (false) {}
|
|
568635
568668
|
const cachedChangelog = await getStoredChangelog();
|
|
568636
568669
|
if (lastSeenVersion !== currentVersion || !cachedChangelog) {
|
|
@@ -568643,7 +568676,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.3.432")
|
|
|
568643
568676
|
releaseNotes
|
|
568644
568677
|
};
|
|
568645
568678
|
}
|
|
568646
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.3.
|
|
568679
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.3.433") {
|
|
568647
568680
|
if (false) {}
|
|
568648
568681
|
const releaseNotes = getRecentReleaseNotes(currentVersion, lastSeenVersion);
|
|
568649
568682
|
return {
|
|
@@ -568771,7 +568804,7 @@ function getRecentActivitySync() {
|
|
|
568771
568804
|
return cachedActivity;
|
|
568772
568805
|
}
|
|
568773
568806
|
function getLogoDisplayData() {
|
|
568774
|
-
const version2 = process.env.DEMO_VERSION ?? "1.3.
|
|
568807
|
+
const version2 = process.env.DEMO_VERSION ?? "1.3.433";
|
|
568775
568808
|
const serverUrl = getDirectConnectServerUrl();
|
|
568776
568809
|
const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
|
|
568777
568810
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -570017,7 +570050,7 @@ function LogoV2() {
|
|
|
570017
570050
|
if ($3[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
570018
570051
|
t2 = () => {
|
|
570019
570052
|
const currentConfig = getGlobalConfig();
|
|
570020
|
-
if (currentConfig.lastReleaseNotesSeen === "1.3.
|
|
570053
|
+
if (currentConfig.lastReleaseNotesSeen === "1.3.433") {
|
|
570021
570054
|
return;
|
|
570022
570055
|
}
|
|
570023
570056
|
saveGlobalConfig(_temp327);
|
|
@@ -570495,7 +570528,7 @@ function LogoV2() {
|
|
|
570495
570528
|
t24 = $3[61];
|
|
570496
570529
|
}
|
|
570497
570530
|
const _latestNpm = getCachedLatestNpmVersionSync();
|
|
570498
|
-
const _updateFeeds = _latestNpm && gt(_latestNpm, "1.3.
|
|
570531
|
+
const _updateFeeds = _latestNpm && gt(_latestNpm, "1.3.433") ? [createUpdateAvailableFeed("1.3.433", _latestNpm)] : [];
|
|
570499
570532
|
const t25 = layoutMode === "horizontal" && /* @__PURE__ */ jsx_dev_runtime239.jsxDEV(FeedColumn, {
|
|
570500
570533
|
feeds: showOnboarding ? [createProjectOnboardingFeed(getSteps()), createRecentActivityFeed(activities)] : showGuestPassesUpsell ? [createRecentActivityFeed(activities), createGuestPassesFeed()] : showOverageCreditUpsell ? [createRecentActivityFeed(activities), createOverageCreditFeed()] : [createRecentActivityFeed(activities), ..._updateFeeds, createWhatsNewFeed(changelog)],
|
|
570501
570534
|
maxWidth: rightWidth
|
|
@@ -570695,12 +570728,12 @@ function LogoV2() {
|
|
|
570695
570728
|
return t41;
|
|
570696
570729
|
}
|
|
570697
570730
|
function _temp327(current) {
|
|
570698
|
-
if (current.lastReleaseNotesSeen === "1.3.
|
|
570731
|
+
if (current.lastReleaseNotesSeen === "1.3.433") {
|
|
570699
570732
|
return current;
|
|
570700
570733
|
}
|
|
570701
570734
|
return {
|
|
570702
570735
|
...current,
|
|
570703
|
-
lastReleaseNotesSeen: "1.3.
|
|
570736
|
+
lastReleaseNotesSeen: "1.3.433"
|
|
570704
570737
|
};
|
|
570705
570738
|
}
|
|
570706
570739
|
function _temp241(s_0) {
|
|
@@ -595493,7 +595526,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
|
|
|
595493
595526
|
smapsRollup,
|
|
595494
595527
|
platform: process.platform,
|
|
595495
595528
|
nodeVersion: process.version,
|
|
595496
|
-
ccVersion: "1.3.
|
|
595529
|
+
ccVersion: "1.3.433"
|
|
595497
595530
|
};
|
|
595498
595531
|
}
|
|
595499
595532
|
async function performHeapDump(trigger = "manual", dumpNumber = 0) {
|
|
@@ -596015,7 +596048,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
596015
596048
|
var call48 = async () => {
|
|
596016
596049
|
return {
|
|
596017
596050
|
type: "text",
|
|
596018
|
-
value: "1.3.
|
|
596051
|
+
value: "1.3.433"
|
|
596019
596052
|
};
|
|
596020
596053
|
}, version2, version_default;
|
|
596021
596054
|
var init_version = __esm(() => {
|
|
@@ -605791,7 +605824,7 @@ function generateHtmlReport(data, insights) {
|
|
|
605791
605824
|
</html>`;
|
|
605792
605825
|
}
|
|
605793
605826
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
605794
|
-
const version3 = typeof MACRO !== "undefined" ? "1.3.
|
|
605827
|
+
const version3 = typeof MACRO !== "undefined" ? "1.3.433" : "unknown";
|
|
605795
605828
|
const remote_hosts_collected = remoteStats?.hosts.filter((h3) => h3.sessionCount > 0).map((h3) => h3.name);
|
|
605796
605829
|
const facets_summary = {
|
|
605797
605830
|
total: facets.size,
|
|
@@ -609697,7 +609730,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
609697
609730
|
init_settings2();
|
|
609698
609731
|
init_slowOperations();
|
|
609699
609732
|
init_uuid();
|
|
609700
|
-
VERSION6 = typeof MACRO !== "undefined" ? "1.3.
|
|
609733
|
+
VERSION6 = typeof MACRO !== "undefined" ? "1.3.433" : "unknown";
|
|
609701
609734
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
609702
609735
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
609703
609736
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -610918,7 +610951,7 @@ var init_filesystem = __esm(() => {
|
|
|
610918
610951
|
});
|
|
610919
610952
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
610920
610953
|
const nonce = randomBytes19(16).toString("hex");
|
|
610921
|
-
return join153(getClaudeTempDir(), "bundled-skills", "1.3.
|
|
610954
|
+
return join153(getClaudeTempDir(), "bundled-skills", "1.3.433", nonce);
|
|
610922
610955
|
});
|
|
610923
610956
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
610924
610957
|
});
|
|
@@ -616033,7 +616066,7 @@ __export(exports_update, {
|
|
|
616033
616066
|
import { execFileSync as execFileSync3 } from "node:child_process";
|
|
616034
616067
|
import { homedir as homedir34 } from "os";
|
|
616035
616068
|
async function update() {
|
|
616036
|
-
writeToStdout(`Current version: ${"1.3.
|
|
616069
|
+
writeToStdout(`Current version: ${"1.3.433"}
|
|
616037
616070
|
`);
|
|
616038
616071
|
const isBundled = isInBundledMode();
|
|
616039
616072
|
if (isBundled) {
|
|
@@ -616059,13 +616092,13 @@ Manual check: npm view ${"@rayu-dev/rayu-cli"} version
|
|
|
616059
616092
|
process.exit(1);
|
|
616060
616093
|
return;
|
|
616061
616094
|
}
|
|
616062
|
-
if (latestVersion === "1.3.
|
|
616095
|
+
if (latestVersion === "1.3.433") {
|
|
616063
616096
|
writeToStdout(source_default.green(`
|
|
616064
|
-
Rayu CLI is up to date (${"1.3.
|
|
616097
|
+
Rayu CLI is up to date (${"1.3.433"})
|
|
616065
616098
|
`));
|
|
616066
616099
|
process.exit(0);
|
|
616067
616100
|
}
|
|
616068
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"1.3.
|
|
616101
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"1.3.433"})
|
|
616069
616102
|
`);
|
|
616070
616103
|
writeToStdout(`Installing update...
|
|
616071
616104
|
|
|
@@ -616089,7 +616122,7 @@ Try manually:
|
|
|
616089
616122
|
return;
|
|
616090
616123
|
}
|
|
616091
616124
|
writeToStdout(source_default.green(`
|
|
616092
|
-
Successfully updated from ${"1.3.
|
|
616125
|
+
Successfully updated from ${"1.3.433"} to ${latestVersion}
|
|
616093
616126
|
`));
|
|
616094
616127
|
process.exit(0);
|
|
616095
616128
|
}
|
|
@@ -616103,14 +616136,14 @@ async function updateNativeBinary() {
|
|
|
616103
616136
|
} catch {
|
|
616104
616137
|
latestVersion = "";
|
|
616105
616138
|
}
|
|
616106
|
-
if (latestVersion && latestVersion === "1.3.
|
|
616139
|
+
if (latestVersion && latestVersion === "1.3.433") {
|
|
616107
616140
|
writeToStdout(source_default.green(`
|
|
616108
|
-
Rayu CLI is up to date (1.3.
|
|
616141
|
+
Rayu CLI is up to date (1.3.433)
|
|
616109
616142
|
`));
|
|
616110
616143
|
process.exit(0);
|
|
616111
616144
|
}
|
|
616112
616145
|
if (latestVersion) {
|
|
616113
|
-
writeToStdout(`New version available: ${latestVersion} (current: 1.3.
|
|
616146
|
+
writeToStdout(`New version available: ${latestVersion} (current: 1.3.433)
|
|
616114
616147
|
`);
|
|
616115
616148
|
}
|
|
616116
616149
|
writeToStdout(`Downloading and installing update...
|
|
@@ -616125,13 +616158,13 @@ Rayu CLI is up to date (1.3.432)
|
|
|
616125
616158
|
return;
|
|
616126
616159
|
}
|
|
616127
616160
|
writeToStdout(source_default.green(`
|
|
616128
|
-
Rayu CLI is up to date (1.3.
|
|
616161
|
+
Rayu CLI is up to date (1.3.433)
|
|
616129
616162
|
`));
|
|
616130
616163
|
process.exit(0);
|
|
616131
616164
|
}
|
|
616132
616165
|
const updatedTo = result.latestVersion ?? latestVersion ?? "latest";
|
|
616133
616166
|
writeToStdout(source_default.green(`
|
|
616134
|
-
Successfully updated from 1.3.
|
|
616167
|
+
Successfully updated from 1.3.433 to ${updatedTo}
|
|
616135
616168
|
`));
|
|
616136
616169
|
writeToStdout(`Restart your terminal to use the new version.
|
|
616137
616170
|
`);
|
|
@@ -616162,7 +616195,7 @@ __export(exports_uninstall, {
|
|
|
616162
616195
|
import { execFileSync as execFileSync4 } from "node:child_process";
|
|
616163
616196
|
import { homedir as homedir35 } from "os";
|
|
616164
616197
|
async function uninstall() {
|
|
616165
|
-
writeToStdout(`Uninstalling Rayu CLI (${"1.3.
|
|
616198
|
+
writeToStdout(`Uninstalling Rayu CLI (${"1.3.433"})...
|
|
616166
616199
|
`);
|
|
616167
616200
|
writeToStdout(`Running: npm uninstall -g ${"@rayu-dev/rayu-cli"}
|
|
616168
616201
|
|
|
@@ -616185,7 +616218,7 @@ Try running manually:
|
|
|
616185
616218
|
process.exit(1);
|
|
616186
616219
|
}
|
|
616187
616220
|
writeToStdout(source_default.green(`
|
|
616188
|
-
Successfully uninstalled ${"@rayu-dev/rayu-cli"} ${"1.3.
|
|
616221
|
+
Successfully uninstalled ${"@rayu-dev/rayu-cli"} ${"1.3.433"}
|
|
616189
616222
|
`));
|
|
616190
616223
|
writeToStdout(`Thanks for using Rayu CLI!
|
|
616191
616224
|
`);
|
|
@@ -616237,7 +616270,7 @@ function showFirstRunWelcome() {
|
|
|
616237
616270
|
`);
|
|
616238
616271
|
try {
|
|
616239
616272
|
mkdirSync14(getRayuConfigHomeDir(), { recursive: true });
|
|
616240
|
-
writeFileSync16(markerPath(), "1.3.
|
|
616273
|
+
writeFileSync16(markerPath(), "1.3.433", "utf8");
|
|
616241
616274
|
} catch {}
|
|
616242
616275
|
}
|
|
616243
616276
|
var init_firstRun = __esm(() => {
|
|
@@ -628080,7 +628113,7 @@ async function initializeBetaTracing(resource) {
|
|
|
628080
628113
|
});
|
|
628081
628114
|
import_api_logs.logs.setGlobalLoggerProvider(loggerProvider);
|
|
628082
628115
|
setLoggerProvider(loggerProvider);
|
|
628083
|
-
const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "1.3.
|
|
628116
|
+
const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "1.3.433");
|
|
628084
628117
|
setEventLogger(eventLogger);
|
|
628085
628118
|
process.on("beforeExit", async () => {
|
|
628086
628119
|
await loggerProvider?.forceFlush();
|
|
@@ -628120,7 +628153,7 @@ async function initializeTelemetry() {
|
|
|
628120
628153
|
const platform4 = getPlatform();
|
|
628121
628154
|
const baseAttributes = {
|
|
628122
628155
|
[import_semantic_conventions2.ATTR_SERVICE_NAME]: "claude-code",
|
|
628123
|
-
[import_semantic_conventions2.ATTR_SERVICE_VERSION]: "1.3.
|
|
628156
|
+
[import_semantic_conventions2.ATTR_SERVICE_VERSION]: "1.3.433"
|
|
628124
628157
|
};
|
|
628125
628158
|
if (platform4 === "wsl") {
|
|
628126
628159
|
const wslVersion = getWslVersion();
|
|
@@ -628165,7 +628198,7 @@ async function initializeTelemetry() {
|
|
|
628165
628198
|
} catch {}
|
|
628166
628199
|
};
|
|
628167
628200
|
registerCleanup(shutdownTelemetry2);
|
|
628168
|
-
return meterProvider2.getMeter("com.anthropic.claude_code", "1.3.
|
|
628201
|
+
return meterProvider2.getMeter("com.anthropic.claude_code", "1.3.433");
|
|
628169
628202
|
}
|
|
628170
628203
|
const meterProvider = new import_sdk_metrics2.MeterProvider({
|
|
628171
628204
|
resource,
|
|
@@ -628185,7 +628218,7 @@ async function initializeTelemetry() {
|
|
|
628185
628218
|
});
|
|
628186
628219
|
import_api_logs.logs.setGlobalLoggerProvider(loggerProvider);
|
|
628187
628220
|
setLoggerProvider(loggerProvider);
|
|
628188
|
-
const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "1.3.
|
|
628221
|
+
const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "1.3.433");
|
|
628189
628222
|
setEventLogger(eventLogger);
|
|
628190
628223
|
logForDebugging("[3P telemetry] Event logger set successfully");
|
|
628191
628224
|
process.on("beforeExit", async () => {
|
|
@@ -628247,7 +628280,7 @@ Current timeout: ${timeoutMs}ms
|
|
|
628247
628280
|
}
|
|
628248
628281
|
};
|
|
628249
628282
|
registerCleanup(shutdownTelemetry);
|
|
628250
|
-
return meterProvider.getMeter("com.anthropic.claude_code", "1.3.
|
|
628283
|
+
return meterProvider.getMeter("com.anthropic.claude_code", "1.3.433");
|
|
628251
628284
|
}
|
|
628252
628285
|
async function flushTelemetry() {
|
|
628253
628286
|
const meterProvider = getMeterProvider();
|
|
@@ -629760,7 +629793,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
629760
629793
|
slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
|
|
629761
629794
|
apiKeySource: getAnthropicApiKeyWithSource().source,
|
|
629762
629795
|
betas: getSdkBetas(),
|
|
629763
|
-
claude_code_version: "1.3.
|
|
629796
|
+
claude_code_version: "1.3.433",
|
|
629764
629797
|
output_style: outputStyle2,
|
|
629765
629798
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
629766
629799
|
skills: inputs.skills.filter((s2) => s2.userInvocable !== false).map((skill) => skill.name),
|
|
@@ -645969,7 +646002,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
645969
646002
|
function getSemverPart(version3) {
|
|
645970
646003
|
return `${import_semver12.major(version3, { loose: true })}.${import_semver12.minor(version3, { loose: true })}.${import_semver12.patch(version3, { loose: true })}`;
|
|
645971
646004
|
}
|
|
645972
|
-
function useUpdateNotification(updatedVersion, initialVersion = "1.3.
|
|
646005
|
+
function useUpdateNotification(updatedVersion, initialVersion = "1.3.433") {
|
|
645973
646006
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react217.useState(() => getSemverPart(initialVersion));
|
|
645974
646007
|
if (!updatedVersion) {
|
|
645975
646008
|
return null;
|
|
@@ -646009,7 +646042,7 @@ function AutoUpdater({
|
|
|
646009
646042
|
return;
|
|
646010
646043
|
}
|
|
646011
646044
|
if (false) {}
|
|
646012
|
-
const currentVersion = "1.3.
|
|
646045
|
+
const currentVersion = "1.3.433";
|
|
646013
646046
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
646014
646047
|
let latestVersion = await getLatestVersion(channel);
|
|
646015
646048
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -646222,12 +646255,12 @@ function NativeAutoUpdater({
|
|
|
646222
646255
|
logEvent("tengu_native_auto_updater_start", {});
|
|
646223
646256
|
try {
|
|
646224
646257
|
const maxVersion = await getMaxVersion();
|
|
646225
|
-
if (maxVersion && gt("1.3.
|
|
646258
|
+
if (maxVersion && gt("1.3.433", maxVersion)) {
|
|
646226
646259
|
const msg = await getMaxVersionMessage();
|
|
646227
646260
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
646228
646261
|
}
|
|
646229
646262
|
const result = await installLatest(channel);
|
|
646230
|
-
const currentVersion = "1.3.
|
|
646263
|
+
const currentVersion = "1.3.433";
|
|
646231
646264
|
const latencyMs = Date.now() - startTime;
|
|
646232
646265
|
if (result.lockFailed) {
|
|
646233
646266
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -646364,17 +646397,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
646364
646397
|
const maxVersion = await getMaxVersion();
|
|
646365
646398
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
646366
646399
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
646367
|
-
if (gte("1.3.
|
|
646368
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.3.
|
|
646400
|
+
if (gte("1.3.433", maxVersion)) {
|
|
646401
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.3.433"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
646369
646402
|
setUpdateAvailable(false);
|
|
646370
646403
|
return;
|
|
646371
646404
|
}
|
|
646372
646405
|
latest = maxVersion;
|
|
646373
646406
|
}
|
|
646374
|
-
const hasUpdate = latest && !gte("1.3.
|
|
646407
|
+
const hasUpdate = latest && !gte("1.3.433", latest) && !shouldSkipVersion(latest);
|
|
646375
646408
|
setUpdateAvailable(!!hasUpdate);
|
|
646376
646409
|
if (hasUpdate) {
|
|
646377
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.3.
|
|
646410
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.3.433"} -> ${latest}`);
|
|
646378
646411
|
}
|
|
646379
646412
|
};
|
|
646380
646413
|
$3[0] = t1;
|
|
@@ -646408,7 +646441,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
646408
646441
|
wrap: "truncate",
|
|
646409
646442
|
children: [
|
|
646410
646443
|
"currentVersion: ",
|
|
646411
|
-
"1.3.
|
|
646444
|
+
"1.3.433"
|
|
646412
646445
|
]
|
|
646413
646446
|
}, undefined, true, undefined, this);
|
|
646414
646447
|
$3[3] = verbose;
|
|
@@ -654573,7 +654606,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
654573
654606
|
project_dir: getOriginalCwd(),
|
|
654574
654607
|
added_dirs: addedDirs
|
|
654575
654608
|
},
|
|
654576
|
-
version: "1.3.
|
|
654609
|
+
version: "1.3.433",
|
|
654577
654610
|
output_style: {
|
|
654578
654611
|
name: outputStyleName
|
|
654579
654612
|
},
|
|
@@ -665977,7 +666010,7 @@ async function submitTranscriptShare(messages, trigger, appearanceId) {
|
|
|
665977
666010
|
} catch {}
|
|
665978
666011
|
const data = {
|
|
665979
666012
|
trigger,
|
|
665980
|
-
version: "1.3.
|
|
666013
|
+
version: "1.3.433",
|
|
665981
666014
|
platform: process.platform,
|
|
665982
666015
|
transcript,
|
|
665983
666016
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -678026,7 +678059,7 @@ function WelcomeV2() {
|
|
|
678026
678059
|
dimColor: true,
|
|
678027
678060
|
children: [
|
|
678028
678061
|
"v",
|
|
678029
|
-
"1.3.
|
|
678062
|
+
"1.3.433"
|
|
678030
678063
|
]
|
|
678031
678064
|
}, undefined, true, undefined, this)
|
|
678032
678065
|
]
|
|
@@ -679760,7 +679793,7 @@ function completeOnboarding() {
|
|
|
679760
679793
|
saveGlobalConfig((current) => ({
|
|
679761
679794
|
...current,
|
|
679762
679795
|
hasCompletedOnboarding: true,
|
|
679763
|
-
lastOnboardingVersion: "1.3.
|
|
679796
|
+
lastOnboardingVersion: "1.3.433"
|
|
679764
679797
|
}));
|
|
679765
679798
|
}
|
|
679766
679799
|
function showDialog(root2, renderer) {
|
|
@@ -684060,7 +684093,7 @@ function appendToLog(path30, message) {
|
|
|
684060
684093
|
cwd: getFsImplementation().cwd(),
|
|
684061
684094
|
userType: "external",
|
|
684062
684095
|
sessionId: getSessionId(),
|
|
684063
|
-
version: "1.3.
|
|
684096
|
+
version: "1.3.433"
|
|
684064
684097
|
};
|
|
684065
684098
|
getLogWriter(path30).write(messageWithTimestamp);
|
|
684066
684099
|
}
|
|
@@ -688168,8 +688201,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
688168
688201
|
}
|
|
688169
688202
|
async function checkEnvLessBridgeMinVersion() {
|
|
688170
688203
|
const cfg = await getEnvLessBridgeConfig();
|
|
688171
|
-
if (cfg.min_version && lt("1.3.
|
|
688172
|
-
return `Your version of RAYU (${"1.3.
|
|
688204
|
+
if (cfg.min_version && lt("1.3.433", cfg.min_version)) {
|
|
688205
|
+
return `Your version of RAYU (${"1.3.433"}) is too old for Remote Control.
|
|
688173
688206
|
Version ${cfg.min_version} or higher is required. Run \`claude update\` to update.`;
|
|
688174
688207
|
}
|
|
688175
688208
|
return null;
|
|
@@ -688643,7 +688676,7 @@ async function initBridgeCore(params) {
|
|
|
688643
688676
|
const rawApi = createBridgeApiClient({
|
|
688644
688677
|
baseUrl,
|
|
688645
688678
|
getAccessToken,
|
|
688646
|
-
runnerVersion: "1.3.
|
|
688679
|
+
runnerVersion: "1.3.433",
|
|
688647
688680
|
onDebug: logForDebugging,
|
|
688648
688681
|
onAuth401,
|
|
688649
688682
|
getTrustedDeviceToken
|
|
@@ -694005,7 +694038,7 @@ async function startMCPServer(cwd3, debug4, verbose) {
|
|
|
694005
694038
|
setCwd(cwd3);
|
|
694006
694039
|
const server = new Server({
|
|
694007
694040
|
name: "claude/tengu",
|
|
694008
|
-
version: "1.3.
|
|
694041
|
+
version: "1.3.433"
|
|
694009
694042
|
}, {
|
|
694010
694043
|
capabilities: {
|
|
694011
694044
|
tools: {}
|
|
@@ -696531,7 +696564,7 @@ ${customInstructions}` : customInstructions;
|
|
|
696531
696564
|
}
|
|
696532
696565
|
}
|
|
696533
696566
|
logForDiagnosticsNoPII("info", "started", {
|
|
696534
|
-
version: "1.3.
|
|
696567
|
+
version: "1.3.433",
|
|
696535
696568
|
is_native_binary: isInBundledMode()
|
|
696536
696569
|
});
|
|
696537
696570
|
registerCleanup(async () => {
|
|
@@ -697250,7 +697283,7 @@ Usage: rayu --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
697250
697283
|
pendingHookMessages
|
|
697251
697284
|
}, renderAndRun);
|
|
697252
697285
|
}
|
|
697253
|
-
}).version("1.3.
|
|
697286
|
+
}).version("1.3.433 (Rayu-CLI)", "-v, --version", "Output the version number");
|
|
697254
697287
|
program.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
697255
697288
|
program.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
697256
697289
|
if (canUserConfigureAdvisor()) {
|
|
@@ -697716,7 +697749,7 @@ if (false) {}
|
|
|
697716
697749
|
async function main2() {
|
|
697717
697750
|
const args = process.argv.slice(2);
|
|
697718
697751
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
697719
|
-
console.log(`${"1.3.
|
|
697752
|
+
console.log(`${"1.3.433"} (Rayu-CLI)`);
|
|
697720
697753
|
return;
|
|
697721
697754
|
}
|
|
697722
697755
|
const {
|