ur-agent 1.43.2 → 1.43.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.43.3
4
+
5
+ - Bias the assistant toward the interactive arrow-key select menu: the
6
+ AskUserQuestion tool guidance now instructs the model to use the selectable
7
+ menu whenever it offers the user a choice, instead of asking a free-form
8
+ question in plain text that the user has to answer by typing.
9
+
3
10
  ## 1.43.2
4
11
 
5
12
  - Fix artifact pages hanging blank: diff viewer assets (diff2html,
package/dist/cli.js CHANGED
@@ -71146,7 +71146,7 @@ var init_auth = __esm(() => {
71146
71146
 
71147
71147
  // src/utils/userAgent.ts
71148
71148
  function getURCodeUserAgent() {
71149
- return `ur/${"1.43.2"}`;
71149
+ return `ur/${"1.43.3"}`;
71150
71150
  }
71151
71151
 
71152
71152
  // src/utils/workloadContext.ts
@@ -71168,7 +71168,7 @@ function getUserAgent() {
71168
71168
  const clientApp = process.env.UR_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}` : "";
71169
71169
  const workload = getWorkload();
71170
71170
  const workloadSuffix = workload ? `, workload/${workload}` : "";
71171
- return `ur-cli/${"1.43.2"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
71171
+ return `ur-cli/${"1.43.3"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
71172
71172
  }
71173
71173
  function getMCPUserAgent() {
71174
71174
  const parts = [];
@@ -71182,7 +71182,7 @@ function getMCPUserAgent() {
71182
71182
  parts.push(`client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}`);
71183
71183
  }
71184
71184
  const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
71185
- return `ur/${"1.43.2"}${suffix}`;
71185
+ return `ur/${"1.43.3"}${suffix}`;
71186
71186
  }
71187
71187
  function getWebFetchUserAgent() {
71188
71188
  return `UR-User (${getURCodeUserAgent()})`;
@@ -71320,7 +71320,7 @@ var init_user = __esm(() => {
71320
71320
  deviceId,
71321
71321
  sessionId: getSessionId(),
71322
71322
  email: getEmail(),
71323
- appVersion: "1.43.2",
71323
+ appVersion: "1.43.3",
71324
71324
  platform: getHostPlatformForAnalytics(),
71325
71325
  organizationUuid,
71326
71326
  accountUuid,
@@ -77837,7 +77837,7 @@ var init_metadata = __esm(() => {
77837
77837
  COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
77838
77838
  WHITESPACE_REGEX = /\s+/;
77839
77839
  getVersionBase = memoize_default(() => {
77840
- const match = "1.43.2".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
77840
+ const match = "1.43.3".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
77841
77841
  return match ? match[0] : undefined;
77842
77842
  });
77843
77843
  buildEnvContext = memoize_default(async () => {
@@ -77877,7 +77877,7 @@ var init_metadata = __esm(() => {
77877
77877
  isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
77878
77878
  isURCodeAction: isEnvTruthy(process.env.UR_CODE_ACTION),
77879
77879
  isURAiAuth: isURAISubscriber(),
77880
- version: "1.43.2",
77880
+ version: "1.43.3",
77881
77881
  versionBase: getVersionBase(),
77882
77882
  buildTime: "",
77883
77883
  deploymentEnvironment: env2.detectDeploymentEnvironment(),
@@ -78547,7 +78547,7 @@ function initialize1PEventLogging() {
78547
78547
  const platform2 = getPlatform();
78548
78548
  const attributes = {
78549
78549
  [import_semantic_conventions4.ATTR_SERVICE_NAME]: "ur",
78550
- [import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.43.2"
78550
+ [import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.43.3"
78551
78551
  };
78552
78552
  if (platform2 === "wsl") {
78553
78553
  const wslVersion = getWslVersion();
@@ -78574,7 +78574,7 @@ function initialize1PEventLogging() {
78574
78574
  })
78575
78575
  ]
78576
78576
  });
78577
- firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.43.2");
78577
+ firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.43.3");
78578
78578
  }
78579
78579
  async function reinitialize1PEventLoggingIfConfigChanged() {
78580
78580
  if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
@@ -83873,7 +83873,7 @@ function formatAgentTrendReport(report = buildAgentTrendReport()) {
83873
83873
  function formatA2AAgentCard(options = {}, pretty = true) {
83874
83874
  return JSON.stringify(buildA2AAgentCard(options), null, pretty ? 2 : 0);
83875
83875
  }
83876
- var urVersion = "1.43.2", coverage, priorityRoadmap;
83876
+ var urVersion = "1.43.3", coverage, priorityRoadmap;
83877
83877
  var init_trends = __esm(() => {
83878
83878
  coverage = [
83879
83879
  {
@@ -85868,7 +85868,7 @@ function getAttributionHeader(fingerprint) {
85868
85868
  if (!isAttributionHeaderEnabled()) {
85869
85869
  return "";
85870
85870
  }
85871
- const version2 = `${"1.43.2"}.${fingerprint}`;
85871
+ const version2 = `${"1.43.3"}.${fingerprint}`;
85872
85872
  const entrypoint = process.env.UR_CODE_ENTRYPOINT ?? "unknown";
85873
85873
  const cch = "";
85874
85874
  const workload = getWorkload();
@@ -193771,7 +193771,7 @@ function getTelemetryAttributes() {
193771
193771
  attributes["session.id"] = sessionId;
193772
193772
  }
193773
193773
  if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
193774
- attributes["app.version"] = "1.43.2";
193774
+ attributes["app.version"] = "1.43.3";
193775
193775
  }
193776
193776
  const oauthAccount = getOauthAccountInfo();
193777
193777
  if (oauthAccount) {
@@ -209821,7 +209821,7 @@ var init_promptCategory = __esm(() => {
209821
209821
  var ENTER_PLAN_MODE_TOOL_NAME = "EnterPlanMode";
209822
209822
 
209823
209823
  // src/tools/AskUserQuestionTool/prompt.ts
209824
- var ASK_USER_QUESTION_TOOL_NAME = "AskUserQuestion", ASK_USER_QUESTION_TOOL_CHIP_WIDTH = 12, DESCRIPTION5 = "Asks the user multiple choice questions to gather information, clarify ambiguity, understand preferences, make decisions or offer them choices.", PREVIEW_FEATURE_PROMPT, ASK_USER_QUESTION_TOOL_PROMPT;
209824
+ var ASK_USER_QUESTION_TOOL_NAME = "AskUserQuestion", ASK_USER_QUESTION_TOOL_CHIP_WIDTH = 12, DESCRIPTION5 = "Asks the user multiple choice questions to gather information, clarify ambiguity, understand preferences, make decisions or offer them choices. This is the required way to present the user with a choice: whenever you would otherwise end a message by asking the user to pick between options or decide a direction, call this tool instead of asking in plain text, so the user gets a selectable menu rather than having to type a free-form answer.", PREVIEW_FEATURE_PROMPT, ASK_USER_QUESTION_TOOL_PROMPT;
209825
209825
  var init_prompt9 = __esm(() => {
209826
209826
  PREVIEW_FEATURE_PROMPT = {
209827
209827
  markdown: `
@@ -209850,8 +209850,10 @@ Preview content must be a self-contained HTML fragment (no <html>/<body> wrapper
209850
209850
  3. Get decisions on implementation choices as you work
209851
209851
  4. Offer choices to the user about what direction to take.
209852
209852
 
209853
+ Strongly prefer this tool over asking a question in plain assistant text. Any time your reply would end with a question that offers the user options or asks them to choose a direction (e.g. "Would you like A or B?", "Which approach should I take?", "Want me to do X or Y?"), call this tool with those options instead so the user gets a selectable arrow-key menu. Only ask in plain text when the answer is genuinely open-ended and cannot be expressed as a small set of choices.
209854
+
209853
209855
  Usage notes:
209854
- - Users will always be able to select "Other" to provide custom text input
209856
+ - Users will always be able to select "Other" to provide custom text input, so it is safe to offer choices even when you are unsure you have listed every option
209855
209857
  - Use multiSelect: true to allow multiple answers to be selected for a question
209856
209858
  - If you recommend a specific option, make that the first option in the list and add "(Recommended)" at the end of the label
209857
209859
 
@@ -229157,7 +229159,7 @@ function getInstallationEnv() {
229157
229159
  return;
229158
229160
  }
229159
229161
  function getURCodeVersion() {
229160
- return "1.43.2";
229162
+ return "1.43.3";
229161
229163
  }
229162
229164
  async function getInstalledVSCodeExtensionVersion(command) {
229163
229165
  const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
@@ -231996,7 +231998,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
231996
231998
  const client2 = new Client({
231997
231999
  name: "ur",
231998
232000
  title: "UR",
231999
- version: "1.43.2",
232001
+ version: "1.43.3",
232000
232002
  description: "UR-Nexus autonomous engineering workflow engine",
232001
232003
  websiteUrl: PRODUCT_URL
232002
232004
  }, {
@@ -232350,7 +232352,7 @@ var init_client5 = __esm(() => {
232350
232352
  const client2 = new Client({
232351
232353
  name: "ur",
232352
232354
  title: "UR",
232353
- version: "1.43.2",
232355
+ version: "1.43.3",
232354
232356
  description: "UR-Nexus autonomous engineering workflow engine",
232355
232357
  websiteUrl: PRODUCT_URL
232356
232358
  }, {
@@ -242164,9 +242166,9 @@ async function assertMinVersion() {
242164
242166
  if (false) {}
242165
242167
  try {
242166
242168
  const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
242167
- if (versionConfig.minVersion && lt("1.43.2", versionConfig.minVersion)) {
242169
+ if (versionConfig.minVersion && lt("1.43.3", versionConfig.minVersion)) {
242168
242170
  console.error(`
242169
- It looks like your version of UR (${"1.43.2"}) needs an update.
242171
+ It looks like your version of UR (${"1.43.3"}) needs an update.
242170
242172
  A newer version (${versionConfig.minVersion} or higher) is required to continue.
242171
242173
 
242172
242174
  To update, please run:
@@ -242382,7 +242384,7 @@ async function installGlobalPackage(specificVersion) {
242382
242384
  logError2(new AutoUpdaterError("Another process is currently installing an update"));
242383
242385
  logEvent("tengu_auto_updater_lock_contention", {
242384
242386
  pid: process.pid,
242385
- currentVersion: "1.43.2"
242387
+ currentVersion: "1.43.3"
242386
242388
  });
242387
242389
  return "in_progress";
242388
242390
  }
@@ -242391,7 +242393,7 @@ async function installGlobalPackage(specificVersion) {
242391
242393
  if (!env2.isRunningWithBun() && env2.isNpmFromWindowsPath()) {
242392
242394
  logError2(new Error("Windows NPM detected in WSL environment"));
242393
242395
  logEvent("tengu_auto_updater_windows_npm_in_wsl", {
242394
- currentVersion: "1.43.2"
242396
+ currentVersion: "1.43.3"
242395
242397
  });
242396
242398
  console.error(`
242397
242399
  Error: Windows NPM detected in WSL
@@ -242926,7 +242928,7 @@ function detectLinuxGlobPatternWarnings() {
242926
242928
  }
242927
242929
  async function getDoctorDiagnostic() {
242928
242930
  const installationType = await getCurrentInstallationType();
242929
- const version2 = typeof MACRO !== "undefined" ? "1.43.2" : "unknown";
242931
+ const version2 = typeof MACRO !== "undefined" ? "1.43.3" : "unknown";
242930
242932
  const installationPath = await getInstallationPath();
242931
242933
  const invokedBinary = getInvokedBinary();
242932
242934
  const multipleInstallations = await detectMultipleInstallations();
@@ -243861,8 +243863,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
243861
243863
  const maxVersion = await getMaxVersion();
243862
243864
  if (maxVersion && gt(version2, maxVersion)) {
243863
243865
  logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
243864
- if (gte("1.43.2", maxVersion)) {
243865
- logForDebugging(`Native installer: current version ${"1.43.2"} is already at or above maxVersion ${maxVersion}, skipping update`);
243866
+ if (gte("1.43.3", maxVersion)) {
243867
+ logForDebugging(`Native installer: current version ${"1.43.3"} is already at or above maxVersion ${maxVersion}, skipping update`);
243866
243868
  logEvent("tengu_native_update_skipped_max_version", {
243867
243869
  latency_ms: Date.now() - startTime,
243868
243870
  max_version: maxVersion,
@@ -243873,7 +243875,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
243873
243875
  version2 = maxVersion;
243874
243876
  }
243875
243877
  }
243876
- if (!forceReinstall && version2 === "1.43.2" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
243878
+ if (!forceReinstall && version2 === "1.43.3" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
243877
243879
  logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
243878
243880
  logEvent("tengu_native_update_complete", {
243879
243881
  latency_ms: Date.now() - startTime,
@@ -340862,7 +340864,7 @@ function Feedback({
340862
340864
  platform: env2.platform,
340863
340865
  gitRepo: envInfo.isGit,
340864
340866
  terminal: env2.terminal,
340865
- version: "1.43.2",
340867
+ version: "1.43.3",
340866
340868
  transcript: normalizeMessagesForAPI(messages),
340867
340869
  errors: sanitizedErrors,
340868
340870
  lastApiRequest: getLastAPIRequest(),
@@ -341054,7 +341056,7 @@ function Feedback({
341054
341056
  ", ",
341055
341057
  env2.terminal,
341056
341058
  ", v",
341057
- "1.43.2"
341059
+ "1.43.3"
341058
341060
  ]
341059
341061
  }, undefined, true, undefined, this)
341060
341062
  ]
@@ -341160,7 +341162,7 @@ ${sanitizedDescription}
341160
341162
  ` + `**Environment Info**
341161
341163
  ` + `- Platform: ${env2.platform}
341162
341164
  ` + `- Terminal: ${env2.terminal}
341163
- ` + `- Version: ${"1.43.2"}
341165
+ ` + `- Version: ${"1.43.3"}
341164
341166
  ` + `- Feedback ID: ${feedbackId}
341165
341167
  ` + `
341166
341168
  **Errors**
@@ -344271,7 +344273,7 @@ function buildPrimarySection() {
344271
344273
  }, undefined, false, undefined, this);
344272
344274
  return [{
344273
344275
  label: "Version",
344274
- value: "1.43.2"
344276
+ value: "1.43.3"
344275
344277
  }, {
344276
344278
  label: "Session name",
344277
344279
  value: nameValue
@@ -347572,7 +347574,7 @@ function Config({
347572
347574
  }
347573
347575
  }, undefined, false, undefined, this)
347574
347576
  }, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime177.jsxDEV(ChannelDowngradeDialog, {
347575
- currentVersion: "1.43.2",
347577
+ currentVersion: "1.43.3",
347576
347578
  onChoice: (choice) => {
347577
347579
  setShowSubmenu(null);
347578
347580
  setTabsHidden(false);
@@ -347584,7 +347586,7 @@ function Config({
347584
347586
  autoUpdatesChannel: "stable"
347585
347587
  };
347586
347588
  if (choice === "stay") {
347587
- newSettings.minimumVersion = "1.43.2";
347589
+ newSettings.minimumVersion = "1.43.3";
347588
347590
  }
347589
347591
  updateSettingsForSource("userSettings", newSettings);
347590
347592
  setSettingsData((prev_27) => ({
@@ -355654,7 +355656,7 @@ function HelpV2(t0) {
355654
355656
  let t6;
355655
355657
  if ($3[31] !== tabs) {
355656
355658
  t6 = /* @__PURE__ */ jsx_dev_runtime204.jsxDEV(Tabs, {
355657
- title: `UR v${"1.43.2"}`,
355659
+ title: `UR v${"1.43.3"}`,
355658
355660
  color: "professionalBlue",
355659
355661
  defaultTab: "general",
355660
355662
  children: tabs
@@ -356400,7 +356402,7 @@ function buildToolUseContext(tools, readFileStateCache) {
356400
356402
  async function handleInitialize(options2) {
356401
356403
  return {
356402
356404
  name: "UR",
356403
- version: "1.43.2",
356405
+ version: "1.43.3",
356404
356406
  protocolVersion: "0.1.0",
356405
356407
  workspaceRoot: options2.cwd,
356406
356408
  capabilities: {
@@ -376542,7 +376544,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
376542
376544
  return [];
376543
376545
  }
376544
376546
  }
376545
- async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.43.2") {
376547
+ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.43.3") {
376546
376548
  if (process.env.USER_TYPE === "ant") {
376547
376549
  const changelog = "";
376548
376550
  if (changelog) {
@@ -376569,7 +376571,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.43.2")
376569
376571
  releaseNotes
376570
376572
  };
376571
376573
  }
376572
- function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.43.2") {
376574
+ function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.43.3") {
376573
376575
  if (process.env.USER_TYPE === "ant") {
376574
376576
  const changelog = "";
376575
376577
  if (changelog) {
@@ -377748,7 +377750,7 @@ function getRecentActivitySync() {
377748
377750
  return cachedActivity;
377749
377751
  }
377750
377752
  function getLogoDisplayData() {
377751
- const version2 = process.env.DEMO_VERSION ?? "1.43.2";
377753
+ const version2 = process.env.DEMO_VERSION ?? "1.43.3";
377752
377754
  const serverUrl = getDirectConnectServerUrl();
377753
377755
  const displayPath = process.env.DEMO_VERSION ? "/code/ur" : getDisplayPath(getCwd());
377754
377756
  const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
@@ -378537,7 +378539,7 @@ function LogoV2() {
378537
378539
  if ($3[2] === Symbol.for("react.memo_cache_sentinel")) {
378538
378540
  t2 = () => {
378539
378541
  const currentConfig2 = getGlobalConfig();
378540
- if (currentConfig2.lastReleaseNotesSeen === "1.43.2") {
378542
+ if (currentConfig2.lastReleaseNotesSeen === "1.43.3") {
378541
378543
  return;
378542
378544
  }
378543
378545
  saveGlobalConfig(_temp326);
@@ -379222,12 +379224,12 @@ function LogoV2() {
379222
379224
  return t41;
379223
379225
  }
379224
379226
  function _temp326(current) {
379225
- if (current.lastReleaseNotesSeen === "1.43.2") {
379227
+ if (current.lastReleaseNotesSeen === "1.43.3") {
379226
379228
  return current;
379227
379229
  }
379228
379230
  return {
379229
379231
  ...current,
379230
- lastReleaseNotesSeen: "1.43.2"
379232
+ lastReleaseNotesSeen: "1.43.3"
379231
379233
  };
379232
379234
  }
379233
379235
  function _temp243(s_0) {
@@ -596642,7 +596644,7 @@ async function captureMemoryDiagnostics(trigger2, dumpNumber = 0) {
596642
596644
  smapsRollup,
596643
596645
  platform: process.platform,
596644
596646
  nodeVersion: process.version,
596645
- ccVersion: "1.43.2"
596647
+ ccVersion: "1.43.3"
596646
596648
  };
596647
596649
  }
596648
596650
  async function performHeapDump(trigger2 = "manual", dumpNumber = 0) {
@@ -597228,7 +597230,7 @@ var init_bridge_kick = __esm(() => {
597228
597230
  var call137 = async () => {
597229
597231
  return {
597230
597232
  type: "text",
597231
- value: "1.43.2"
597233
+ value: "1.43.3"
597232
597234
  };
597233
597235
  }, version2, version_default;
597234
597236
  var init_version = __esm(() => {
@@ -607321,7 +607323,7 @@ function generateHtmlReport(data, insights) {
607321
607323
  </html>`;
607322
607324
  }
607323
607325
  function buildExportData(data, insights, facets, remoteStats) {
607324
- const version3 = typeof MACRO !== "undefined" ? "1.43.2" : "unknown";
607326
+ const version3 = typeof MACRO !== "undefined" ? "1.43.3" : "unknown";
607325
607327
  const remote_hosts_collected = remoteStats?.hosts.filter((h2) => h2.sessionCount > 0).map((h2) => h2.name);
607326
607328
  const facets_summary = {
607327
607329
  total: facets.size,
@@ -611601,7 +611603,7 @@ var init_sessionStorage = __esm(() => {
611601
611603
  init_settings2();
611602
611604
  init_slowOperations();
611603
611605
  init_uuid();
611604
- VERSION5 = typeof MACRO !== "undefined" ? "1.43.2" : "unknown";
611606
+ VERSION5 = typeof MACRO !== "undefined" ? "1.43.3" : "unknown";
611605
611607
  MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
611606
611608
  SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
611607
611609
  EPHEMERAL_PROGRESS_TYPES = new Set([
@@ -612806,7 +612808,7 @@ var init_filesystem = __esm(() => {
612806
612808
  });
612807
612809
  getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
612808
612810
  const nonce = randomBytes18(16).toString("hex");
612809
- return join202(getURTempDir(), "bundled-skills", "1.43.2", nonce);
612811
+ return join202(getURTempDir(), "bundled-skills", "1.43.3", nonce);
612810
612812
  });
612811
612813
  getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
612812
612814
  });
@@ -619095,7 +619097,7 @@ function computeFingerprint(messageText2, version3) {
619095
619097
  }
619096
619098
  function computeFingerprintFromMessages(messages) {
619097
619099
  const firstMessageText = extractFirstMessageText(messages);
619098
- return computeFingerprint(firstMessageText, "1.43.2");
619100
+ return computeFingerprint(firstMessageText, "1.43.3");
619099
619101
  }
619100
619102
  var FINGERPRINT_SALT = "59cf53e54c78";
619101
619103
  var init_fingerprint = () => {};
@@ -620969,7 +620971,7 @@ async function sideQuery(opts) {
620969
620971
  betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
620970
620972
  }
620971
620973
  const messageText2 = extractFirstUserMessageText(messages);
620972
- const fingerprint2 = computeFingerprint(messageText2, "1.43.2");
620974
+ const fingerprint2 = computeFingerprint(messageText2, "1.43.3");
620973
620975
  const attributionHeader = getAttributionHeader(fingerprint2);
620974
620976
  const systemBlocks = [
620975
620977
  attributionHeader ? { type: "text", text: attributionHeader } : null,
@@ -625706,7 +625708,7 @@ function buildSystemInitMessage(inputs) {
625706
625708
  slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
625707
625709
  apiKeySource: getURHQApiKeyWithSource().source,
625708
625710
  betas: getSdkBetas(),
625709
- ur_version: "1.43.2",
625711
+ ur_version: "1.43.3",
625710
625712
  output_style: outputStyle2,
625711
625713
  agents: inputs.agents.map((agent) => agent.agentType),
625712
625714
  skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill2) => skill2.name),
@@ -640334,7 +640336,7 @@ var init_useVoiceEnabled = __esm(() => {
640334
640336
  function getSemverPart(version3) {
640335
640337
  return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
640336
640338
  }
640337
- function useUpdateNotification(updatedVersion, initialVersion = "1.43.2") {
640339
+ function useUpdateNotification(updatedVersion, initialVersion = "1.43.3") {
640338
640340
  const [lastNotifiedSemver, setLastNotifiedSemver] = import_react226.useState(() => getSemverPart(initialVersion));
640339
640341
  if (!updatedVersion) {
640340
640342
  return null;
@@ -640383,7 +640385,7 @@ function AutoUpdater({
640383
640385
  return;
640384
640386
  }
640385
640387
  if (false) {}
640386
- const currentVersion = "1.43.2";
640388
+ const currentVersion = "1.43.3";
640387
640389
  const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
640388
640390
  let latestVersion = await getLatestVersion(channel);
640389
640391
  const isDisabled = isAutoUpdaterDisabled();
@@ -640612,12 +640614,12 @@ function NativeAutoUpdater({
640612
640614
  logEvent("tengu_native_auto_updater_start", {});
640613
640615
  try {
640614
640616
  const maxVersion = await getMaxVersion();
640615
- if (maxVersion && gt("1.43.2", maxVersion)) {
640617
+ if (maxVersion && gt("1.43.3", maxVersion)) {
640616
640618
  const msg = await getMaxVersionMessage();
640617
640619
  setMaxVersionIssue(msg ?? "affects your version");
640618
640620
  }
640619
640621
  const result = await installLatest(channel);
640620
- const currentVersion = "1.43.2";
640622
+ const currentVersion = "1.43.3";
640621
640623
  const latencyMs = Date.now() - startTime;
640622
640624
  if (result.lockFailed) {
640623
640625
  logEvent("tengu_native_auto_updater_lock_contention", {
@@ -640754,17 +640756,17 @@ function PackageManagerAutoUpdater(t0) {
640754
640756
  const maxVersion = await getMaxVersion();
640755
640757
  if (maxVersion && latest && gt(latest, maxVersion)) {
640756
640758
  logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
640757
- if (gte("1.43.2", maxVersion)) {
640758
- logForDebugging(`PackageManagerAutoUpdater: current version ${"1.43.2"} is already at or above maxVersion ${maxVersion}, skipping update`);
640759
+ if (gte("1.43.3", maxVersion)) {
640760
+ logForDebugging(`PackageManagerAutoUpdater: current version ${"1.43.3"} is already at or above maxVersion ${maxVersion}, skipping update`);
640759
640761
  setUpdateAvailable(false);
640760
640762
  return;
640761
640763
  }
640762
640764
  latest = maxVersion;
640763
640765
  }
640764
- const hasUpdate = latest && !gte("1.43.2", latest) && !shouldSkipVersion(latest);
640766
+ const hasUpdate = latest && !gte("1.43.3", latest) && !shouldSkipVersion(latest);
640765
640767
  setUpdateAvailable(!!hasUpdate);
640766
640768
  if (hasUpdate) {
640767
- logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.43.2"} -> ${latest}`);
640769
+ logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.43.3"} -> ${latest}`);
640768
640770
  }
640769
640771
  };
640770
640772
  $3[0] = t1;
@@ -640798,7 +640800,7 @@ function PackageManagerAutoUpdater(t0) {
640798
640800
  wrap: "truncate",
640799
640801
  children: [
640800
640802
  "currentVersion: ",
640801
- "1.43.2"
640803
+ "1.43.3"
640802
640804
  ]
640803
640805
  }, undefined, true, undefined, this);
640804
640806
  $3[3] = verbose;
@@ -653250,7 +653252,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
653250
653252
  project_dir: getOriginalCwd(),
653251
653253
  added_dirs: addedDirs
653252
653254
  },
653253
- version: "1.43.2",
653255
+ version: "1.43.3",
653254
653256
  output_style: {
653255
653257
  name: outputStyleName
653256
653258
  },
@@ -653333,7 +653335,7 @@ function StatusLineInner({
653333
653335
  const taskValues = Object.values(tasks2);
653334
653336
  const taskRunningCount = taskValues.filter((task2) => task2.status === "running" || task2.status === "pending").length;
653335
653337
  const defaultStatusLineText = buildDefaultStatusBar({
653336
- version: "1.43.2",
653338
+ version: "1.43.3",
653337
653339
  providerLabel: providerRuntime.providerLabel,
653338
653340
  authMode: providerRuntime.authLabel,
653339
653341
  model: providerRuntime.model ?? renderModelName(mainLoopModel),
@@ -664821,7 +664823,7 @@ async function submitTranscriptShare(messages, trigger2, appearanceId) {
664821
664823
  } catch {}
664822
664824
  const data = {
664823
664825
  trigger: trigger2,
664824
- version: "1.43.2",
664826
+ version: "1.43.3",
664825
664827
  platform: process.platform,
664826
664828
  transcript,
664827
664829
  subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
@@ -676706,7 +676708,7 @@ function WelcomeV2() {
676706
676708
  dimColor: true,
676707
676709
  children: [
676708
676710
  "v",
676709
- "1.43.2"
676711
+ "1.43.3"
676710
676712
  ]
676711
676713
  }, undefined, true, undefined, this)
676712
676714
  ]
@@ -677966,7 +677968,7 @@ function completeOnboarding() {
677966
677968
  saveGlobalConfig((current) => ({
677967
677969
  ...current,
677968
677970
  hasCompletedOnboarding: true,
677969
- lastOnboardingVersion: "1.43.2"
677971
+ lastOnboardingVersion: "1.43.3"
677970
677972
  }));
677971
677973
  }
677972
677974
  function showDialog(root2, renderer) {
@@ -683003,7 +683005,7 @@ function appendToLog(path24, message) {
683003
683005
  cwd: getFsImplementation().cwd(),
683004
683006
  userType: process.env.USER_TYPE,
683005
683007
  sessionId: getSessionId(),
683006
- version: "1.43.2"
683008
+ version: "1.43.3"
683007
683009
  };
683008
683010
  getLogWriter(path24).write(messageWithTimestamp);
683009
683011
  }
@@ -687097,8 +687099,8 @@ async function getEnvLessBridgeConfig() {
687097
687099
  }
687098
687100
  async function checkEnvLessBridgeMinVersion() {
687099
687101
  const cfg = await getEnvLessBridgeConfig();
687100
- if (cfg.min_version && lt("1.43.2", cfg.min_version)) {
687101
- return `Your version of UR (${"1.43.2"}) is too old for Remote Control.
687102
+ if (cfg.min_version && lt("1.43.3", cfg.min_version)) {
687103
+ return `Your version of UR (${"1.43.3"}) is too old for Remote Control.
687102
687104
  Version ${cfg.min_version} or higher is required. Run \`ur update\` to update.`;
687103
687105
  }
687104
687106
  return null;
@@ -687572,7 +687574,7 @@ async function initBridgeCore(params) {
687572
687574
  const rawApi = createBridgeApiClient({
687573
687575
  baseUrl,
687574
687576
  getAccessToken,
687575
- runnerVersion: "1.43.2",
687577
+ runnerVersion: "1.43.3",
687576
687578
  onDebug: logForDebugging,
687577
687579
  onAuth401,
687578
687580
  getTrustedDeviceToken
@@ -693254,7 +693256,7 @@ async function startMCPServer(cwd3, debug2, verbose) {
693254
693256
  setCwd(cwd3);
693255
693257
  const server2 = new Server({
693256
693258
  name: "ur/tengu",
693257
- version: "1.43.2"
693259
+ version: "1.43.3"
693258
693260
  }, {
693259
693261
  capabilities: {
693260
693262
  tools: {}
@@ -695296,7 +695298,7 @@ async function update() {
695296
695298
  logEvent("tengu_update_check", {});
695297
695299
  const diagnostic = await getDoctorDiagnostic();
695298
695300
  const result = await checkUpgradeStatus({
695299
- currentVersion: "1.43.2",
695301
+ currentVersion: "1.43.3",
695300
695302
  packageName: UR_AGENT_PACKAGE_NAME,
695301
695303
  installationType: diagnostic.installationType,
695302
695304
  latestVersion: () => getLatestNpmPackageVersion(UR_AGENT_PACKAGE_NAME)
@@ -696542,7 +696544,7 @@ ${customInstructions}` : customInstructions;
696542
696544
  }
696543
696545
  }
696544
696546
  logForDiagnosticsNoPII("info", "started", {
696545
- version: "1.43.2",
696547
+ version: "1.43.3",
696546
696548
  is_native_binary: isInBundledMode()
696547
696549
  });
696548
696550
  registerCleanup(async () => {
@@ -697328,7 +697330,7 @@ Usage: ur --remote "your task description"`, () => gracefulShutdown(1));
697328
697330
  pendingHookMessages
697329
697331
  }, renderAndRun);
697330
697332
  }
697331
- }).version("1.43.2 (UR-Nexus)", "-v, --version", "Output the version number");
697333
+ }).version("1.43.3 (UR-Nexus)", "-v, --version", "Output the version number");
697332
697334
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
697333
697335
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
697334
697336
  if (canUserConfigureAdvisor()) {
@@ -698243,7 +698245,7 @@ if (false) {}
698243
698245
  async function main2() {
698244
698246
  const args = process.argv.slice(2);
698245
698247
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
698246
- console.log(`${"1.43.2"} (UR-Nexus)`);
698248
+ console.log(`${"1.43.3"} (UR-Nexus)`);
698247
698249
  return;
698248
698250
  }
698249
698251
  if (args[0] === "a2a" && args[1] === "serve" && !args.includes("--help") && !args.includes("-h")) {
@@ -44,7 +44,7 @@
44
44
  <main id="content" class="content">
45
45
  <header class="topbar">
46
46
  <div>
47
- <p class="eyebrow">Version 1.43.2</p>
47
+ <p class="eyebrow">Version 1.43.3</p>
48
48
  <h1>UR-Nexus Documentation</h1>
49
49
  <p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-Nexus.</p>
50
50
  </div>
@@ -2,7 +2,7 @@
2
2
  "name": "ur-inline-diffs",
3
3
  "displayName": "UR Inline Diffs",
4
4
  "description": "Review, apply, and reject UR inline diff bundles from .ur/ide/diffs inside VS Code.",
5
- "version": "1.43.2",
5
+ "version": "1.43.3",
6
6
  "publisher": "ur-nexus",
7
7
  "engines": {
8
8
  "vscode": "^1.92.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ur-agent",
3
- "version": "1.43.2",
3
+ "version": "1.43.3",
4
4
  "description": "UR-Nexus \u2014 autonomous engineering workflow engine (plan, execute, test, verify, document, benchmark, reproduce)",
5
5
  "type": "module",
6
6
  "packageManager": "bun@1.3.14",