@rayu-dev/rayu-cli 1.5.18 → 1.5.19

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.
Files changed (2) hide show
  1. package/dist/rayu.js +82 -79
  2. package/package.json +1 -1
package/dist/rayu.js CHANGED
@@ -144934,7 +144934,7 @@ var init_isEqual = __esm(() => {
144934
144934
 
144935
144935
  // src/utils/userAgent.ts
144936
144936
  function getRayuUserAgent() {
144937
- return `rayu/${"1.5.18"}`;
144937
+ return `rayu/${"1.5.19"}`;
144938
144938
  }
144939
144939
  var getClaudeCodeUserAgent;
144940
144940
  var init_userAgent = __esm(() => {
@@ -144960,7 +144960,7 @@ function getUserAgent() {
144960
144960
  const clientApp = process.env.RAYU_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.RAYU_AGENT_SDK_CLIENT_APP}` : "";
144961
144961
  const workload = getWorkload();
144962
144962
  const workloadSuffix = workload ? `, workload/${workload}` : "";
144963
- return `rayu/${"1.5.18"} (${"external"}, ${process.env.RAYU_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
144963
+ return `rayu/${"1.5.19"} (${"external"}, ${process.env.RAYU_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
144964
144964
  }
144965
144965
  function getMCPUserAgent() {
144966
144966
  const parts = [];
@@ -144974,7 +144974,7 @@ function getMCPUserAgent() {
144974
144974
  parts.push(`client-app/${process.env.RAYU_AGENT_SDK_CLIENT_APP}`);
144975
144975
  }
144976
144976
  const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
144977
- return `rayu/${"1.5.18"}${suffix}`;
144977
+ return `rayu/${"1.5.19"}${suffix}`;
144978
144978
  }
144979
144979
  function getWebFetchUserAgent() {
144980
144980
  return `Rayu-User (${getRayuUserAgent()})`;
@@ -193806,7 +193806,7 @@ function getAttributionHeader(fingerprint) {
193806
193806
  if (!isAttributionHeaderEnabled()) {
193807
193807
  return "";
193808
193808
  }
193809
- const version2 = `${"1.5.18"}.${fingerprint}`;
193809
+ const version2 = `${"1.5.19"}.${fingerprint}`;
193810
193810
  const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
193811
193811
  const cch = "";
193812
193812
  const workload = getWorkload();
@@ -247285,7 +247285,7 @@ var init_metadata = __esm(() => {
247285
247285
  COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
247286
247286
  WHITESPACE_REGEX = /\s+/;
247287
247287
  getVersionBase = memoize_default(() => {
247288
- const match = "1.5.18".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
247288
+ const match = "1.5.19".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
247289
247289
  return match ? match[0] : undefined;
247290
247290
  });
247291
247291
  buildEnvContext = memoize_default(async () => {
@@ -247324,7 +247324,7 @@ var init_metadata = __esm(() => {
247324
247324
  },
247325
247325
  isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
247326
247326
  isRayuAction: isEnvTruthy(process.env.RAYU_ACTION),
247327
- version: "1.5.18",
247327
+ version: "1.5.19",
247328
247328
  versionBase: getVersionBase(),
247329
247329
  buildTime: "",
247330
247330
  deploymentEnvironment: env4.detectDeploymentEnvironment(),
@@ -279524,7 +279524,7 @@ function getTelemetryAttributes() {
279524
279524
  attributes["session.id"] = sessionId;
279525
279525
  }
279526
279526
  if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
279527
- attributes["app.version"] = "1.5.18";
279527
+ attributes["app.version"] = "1.5.19";
279528
279528
  }
279529
279529
  const oauthAccount = getOauthAccountInfo();
279530
279530
  if (oauthAccount) {
@@ -389959,7 +389959,7 @@ function getInstallationEnv() {
389959
389959
  return;
389960
389960
  }
389961
389961
  function getClaudeCodeVersion() {
389962
- return "1.5.18";
389962
+ return "1.5.19";
389963
389963
  }
389964
389964
  async function getInstalledVSCodeExtensionVersion(command) {
389965
389965
  const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
@@ -395197,7 +395197,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
395197
395197
  const client = new Client({
395198
395198
  name: "claude-code",
395199
395199
  title: "RAYU",
395200
- version: "1.5.18",
395200
+ version: "1.5.19",
395201
395201
  description: "Anthropic's agentic coding tool",
395202
395202
  websiteUrl: PRODUCT_URL
395203
395203
  }, {
@@ -395514,7 +395514,7 @@ var init_client6 = __esm(() => {
395514
395514
  const client = new Client({
395515
395515
  name: "claude-code",
395516
395516
  title: "RAYU",
395517
- version: "1.5.18",
395517
+ version: "1.5.19",
395518
395518
  description: "Anthropic's agentic coding tool",
395519
395519
  websiteUrl: PRODUCT_URL
395520
395520
  }, {
@@ -410457,7 +410457,7 @@ function computeFingerprint(messageText, version2) {
410457
410457
  }
410458
410458
  function computeFingerprintFromMessages(messages) {
410459
410459
  const firstMessageText = extractFirstMessageText(messages);
410460
- return computeFingerprint(firstMessageText, "1.5.18");
410460
+ return computeFingerprint(firstMessageText, "1.5.19");
410461
410461
  }
410462
410462
  var FINGERPRINT_SALT = "59cf53e54c78";
410463
410463
  var init_fingerprint = () => {};
@@ -410499,7 +410499,7 @@ async function sideQuery(opts) {
410499
410499
  betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
410500
410500
  }
410501
410501
  const messageText = extractFirstUserMessageText(messages);
410502
- const fingerprint = computeFingerprint(messageText, "1.5.18");
410502
+ const fingerprint = computeFingerprint(messageText, "1.5.19");
410503
410503
  const attributionHeader = getAttributionHeader(fingerprint);
410504
410504
  const systemBlocks = [
410505
410505
  attributionHeader ? { type: "text", text: attributionHeader } : null,
@@ -442592,6 +442592,9 @@ var init_InstallSkillTool = __esm(() => {
442592
442592
  getActivityDescription(input) {
442593
442593
  return input?.source ? `Installing skill from ${input.source}` : "Installing skill";
442594
442594
  },
442595
+ renderToolUseMessage(input) {
442596
+ return input.source ?? "";
442597
+ },
442595
442598
  async checkPermissions(_input) {
442596
442599
  return {
442597
442600
  behavior: "passthrough",
@@ -510750,9 +510753,9 @@ async function assertMinVersion() {
510750
510753
  if (false) {}
510751
510754
  try {
510752
510755
  const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
510753
- if (versionConfig.minVersion && lt("1.5.18", versionConfig.minVersion)) {
510756
+ if (versionConfig.minVersion && lt("1.5.19", versionConfig.minVersion)) {
510754
510757
  console.error(`
510755
- It looks like your version of RAYU (${"1.5.18"}) needs an update.
510758
+ It looks like your version of RAYU (${"1.5.19"}) needs an update.
510756
510759
  A newer version (${versionConfig.minVersion} or higher) is required to continue.
510757
510760
 
510758
510761
  To update, please run:
@@ -510916,7 +510919,7 @@ async function installGlobalPackage(specificVersion) {
510916
510919
  logError2(new AutoUpdaterError("Another process is currently installing an update"));
510917
510920
  logEvent("tengu_auto_updater_lock_contention", {
510918
510921
  pid: process.pid,
510919
- currentVersion: "1.5.18"
510922
+ currentVersion: "1.5.19"
510920
510923
  });
510921
510924
  return "in_progress";
510922
510925
  }
@@ -510925,7 +510928,7 @@ async function installGlobalPackage(specificVersion) {
510925
510928
  if (!env4.isRunningWithBun() && env4.isNpmFromWindowsPath()) {
510926
510929
  logError2(new Error("Windows NPM detected in WSL environment"));
510927
510930
  logEvent("tengu_auto_updater_windows_npm_in_wsl", {
510928
- currentVersion: "1.5.18"
510931
+ currentVersion: "1.5.19"
510929
510932
  });
510930
510933
  console.error(`
510931
510934
  Error: Windows NPM detected in WSL
@@ -511456,7 +511459,7 @@ function detectLinuxGlobPatternWarnings() {
511456
511459
  }
511457
511460
  async function getDoctorDiagnostic() {
511458
511461
  const installationType = await getCurrentInstallationType();
511459
- const version2 = typeof MACRO !== "undefined" ? "1.5.18" : "unknown";
511462
+ const version2 = typeof MACRO !== "undefined" ? "1.5.19" : "unknown";
511460
511463
  const installationPath = await getInstallationPath();
511461
511464
  const invokedBinary = getInvokedBinary();
511462
511465
  const multipleInstallations = await detectMultipleInstallations();
@@ -512251,8 +512254,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
512251
512254
  const maxVersion = await getMaxVersion();
512252
512255
  if (maxVersion && gt(version2, maxVersion)) {
512253
512256
  logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
512254
- if (gte("1.5.18", maxVersion)) {
512255
- logForDebugging(`Native installer: current version ${"1.5.18"} is already at or above maxVersion ${maxVersion}, skipping update`);
512257
+ if (gte("1.5.19", maxVersion)) {
512258
+ logForDebugging(`Native installer: current version ${"1.5.19"} is already at or above maxVersion ${maxVersion}, skipping update`);
512256
512259
  logEvent("tengu_native_update_skipped_max_version", {
512257
512260
  latency_ms: Date.now() - startTime2,
512258
512261
  max_version: maxVersion,
@@ -512263,7 +512266,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
512263
512266
  version2 = maxVersion;
512264
512267
  }
512265
512268
  }
512266
- if (!forceReinstall && version2 === "1.5.18" && await versionIsAvailable(version2) && await isPossibleClaudeBinary(executablePath)) {
512269
+ if (!forceReinstall && version2 === "1.5.19" && await versionIsAvailable(version2) && await isPossibleClaudeBinary(executablePath)) {
512267
512270
  logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
512268
512271
  logEvent("tengu_native_update_complete", {
512269
512272
  latency_ms: Date.now() - startTime2,
@@ -513471,7 +513474,7 @@ function buildPrimarySection() {
513471
513474
  });
513472
513475
  return [{
513473
513476
  label: "Version",
513474
- value: "1.5.18"
513477
+ value: "1.5.19"
513475
513478
  }, {
513476
513479
  label: "Session name",
513477
513480
  value: nameValue
@@ -517142,7 +517145,7 @@ function Config({
517142
517145
  }
517143
517146
  })
517144
517147
  }) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_runtime168.jsx(ChannelDowngradeDialog, {
517145
- currentVersion: "1.5.18",
517148
+ currentVersion: "1.5.19",
517146
517149
  onChoice: (choice) => {
517147
517150
  setShowSubmenu(null);
517148
517151
  setTabsHidden(false);
@@ -517154,7 +517157,7 @@ function Config({
517154
517157
  autoUpdatesChannel: "stable"
517155
517158
  };
517156
517159
  if (choice === "stay") {
517157
- newSettings.minimumVersion = "1.5.18";
517160
+ newSettings.minimumVersion = "1.5.19";
517158
517161
  }
517159
517162
  updateSettingsForSource("userSettings", newSettings);
517160
517163
  setSettingsData((prev_27) => ({
@@ -525215,7 +525218,7 @@ function HelpV2(t0) {
525215
525218
  let t6;
525216
525219
  if ($3[31] !== tabs) {
525217
525220
  t6 = /* @__PURE__ */ jsx_runtime195.jsx(Tabs, {
525218
- title: `Rayu-CLI v${"1.5.18"}`,
525221
+ title: `Rayu-CLI v${"1.5.19"}`,
525219
525222
  color: "professionalBlue",
525220
525223
  defaultTab: "general",
525221
525224
  children: tabs
@@ -546255,7 +546258,7 @@ function getRecentReleaseNotes(currentVersion, previousVersion, changelogContent
546255
546258
  }
546256
546259
  return [];
546257
546260
  }
546258
- async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.5.18") {
546261
+ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.5.19") {
546259
546262
  if (false) {}
546260
546263
  const cachedChangelog = await getStoredChangelog();
546261
546264
  if (lastSeenVersion !== currentVersion || !cachedChangelog) {
@@ -546268,7 +546271,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.5.18")
546268
546271
  releaseNotes
546269
546272
  };
546270
546273
  }
546271
- function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.5.18") {
546274
+ function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.5.19") {
546272
546275
  if (false) {}
546273
546276
  const releaseNotes = getRecentReleaseNotes(currentVersion, lastSeenVersion);
546274
546277
  return {
@@ -546396,7 +546399,7 @@ function getRecentActivitySync() {
546396
546399
  return cachedActivity;
546397
546400
  }
546398
546401
  function getLogoDisplayData() {
546399
- const version2 = process.env.DEMO_VERSION ?? "1.5.18";
546402
+ const version2 = process.env.DEMO_VERSION ?? "1.5.19";
546400
546403
  const serverUrl = getDirectConnectServerUrl();
546401
546404
  const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
546402
546405
  const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
@@ -547608,7 +547611,7 @@ function LogoV2() {
547608
547611
  if ($3[2] === Symbol.for("react.memo_cache_sentinel")) {
547609
547612
  t2 = () => {
547610
547613
  const currentConfig = getGlobalConfig();
547611
- if (currentConfig.lastReleaseNotesSeen === "1.5.18") {
547614
+ if (currentConfig.lastReleaseNotesSeen === "1.5.19") {
547612
547615
  return;
547613
547616
  }
547614
547617
  saveGlobalConfig(_temp327);
@@ -548087,7 +548090,7 @@ function LogoV2() {
548087
548090
  t24 = $3[61];
548088
548091
  }
548089
548092
  const _latestNpm = getCachedLatestNpmVersionSync();
548090
- const _updateFeeds = _latestNpm && gt(_latestNpm, "1.5.18") ? [createUpdateAvailableFeed("1.5.18", _latestNpm)] : [];
548093
+ const _updateFeeds = _latestNpm && gt(_latestNpm, "1.5.19") ? [createUpdateAvailableFeed("1.5.19", _latestNpm)] : [];
548091
548094
  const t25 = layoutMode === "horizontal" && /* @__PURE__ */ jsx_runtime236.jsx(FeedColumn, {
548092
548095
  feeds: showOnboarding ? [createProjectOnboardingFeed(getSteps()), createRecentActivityFeed(activities)] : showGuestPassesUpsell ? [createRecentActivityFeed(activities), createGuestPassesFeed()] : showOverageCreditUpsell ? [createRecentActivityFeed(activities), createOverageCreditFeed()] : [createRecentActivityFeed(activities), ..._updateFeeds, createWhatsNewFeed(changelog)],
548093
548096
  maxWidth: rightWidth
@@ -548287,12 +548290,12 @@ function LogoV2() {
548287
548290
  return t41;
548288
548291
  }
548289
548292
  function _temp327(current) {
548290
- if (current.lastReleaseNotesSeen === "1.5.18") {
548293
+ if (current.lastReleaseNotesSeen === "1.5.19") {
548291
548294
  return current;
548292
548295
  }
548293
548296
  return {
548294
548297
  ...current,
548295
- lastReleaseNotesSeen: "1.5.18"
548298
+ lastReleaseNotesSeen: "1.5.19"
548296
548299
  };
548297
548300
  }
548298
548301
  function _temp241(s_0) {
@@ -574448,7 +574451,7 @@ function createRayuMcpServer(options) {
574448
574451
  commandsPromise ??= getCommands(options.cwd);
574449
574452
  return commandsPromise;
574450
574453
  };
574451
- const server = new Server({ name: RAYU_MCP_SERVER_NAME, version: "1.5.18" }, { capabilities: { tools: {}, prompts: {} } });
574454
+ const server = new Server({ name: RAYU_MCP_SERVER_NAME, version: "1.5.19" }, { capabilities: { tools: {}, prompts: {} } });
574452
574455
  server.setRequestHandler(ListToolsRequestSchema, async () => {
574453
574456
  const toolPermissionContext = getEmptyToolPermissionContext();
574454
574457
  const allTools = getTools(toolPermissionContext);
@@ -574548,7 +574551,7 @@ async function pingRayuMcpServer(cwd2) {
574548
574551
  const server = createRayuMcpServer2({ cwd: cwd2, debug: false, verbose: false });
574549
574552
  const [clientTransport, serverTransport] = createLinkedTransportPair();
574550
574553
  await server.connect(serverTransport);
574551
- client = new Client({ name: `${RAYU_MCP_SERVER_NAME}-healthcheck`, version: "1.5.18" });
574554
+ client = new Client({ name: `${RAYU_MCP_SERVER_NAME}-healthcheck`, version: "1.5.19" });
574552
574555
  await client.connect(clientTransport);
574553
574556
  const tools = await client.listTools();
574554
574557
  let promptCount = 0;
@@ -575251,7 +575254,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
575251
575254
  smapsRollup,
575252
575255
  platform: process.platform,
575253
575256
  nodeVersion: process.version,
575254
- ccVersion: "1.5.18"
575257
+ ccVersion: "1.5.19"
575255
575258
  };
575256
575259
  }
575257
575260
  async function performHeapDump(trigger = "manual", dumpNumber = 0) {
@@ -575773,7 +575776,7 @@ var init_bridge_kick = __esm(() => {
575773
575776
  var call51 = async () => {
575774
575777
  return {
575775
575778
  type: "text",
575776
- value: "1.5.18"
575779
+ value: "1.5.19"
575777
575780
  };
575778
575781
  }, version2, version_default;
575779
575782
  var init_version = __esm(() => {
@@ -583305,7 +583308,7 @@ var init_user = __esm(() => {
583305
583308
  deviceId,
583306
583309
  sessionId: getSessionId(),
583307
583310
  email: getEmail(),
583308
- appVersion: "1.5.18",
583311
+ appVersion: "1.5.19",
583309
583312
  platform: getHostPlatformForAnalytics(),
583310
583313
  organizationUuid,
583311
583314
  accountUuid,
@@ -589346,7 +589349,7 @@ function generateHtmlReport(data, insights) {
589346
589349
  </html>`;
589347
589350
  }
589348
589351
  function buildExportData(data, insights, facets, remoteStats) {
589349
- const version3 = typeof MACRO !== "undefined" ? "1.5.18" : "unknown";
589352
+ const version3 = typeof MACRO !== "undefined" ? "1.5.19" : "unknown";
589350
589353
  const remote_hosts_collected = remoteStats?.hosts.filter((h3) => h3.sessionCount > 0).map((h3) => h3.name);
589351
589354
  const facets_summary = {
589352
589355
  total: facets.size,
@@ -593264,7 +593267,7 @@ var init_sessionStorage = __esm(() => {
593264
593267
  init_settings2();
593265
593268
  init_slowOperations();
593266
593269
  init_uuid();
593267
- VERSION5 = typeof MACRO !== "undefined" ? "1.5.18" : "unknown";
593270
+ VERSION5 = typeof MACRO !== "undefined" ? "1.5.19" : "unknown";
593268
593271
  MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
593269
593272
  SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
593270
593273
  EPHEMERAL_PROGRESS_TYPES = new Set([
@@ -594482,7 +594485,7 @@ var init_filesystem = __esm(() => {
594482
594485
  });
594483
594486
  getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
594484
594487
  const nonce = randomBytes21(16).toString("hex");
594485
- return join155(getClaudeTempDir(), "bundled-skills", "1.5.18", nonce);
594488
+ return join155(getClaudeTempDir(), "bundled-skills", "1.5.19", nonce);
594486
594489
  });
594487
594490
  getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
594488
594491
  });
@@ -599596,7 +599599,7 @@ __export(exports_update, {
599596
599599
  classifyUpdateOutcome: () => classifyUpdateOutcome
599597
599600
  });
599598
599601
  async function update() {
599599
- writeToStdout(`Current version: ${"1.5.18"}
599602
+ writeToStdout(`Current version: ${"1.5.19"}
599600
599603
  `);
599601
599604
  const isBundled = isInBundledMode();
599602
599605
  if (isBundled) {
@@ -599627,18 +599630,18 @@ Manual check: npm view ${"@rayu-dev/rayu-cli"} version
599627
599630
  process.exit(1);
599628
599631
  return;
599629
599632
  }
599630
- if (latestVersion === "1.5.18") {
599633
+ if (latestVersion === "1.5.19") {
599631
599634
  writeToStdout(source_default.green(`
599632
- Rayu CLI is up to date (${"1.5.18"})
599635
+ Rayu CLI is up to date (${"1.5.19"})
599633
599636
  `));
599634
599637
  process.exit(0);
599635
599638
  }
599636
- writeToStdout(`New version available: ${latestVersion} (current: ${"1.5.18"})
599639
+ writeToStdout(`New version available: ${latestVersion} (current: ${"1.5.19"})
599637
599640
  `);
599638
599641
  writeToStdout(`Installing update...
599639
599642
 
599640
599643
  `);
599641
- const versionBeforeInstall = getInstalledVersion() ?? "1.5.18";
599644
+ const versionBeforeInstall = getInstalledVersion() ?? "1.5.19";
599642
599645
  const installSpec = buildPinnedSpec("@rayu-dev/rayu-cli", latestVersion) ?? `${"@rayu-dev/rayu-cli"}@latest`;
599643
599646
  if (!await acquireUpdateLock()) {
599644
599647
  process.stderr.write(source_default.yellow(`
@@ -599756,14 +599759,14 @@ async function updateNativeBinary() {
599756
599759
  } catch {
599757
599760
  latestVersion = "";
599758
599761
  }
599759
- if (latestVersion && latestVersion === "1.5.18") {
599762
+ if (latestVersion && latestVersion === "1.5.19") {
599760
599763
  writeToStdout(source_default.green(`
599761
- Rayu CLI is up to date (1.5.18)
599764
+ Rayu CLI is up to date (1.5.19)
599762
599765
  `));
599763
599766
  process.exit(0);
599764
599767
  }
599765
599768
  if (latestVersion) {
599766
- writeToStdout(`New version available: ${latestVersion} (current: 1.5.18)
599769
+ writeToStdout(`New version available: ${latestVersion} (current: 1.5.19)
599767
599770
  `);
599768
599771
  }
599769
599772
  writeToStdout(`Downloading and installing update...
@@ -599778,13 +599781,13 @@ Rayu CLI is up to date (1.5.18)
599778
599781
  return;
599779
599782
  }
599780
599783
  writeToStdout(source_default.green(`
599781
- Rayu CLI is up to date (1.5.18)
599784
+ Rayu CLI is up to date (1.5.19)
599782
599785
  `));
599783
599786
  process.exit(0);
599784
599787
  }
599785
599788
  const updatedTo = result.latestVersion ?? latestVersion ?? "latest";
599786
599789
  writeToStdout(source_default.green(`
599787
- Successfully updated from 1.5.18 to ${updatedTo}
599790
+ Successfully updated from 1.5.19 to ${updatedTo}
599788
599791
  `));
599789
599792
  writeToStdout(`Restart your terminal to use the new version.
599790
599793
  `);
@@ -599850,7 +599853,7 @@ async function removeDataDir(dir) {
599850
599853
  async function uninstall(args = []) {
599851
599854
  const yes = args.includes("--yes") || args.includes("-y");
599852
599855
  const keepData = args.includes("--keep-data");
599853
- writeToStdout(`Uninstalling Rayu CLI (${"1.5.18"})...
599856
+ writeToStdout(`Uninstalling Rayu CLI (${"1.5.19"})...
599854
599857
  `);
599855
599858
  writeToStdout(`Running: npm uninstall -g ${"@rayu-dev/rayu-cli"}
599856
599859
 
@@ -599871,7 +599874,7 @@ Failed to uninstall ${"@rayu-dev/rayu-cli"}
599871
599874
  return;
599872
599875
  }
599873
599876
  writeToStdout(source_default.green(`
599874
- Successfully uninstalled ${"@rayu-dev/rayu-cli"} ${"1.5.18"}
599877
+ Successfully uninstalled ${"@rayu-dev/rayu-cli"} ${"1.5.19"}
599875
599878
  `));
599876
599879
  const configDir = getRayuConfigHomeDir();
599877
599880
  const dataExists = existsSync32(configDir);
@@ -599954,7 +599957,7 @@ function showFirstRunWelcome() {
599954
599957
  `);
599955
599958
  try {
599956
599959
  mkdirSync17(getRayuConfigHomeDir(), { recursive: true });
599957
- writeFileSync20(markerPath(), "1.5.18", "utf8");
599960
+ writeFileSync20(markerPath(), "1.5.19", "utf8");
599958
599961
  } catch {}
599959
599962
  }
599960
599963
  var init_firstRun = __esm(() => {
@@ -615024,7 +615027,7 @@ async function initializeBetaTracing(resource) {
615024
615027
  });
615025
615028
  import_api_logs.logs.setGlobalLoggerProvider(loggerProvider);
615026
615029
  setLoggerProvider(loggerProvider);
615027
- const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "1.5.18");
615030
+ const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "1.5.19");
615028
615031
  setEventLogger(eventLogger);
615029
615032
  process.on("beforeExit", async () => {
615030
615033
  await loggerProvider?.forceFlush();
@@ -615064,7 +615067,7 @@ async function initializeTelemetry() {
615064
615067
  const platform4 = getPlatform();
615065
615068
  const baseAttributes = {
615066
615069
  [import_semantic_conventions.ATTR_SERVICE_NAME]: "claude-code",
615067
- [import_semantic_conventions.ATTR_SERVICE_VERSION]: "1.5.18"
615070
+ [import_semantic_conventions.ATTR_SERVICE_VERSION]: "1.5.19"
615068
615071
  };
615069
615072
  if (platform4 === "wsl") {
615070
615073
  const wslVersion = getWslVersion();
@@ -615109,7 +615112,7 @@ async function initializeTelemetry() {
615109
615112
  } catch {}
615110
615113
  };
615111
615114
  registerCleanup(shutdownTelemetry2);
615112
- return meterProvider2.getMeter("com.anthropic.claude_code", "1.5.18");
615115
+ return meterProvider2.getMeter("com.anthropic.claude_code", "1.5.19");
615113
615116
  }
615114
615117
  const meterProvider = new import_sdk_metrics2.MeterProvider({
615115
615118
  resource,
@@ -615129,7 +615132,7 @@ async function initializeTelemetry() {
615129
615132
  });
615130
615133
  import_api_logs.logs.setGlobalLoggerProvider(loggerProvider);
615131
615134
  setLoggerProvider(loggerProvider);
615132
- const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "1.5.18");
615135
+ const eventLogger = import_api_logs.logs.getLogger("com.anthropic.claude_code.events", "1.5.19");
615133
615136
  setEventLogger(eventLogger);
615134
615137
  logForDebugging("[3P telemetry] Event logger set successfully");
615135
615138
  process.on("beforeExit", async () => {
@@ -615191,7 +615194,7 @@ Current timeout: ${timeoutMs}ms
615191
615194
  }
615192
615195
  };
615193
615196
  registerCleanup(shutdownTelemetry);
615194
- return meterProvider.getMeter("com.anthropic.claude_code", "1.5.18");
615197
+ return meterProvider.getMeter("com.anthropic.claude_code", "1.5.19");
615195
615198
  }
615196
615199
  async function flushTelemetry() {
615197
615200
  const meterProvider = getMeterProvider();
@@ -616693,7 +616696,7 @@ function buildSystemInitMessage(inputs) {
616693
616696
  slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
616694
616697
  apiKeySource: getAnthropicApiKeyWithSource().source,
616695
616698
  betas: getSdkBetas(),
616696
- claude_code_version: "1.5.18",
616699
+ claude_code_version: "1.5.19",
616697
616700
  output_style: outputStyle2,
616698
616701
  agents: inputs.agents.map((agent) => agent.agentType),
616699
616702
  skills: inputs.skills.filter((s2) => s2.userInvocable !== false).map((skill) => skill.name),
@@ -634392,7 +634395,7 @@ var init_useVoiceEnabled = __esm(() => {
634392
634395
  function getSemverPart(version3) {
634393
634396
  return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
634394
634397
  }
634395
- function useUpdateNotification(updatedVersion, initialVersion = "1.5.18") {
634398
+ function useUpdateNotification(updatedVersion, initialVersion = "1.5.19") {
634396
634399
  const [lastNotifiedSemver, setLastNotifiedSemver] = import_react220.useState(() => getSemverPart(initialVersion));
634397
634400
  if (!updatedVersion) {
634398
634401
  return null;
@@ -634432,7 +634435,7 @@ function AutoUpdater({
634432
634435
  return;
634433
634436
  }
634434
634437
  if (false) {}
634435
- const currentVersion = "1.5.18";
634438
+ const currentVersion = "1.5.19";
634436
634439
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
634437
634440
  let latestVersion = await getLatestVersion(channel2);
634438
634441
  const isDisabled = isAutoUpdaterDisabled();
@@ -634645,12 +634648,12 @@ function NativeAutoUpdater({
634645
634648
  logEvent("tengu_native_auto_updater_start", {});
634646
634649
  try {
634647
634650
  const maxVersion = await getMaxVersion();
634648
- if (maxVersion && gt("1.5.18", maxVersion)) {
634651
+ if (maxVersion && gt("1.5.19", maxVersion)) {
634649
634652
  const msg = await getMaxVersionMessage();
634650
634653
  setMaxVersionIssue(msg ?? "affects your version");
634651
634654
  }
634652
634655
  const result = await installLatest(channel2);
634653
- const currentVersion = "1.5.18";
634656
+ const currentVersion = "1.5.19";
634654
634657
  const latencyMs = Date.now() - startTime2;
634655
634658
  if (result.lockFailed) {
634656
634659
  logEvent("tengu_native_auto_updater_lock_contention", {
@@ -634787,17 +634790,17 @@ function PackageManagerAutoUpdater(t0) {
634787
634790
  const maxVersion = await getMaxVersion();
634788
634791
  if (maxVersion && latest && gt(latest, maxVersion)) {
634789
634792
  logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
634790
- if (gte("1.5.18", maxVersion)) {
634791
- logForDebugging(`PackageManagerAutoUpdater: current version ${"1.5.18"} is already at or above maxVersion ${maxVersion}, skipping update`);
634793
+ if (gte("1.5.19", maxVersion)) {
634794
+ logForDebugging(`PackageManagerAutoUpdater: current version ${"1.5.19"} is already at or above maxVersion ${maxVersion}, skipping update`);
634792
634795
  setUpdateAvailable(false);
634793
634796
  return;
634794
634797
  }
634795
634798
  latest = maxVersion;
634796
634799
  }
634797
- const hasUpdate = latest && !gte("1.5.18", latest) && !shouldSkipVersion(latest);
634800
+ const hasUpdate = latest && !gte("1.5.19", latest) && !shouldSkipVersion(latest);
634798
634801
  setUpdateAvailable(!!hasUpdate);
634799
634802
  if (hasUpdate) {
634800
- logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.5.18"} -> ${latest}`);
634803
+ logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.5.19"} -> ${latest}`);
634801
634804
  }
634802
634805
  };
634803
634806
  $3[0] = t1;
@@ -634831,7 +634834,7 @@ function PackageManagerAutoUpdater(t0) {
634831
634834
  wrap: "truncate",
634832
634835
  children: [
634833
634836
  "currentVersion: ",
634834
- "1.5.18"
634837
+ "1.5.19"
634835
634838
  ]
634836
634839
  });
634837
634840
  $3[3] = verbose;
@@ -635234,7 +635237,7 @@ function readNoticeEnvironment() {
635234
635237
  function UpdateAvailableNotice({
635235
635238
  detectInstallationType = getCurrentInstallationType,
635236
635239
  fetchLatestVersion,
635237
- currentVersion = "1.5.18",
635240
+ currentVersion = "1.5.19",
635238
635241
  readEnvironment = readNoticeEnvironment
635239
635242
  } = {}) {
635240
635243
  const [latestVersion, setLatestVersion] = import_react227.useState(() => getCachedLatestNpmVersionSync());
@@ -643085,7 +643088,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
643085
643088
  project_dir: getOriginalCwd(),
643086
643089
  added_dirs: addedDirs
643087
643090
  },
643088
- version: "1.5.18",
643091
+ version: "1.5.19",
643089
643092
  output_style: {
643090
643093
  name: outputStyleName
643091
643094
  },
@@ -654626,7 +654629,7 @@ async function submitTranscriptShare(messages, trigger, appearanceId) {
654626
654629
  } catch {}
654627
654630
  const data = {
654628
654631
  trigger,
654629
- version: "1.5.18",
654632
+ version: "1.5.19",
654630
654633
  platform: process.platform,
654631
654634
  transcript,
654632
654635
  subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
@@ -666534,7 +666537,7 @@ function WelcomeV2() {
666534
666537
  dimColor: true,
666535
666538
  children: [
666536
666539
  "v",
666537
- "1.5.18"
666540
+ "1.5.19"
666538
666541
  ]
666539
666542
  })
666540
666543
  ]
@@ -667541,7 +667544,7 @@ function completeOnboarding() {
667541
667544
  saveGlobalConfig((current) => ({
667542
667545
  ...current,
667543
667546
  hasCompletedOnboarding: true,
667544
- lastOnboardingVersion: "1.5.18"
667547
+ lastOnboardingVersion: "1.5.19"
667545
667548
  }));
667546
667549
  }
667547
667550
  function showDialog(root2, renderer) {
@@ -672541,7 +672544,7 @@ function appendToLog(path24, message) {
672541
672544
  cwd: getFsImplementation().cwd(),
672542
672545
  userType: "external",
672543
672546
  sessionId: getSessionId(),
672544
- version: "1.5.18"
672547
+ version: "1.5.19"
672545
672548
  };
672546
672549
  getLogWriter(path24).write(messageWithTimestamp);
672547
672550
  }
@@ -676527,8 +676530,8 @@ async function getEnvLessBridgeConfig() {
676527
676530
  }
676528
676531
  async function checkEnvLessBridgeMinVersion() {
676529
676532
  const cfg = await getEnvLessBridgeConfig();
676530
- if (cfg.min_version && lt("1.5.18", cfg.min_version)) {
676531
- return `Your version of RAYU (${"1.5.18"}) is too old for Remote Control.
676533
+ if (cfg.min_version && lt("1.5.19", cfg.min_version)) {
676534
+ return `Your version of RAYU (${"1.5.19"}) is too old for Remote Control.
676532
676535
  Version ${cfg.min_version} or higher is required. Run \`claude update\` to update.`;
676533
676536
  }
676534
676537
  return null;
@@ -677001,7 +677004,7 @@ async function initBridgeCore(params) {
677001
677004
  const rawApi = createBridgeApiClient({
677002
677005
  baseUrl,
677003
677006
  getAccessToken,
677004
- runnerVersion: "1.5.18",
677007
+ runnerVersion: "1.5.19",
677005
677008
  onDebug: logForDebugging,
677006
677009
  onAuth401,
677007
677010
  getTrustedDeviceToken
@@ -684282,7 +684285,7 @@ ${customInstructions}` : customInstructions;
684282
684285
  }
684283
684286
  }
684284
684287
  logForDiagnosticsNoPII("info", "started", {
684285
- version: "1.5.18",
684288
+ version: "1.5.19",
684286
684289
  is_native_binary: isInBundledMode()
684287
684290
  });
684288
684291
  registerCleanup(async () => {
@@ -685001,7 +685004,7 @@ Usage: rayu --remote "your task description"`, () => gracefulShutdown(1));
685001
685004
  pendingHookMessages
685002
685005
  }, renderAndRun);
685003
685006
  }
685004
- }).version(`1.5.18 (${PRODUCT_NAME})`, "-v, --version", "Output the version number");
685007
+ }).version(`1.5.19 (${PRODUCT_NAME})`, "-v, --version", "Output the version number");
685005
685008
  program.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
685006
685009
  program.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
685007
685010
  if (canUserConfigureAdvisor()) {
@@ -685462,7 +685465,7 @@ if (false) {}
685462
685465
  async function main2() {
685463
685466
  const args = process.argv.slice(2);
685464
685467
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
685465
- console.log(`${"1.5.18"} (Rayu-CLI)`);
685468
+ console.log(`${"1.5.19"} (Rayu-CLI)`);
685466
685469
  return;
685467
685470
  }
685468
685471
  if (!isEnvTruthy(process.env.CLAUDE_CODE_DISABLE_TERMINAL_TITLE)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rayu-dev/rayu-cli",
3
- "version": "1.5.18",
3
+ "version": "1.5.19",
4
4
  "description": "Rayu-CLI — a multi-provider AI coding CLI",
5
5
  "type": "module",
6
6
  "bin": {