ur-agent 1.57.4 → 1.57.5

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,16 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.57.5
4
+
5
+ - Fixed the release gate failing on `repoEditImports`. The gate runs
6
+ `bun test --timeout 120000`, but a per-test budget silently overrides that
7
+ global, and this test declared 15s while its body — which builds a
8
+ TypeScript program to resolve imports — takes about 21s on a 2-core CI
9
+ runner. Every assertion passed; the release went red on timing alone.
10
+ - Added a guard so this cannot recur: a test now fails if any test file
11
+ declares a per-test budget below 60s. Both budgets that broke CI (15s and
12
+ 20s) are flagged by it; ordinary call arguments are not.
13
+
3
14
  ## 1.57.4
4
15
 
5
16
  - Fixed slash command arguments being silently truncated. `parseArguments`
package/dist/cli.js CHANGED
@@ -75151,7 +75151,7 @@ var init_auth = __esm(() => {
75151
75151
 
75152
75152
  // src/utils/userAgent.ts
75153
75153
  function getURCodeUserAgent() {
75154
- return `ur/${"1.57.4"}`;
75154
+ return `ur/${"1.57.5"}`;
75155
75155
  }
75156
75156
 
75157
75157
  // src/utils/workloadContext.ts
@@ -75173,7 +75173,7 @@ function getUserAgent() {
75173
75173
  const clientApp = process.env.UR_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}` : "";
75174
75174
  const workload = getWorkload();
75175
75175
  const workloadSuffix = workload ? `, workload/${workload}` : "";
75176
- return `ur-cli/${"1.57.4"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
75176
+ return `ur-cli/${"1.57.5"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
75177
75177
  }
75178
75178
  function getMCPUserAgent() {
75179
75179
  const parts = [];
@@ -75187,7 +75187,7 @@ function getMCPUserAgent() {
75187
75187
  parts.push(`client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}`);
75188
75188
  }
75189
75189
  const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
75190
- return `ur/${"1.57.4"}${suffix}`;
75190
+ return `ur/${"1.57.5"}${suffix}`;
75191
75191
  }
75192
75192
  function getWebFetchUserAgent() {
75193
75193
  return `UR-User (${getURCodeUserAgent()})`;
@@ -75325,7 +75325,7 @@ var init_user = __esm(() => {
75325
75325
  deviceId,
75326
75326
  sessionId: getSessionId(),
75327
75327
  email: getEmail(),
75328
- appVersion: "1.57.4",
75328
+ appVersion: "1.57.5",
75329
75329
  platform: getHostPlatformForAnalytics(),
75330
75330
  organizationUuid,
75331
75331
  accountUuid,
@@ -83525,7 +83525,7 @@ var init_metadata = __esm(() => {
83525
83525
  COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
83526
83526
  WHITESPACE_REGEX = /\s+/;
83527
83527
  getVersionBase = memoize_default(() => {
83528
- const match = "1.57.4".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
83528
+ const match = "1.57.5".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
83529
83529
  return match ? match[0] : undefined;
83530
83530
  });
83531
83531
  buildEnvContext = memoize_default(async () => {
@@ -83565,7 +83565,7 @@ var init_metadata = __esm(() => {
83565
83565
  isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
83566
83566
  isURCodeAction: isEnvTruthy(process.env.UR_CODE_ACTION),
83567
83567
  isURAiAuth: isURAISubscriber(),
83568
- version: "1.57.4",
83568
+ version: "1.57.5",
83569
83569
  versionBase: getVersionBase(),
83570
83570
  buildTime: "",
83571
83571
  deploymentEnvironment: env2.detectDeploymentEnvironment(),
@@ -84235,7 +84235,7 @@ function initialize1PEventLogging() {
84235
84235
  const platform2 = getPlatform();
84236
84236
  const attributes = {
84237
84237
  [import_semantic_conventions4.ATTR_SERVICE_NAME]: "ur",
84238
- [import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.57.4"
84238
+ [import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.57.5"
84239
84239
  };
84240
84240
  if (platform2 === "wsl") {
84241
84241
  const wslVersion = getWslVersion();
@@ -84263,7 +84263,7 @@ function initialize1PEventLogging() {
84263
84263
  })
84264
84264
  ]
84265
84265
  });
84266
- firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.57.4");
84266
+ firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.57.5");
84267
84267
  }
84268
84268
  async function reinitialize1PEventLoggingIfConfigChanged() {
84269
84269
  if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
@@ -94102,7 +94102,7 @@ function formatAgentTrendReport(report = buildAgentTrendReport()) {
94102
94102
  function formatA2AAgentCard(options = {}, pretty = true) {
94103
94103
  return JSON.stringify(buildA2AAgentCard(options), null, pretty ? 2 : 0);
94104
94104
  }
94105
- var urVersion = "1.57.4", researchSnapshotDate = "2026-07-15", coverage, priorityRoadmap;
94105
+ var urVersion = "1.57.5", researchSnapshotDate = "2026-07-15", coverage, priorityRoadmap;
94106
94106
  var init_trends = __esm(() => {
94107
94107
  init_a2aCardSignature();
94108
94108
  coverage = [
@@ -96903,7 +96903,7 @@ function getAttributionHeader(fingerprint) {
96903
96903
  if (!isAttributionHeaderEnabled()) {
96904
96904
  return "";
96905
96905
  }
96906
- const version2 = `${"1.57.4"}.${fingerprint}`;
96906
+ const version2 = `${"1.57.5"}.${fingerprint}`;
96907
96907
  const entrypoint = process.env.UR_CODE_ENTRYPOINT ?? "unknown";
96908
96908
  const cch = "";
96909
96909
  const workload = getWorkload();
@@ -154492,7 +154492,7 @@ var init_projectSafety = __esm(() => {
154492
154492
  function getInstruments() {
154493
154493
  if (instruments)
154494
154494
  return instruments;
154495
- const meter = import_api10.metrics.getMeter("ur-agent.gen_ai", "1.57.4");
154495
+ const meter = import_api10.metrics.getMeter("ur-agent.gen_ai", "1.57.5");
154496
154496
  instruments = {
154497
154497
  operationDuration: meter.createHistogram("gen_ai.client.operation.duration", {
154498
154498
  description: "GenAI operation duration.",
@@ -154590,7 +154590,7 @@ function genAiAgentAttributes() {
154590
154590
  "gen_ai.operation.name": GEN_AI_OPERATION_INVOKE_AGENT,
154591
154591
  "gen_ai.provider.name": "ur",
154592
154592
  "gen_ai.agent.name": "UR-Nexus",
154593
- "gen_ai.agent.version": "1.57.4"
154593
+ "gen_ai.agent.version": "1.57.5"
154594
154594
  };
154595
154595
  }
154596
154596
  function genAiWorkflowAttributes(workflowName) {
@@ -154606,7 +154606,7 @@ function genAiWorkflowAttributes(workflowName) {
154606
154606
  function startGenAiWorkflowSpan(workflowName) {
154607
154607
  const attributes = genAiWorkflowAttributes(workflowName);
154608
154608
  const name = typeof attributes["gen_ai.workflow.name"] === "string" ? `invoke_workflow ${attributes["gen_ai.workflow.name"]}` : GEN_AI_OPERATION_INVOKE_WORKFLOW;
154609
- return import_api10.trace.getTracer("ur-agent.gen_ai", "1.57.4").startSpan(name, { kind: import_api10.SpanKind.INTERNAL, attributes });
154609
+ return import_api10.trace.getTracer("ur-agent.gen_ai", "1.57.5").startSpan(name, { kind: import_api10.SpanKind.INTERNAL, attributes });
154610
154610
  }
154611
154611
  function endGenAiWorkflowSpan(span, options2 = {}) {
154612
154612
  try {
@@ -154644,7 +154644,7 @@ function startGenAiMemorySpan(operation, options2 = {}) {
154644
154644
  if (options2.recordCount !== undefined && Number.isInteger(options2.recordCount) && options2.recordCount >= 0) {
154645
154645
  attributes["gen_ai.memory.record.count"] = options2.recordCount;
154646
154646
  }
154647
- return import_api10.trace.getTracer("ur-agent.gen_ai", "1.57.4").startSpan(operation, { kind: import_api10.SpanKind.INTERNAL, attributes });
154647
+ return import_api10.trace.getTracer("ur-agent.gen_ai", "1.57.5").startSpan(operation, { kind: import_api10.SpanKind.INTERNAL, attributes });
154648
154648
  }
154649
154649
  function endGenAiMemorySpan(span, options2 = {}) {
154650
154650
  try {
@@ -206163,7 +206163,7 @@ function getTelemetryAttributes() {
206163
206163
  attributes["session.id"] = sessionId;
206164
206164
  }
206165
206165
  if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
206166
- attributes["app.version"] = "1.57.4";
206166
+ attributes["app.version"] = "1.57.5";
206167
206167
  }
206168
206168
  const oauthAccount = getOauthAccountInfo();
206169
206169
  if (oauthAccount) {
@@ -241837,7 +241837,7 @@ function getInstallationEnv() {
241837
241837
  return;
241838
241838
  }
241839
241839
  function getURCodeVersion() {
241840
- return "1.57.4";
241840
+ return "1.57.5";
241841
241841
  }
241842
241842
  async function getInstalledVSCodeExtensionVersion(command) {
241843
241843
  const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
@@ -249168,7 +249168,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
249168
249168
  const client2 = new Client({
249169
249169
  name: "ur",
249170
249170
  title: "UR",
249171
- version: "1.57.4",
249171
+ version: "1.57.5",
249172
249172
  description: "UR-Nexus autonomous engineering workflow engine",
249173
249173
  websiteUrl: PRODUCT_URL
249174
249174
  }, {
@@ -249528,7 +249528,7 @@ var init_client5 = __esm(() => {
249528
249528
  const client2 = new Client({
249529
249529
  name: "ur",
249530
249530
  title: "UR",
249531
- version: "1.57.4",
249531
+ version: "1.57.5",
249532
249532
  description: "UR-Nexus autonomous engineering workflow engine",
249533
249533
  websiteUrl: PRODUCT_URL
249534
249534
  }, {
@@ -262129,7 +262129,7 @@ async function createRuntime() {
262129
262129
  bootstrapTelemetry();
262130
262130
  const resource = defaultResource().merge(detectResources({ detectors: [envDetector] })).merge(resourceFromAttributes({
262131
262131
  [import_semantic_conventions7.ATTR_SERVICE_NAME]: "ur-agent",
262132
- [import_semantic_conventions7.ATTR_SERVICE_VERSION]: "1.57.4"
262132
+ [import_semantic_conventions7.ATTR_SERVICE_VERSION]: "1.57.5"
262133
262133
  }));
262134
262134
  const tracerProvider = exporters.traces.length > 0 ? new BasicTracerProvider({
262135
262135
  resource,
@@ -262162,11 +262162,11 @@ async function createRuntime() {
262162
262162
  setMeterProvider(meterProvider);
262163
262163
  setLoggerProvider(loggerProvider);
262164
262164
  if (meterProvider) {
262165
- const meter = meterProvider.getMeter("ur-agent", "1.57.4");
262165
+ const meter = meterProvider.getMeter("ur-agent", "1.57.5");
262166
262166
  setMeter(meter, (name, options2) => meter.createCounter(name, options2));
262167
262167
  }
262168
262168
  if (loggerProvider) {
262169
- setEventLogger(loggerProvider.getLogger("ur-agent.events", "1.57.4"));
262169
+ setEventLogger(loggerProvider.getLogger("ur-agent.events", "1.57.5"));
262170
262170
  }
262171
262171
  if (!cleanupRegistered2) {
262172
262172
  cleanupRegistered2 = true;
@@ -262828,9 +262828,9 @@ async function assertMinVersion() {
262828
262828
  if (false) {}
262829
262829
  try {
262830
262830
  const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
262831
- if (versionConfig.minVersion && lt("1.57.4", versionConfig.minVersion)) {
262831
+ if (versionConfig.minVersion && lt("1.57.5", versionConfig.minVersion)) {
262832
262832
  console.error(`
262833
- It looks like your version of UR (${"1.57.4"}) needs an update.
262833
+ It looks like your version of UR (${"1.57.5"}) needs an update.
262834
262834
  A newer version (${versionConfig.minVersion} or higher) is required to continue.
262835
262835
 
262836
262836
  To update, please run:
@@ -263046,7 +263046,7 @@ async function installGlobalPackage(specificVersion) {
263046
263046
  logError2(new AutoUpdaterError("Another process is currently installing an update"));
263047
263047
  logEvent("tengu_auto_updater_lock_contention", {
263048
263048
  pid: process.pid,
263049
- currentVersion: "1.57.4"
263049
+ currentVersion: "1.57.5"
263050
263050
  });
263051
263051
  return "in_progress";
263052
263052
  }
@@ -263055,7 +263055,7 @@ async function installGlobalPackage(specificVersion) {
263055
263055
  if (!env2.isRunningWithBun() && env2.isNpmFromWindowsPath()) {
263056
263056
  logError2(new Error("Windows NPM detected in WSL environment"));
263057
263057
  logEvent("tengu_auto_updater_windows_npm_in_wsl", {
263058
- currentVersion: "1.57.4"
263058
+ currentVersion: "1.57.5"
263059
263059
  });
263060
263060
  console.error(`
263061
263061
  Error: Windows NPM detected in WSL
@@ -263590,7 +263590,7 @@ function detectLinuxGlobPatternWarnings() {
263590
263590
  }
263591
263591
  async function getDoctorDiagnostic() {
263592
263592
  const installationType = await getCurrentInstallationType();
263593
- const version2 = typeof MACRO !== "undefined" ? "1.57.4" : "unknown";
263593
+ const version2 = typeof MACRO !== "undefined" ? "1.57.5" : "unknown";
263594
263594
  const installationPath = await getInstallationPath();
263595
263595
  const invokedBinary = getInvokedBinary();
263596
263596
  const multipleInstallations = await detectMultipleInstallations();
@@ -264525,8 +264525,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
264525
264525
  const maxVersion = await getMaxVersion();
264526
264526
  if (maxVersion && gt(version2, maxVersion)) {
264527
264527
  logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
264528
- if (gte("1.57.4", maxVersion)) {
264529
- logForDebugging(`Native installer: current version ${"1.57.4"} is already at or above maxVersion ${maxVersion}, skipping update`);
264528
+ if (gte("1.57.5", maxVersion)) {
264529
+ logForDebugging(`Native installer: current version ${"1.57.5"} is already at or above maxVersion ${maxVersion}, skipping update`);
264530
264530
  logEvent("tengu_native_update_skipped_max_version", {
264531
264531
  latency_ms: Date.now() - startTime,
264532
264532
  max_version: maxVersion,
@@ -264537,7 +264537,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
264537
264537
  version2 = maxVersion;
264538
264538
  }
264539
264539
  }
264540
- if (!forceReinstall && version2 === "1.57.4" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
264540
+ if (!forceReinstall && version2 === "1.57.5" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
264541
264541
  logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
264542
264542
  logEvent("tengu_native_update_complete", {
264543
264543
  latency_ms: Date.now() - startTime,
@@ -334732,7 +334732,7 @@ function isAnyTracingEnabled() {
334732
334732
  return isTelemetryEnabled() || isEnhancedTelemetryEnabled() || isBetaTracingEnabled();
334733
334733
  }
334734
334734
  function getTracer() {
334735
- return import_api39.trace.getTracer("ur-agent.gen_ai", "1.57.4");
334735
+ return import_api39.trace.getTracer("ur-agent.gen_ai", "1.57.5");
334736
334736
  }
334737
334737
  function createSpanAttributes(spanType, customAttributes = {}) {
334738
334738
  const baseAttributes = getTelemetryAttributes();
@@ -364235,7 +364235,7 @@ function Feedback({
364235
364235
  platform: env2.platform,
364236
364236
  gitRepo: envInfo.isGit,
364237
364237
  terminal: env2.terminal,
364238
- version: "1.57.4",
364238
+ version: "1.57.5",
364239
364239
  transcript: normalizeMessagesForAPI(messages),
364240
364240
  errors: sanitizedErrors,
364241
364241
  lastApiRequest: getLastAPIRequest(),
@@ -364427,7 +364427,7 @@ function Feedback({
364427
364427
  ", ",
364428
364428
  env2.terminal,
364429
364429
  ", v",
364430
- "1.57.4"
364430
+ "1.57.5"
364431
364431
  ]
364432
364432
  }, undefined, true, undefined, this)
364433
364433
  ]
@@ -364533,7 +364533,7 @@ ${sanitizedDescription}
364533
364533
  ` + `**Environment Info**
364534
364534
  ` + `- Platform: ${env2.platform}
364535
364535
  ` + `- Terminal: ${env2.terminal}
364536
- ` + `- Version: ${"1.57.4"}
364536
+ ` + `- Version: ${"1.57.5"}
364537
364537
  ` + `- Feedback ID: ${feedbackId}
364538
364538
  ` + `
364539
364539
  **Errors**
@@ -367643,7 +367643,7 @@ function buildPrimarySection() {
367643
367643
  }, undefined, false, undefined, this);
367644
367644
  return [{
367645
367645
  label: "Version",
367646
- value: "1.57.4"
367646
+ value: "1.57.5"
367647
367647
  }, {
367648
367648
  label: "Session name",
367649
367649
  value: nameValue
@@ -370973,7 +370973,7 @@ function Config({
370973
370973
  }
370974
370974
  }, undefined, false, undefined, this)
370975
370975
  }, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime179.jsxDEV(ChannelDowngradeDialog, {
370976
- currentVersion: "1.57.4",
370976
+ currentVersion: "1.57.5",
370977
370977
  onChoice: (choice) => {
370978
370978
  setShowSubmenu(null);
370979
370979
  setTabsHidden(false);
@@ -370985,7 +370985,7 @@ function Config({
370985
370985
  autoUpdatesChannel: "stable"
370986
370986
  };
370987
370987
  if (choice === "stay") {
370988
- newSettings.minimumVersion = "1.57.4";
370988
+ newSettings.minimumVersion = "1.57.5";
370989
370989
  }
370990
370990
  updateSettingsForSource("userSettings", newSettings);
370991
370991
  setSettingsData((prev_27) => ({
@@ -379049,7 +379049,7 @@ function HelpV2(t0) {
379049
379049
  let t6;
379050
379050
  if ($2[31] !== tabs) {
379051
379051
  t6 = /* @__PURE__ */ jsx_dev_runtime206.jsxDEV(Tabs, {
379052
- title: `UR v${"1.57.4"}`,
379052
+ title: `UR v${"1.57.5"}`,
379053
379053
  color: "professionalBlue",
379054
379054
  defaultTab: "general",
379055
379055
  children: tabs
@@ -379966,7 +379966,7 @@ function buildToolUseContext(tools, readFileStateCache, toolPermissionContext, a
379966
379966
  async function handleInitialize(options2) {
379967
379967
  return {
379968
379968
  name: "UR",
379969
- version: "1.57.4",
379969
+ version: "1.57.5",
379970
379970
  protocolVersion: "0.1.0",
379971
379971
  workspaceRoot: options2.cwd,
379972
379972
  capabilities: {
@@ -397074,7 +397074,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
397074
397074
  return [];
397075
397075
  }
397076
397076
  }
397077
- async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.57.4") {
397077
+ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.57.5") {
397078
397078
  if (process.env.USER_TYPE === "ant") {
397079
397079
  const changelog = "";
397080
397080
  if (changelog) {
@@ -397101,7 +397101,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.57.4")
397101
397101
  releaseNotes
397102
397102
  };
397103
397103
  }
397104
- function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.57.4") {
397104
+ function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.57.5") {
397105
397105
  if (process.env.USER_TYPE === "ant") {
397106
397106
  const changelog = "";
397107
397107
  if (changelog) {
@@ -399958,7 +399958,7 @@ function getRecentActivitySync() {
399958
399958
  return cachedActivity;
399959
399959
  }
399960
399960
  function getLogoDisplayData() {
399961
- const version2 = process.env.DEMO_VERSION ?? "1.57.4";
399961
+ const version2 = process.env.DEMO_VERSION ?? "1.57.5";
399962
399962
  const serverUrl = getDirectConnectServerUrl();
399963
399963
  const displayPath = process.env.DEMO_VERSION ? "/code/ur" : getDisplayPath(getCwd());
399964
399964
  const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
@@ -400842,7 +400842,7 @@ function LogoV2() {
400842
400842
  if ($2[2] === Symbol.for("react.memo_cache_sentinel")) {
400843
400843
  t2 = () => {
400844
400844
  const currentConfig2 = getGlobalConfig();
400845
- if (currentConfig2.lastReleaseNotesSeen === "1.57.4") {
400845
+ if (currentConfig2.lastReleaseNotesSeen === "1.57.5") {
400846
400846
  return;
400847
400847
  }
400848
400848
  saveGlobalConfig(_temp327);
@@ -401527,12 +401527,12 @@ function LogoV2() {
401527
401527
  return t41;
401528
401528
  }
401529
401529
  function _temp327(current) {
401530
- if (current.lastReleaseNotesSeen === "1.57.4") {
401530
+ if (current.lastReleaseNotesSeen === "1.57.5") {
401531
401531
  return current;
401532
401532
  }
401533
401533
  return {
401534
401534
  ...current,
401535
- lastReleaseNotesSeen: "1.57.4"
401535
+ lastReleaseNotesSeen: "1.57.5"
401536
401536
  };
401537
401537
  }
401538
401538
  function _temp241(s_0) {
@@ -418330,7 +418330,7 @@ function compileAgenticCiWorkflow(specName = "default", options2 = {}) {
418330
418330
  if (spec.name !== specName) {
418331
418331
  throw new Error("Agentic CI workflow spec name does not match");
418332
418332
  }
418333
- const packageVersion = options2.packageVersion ?? (typeof MACRO !== "undefined" ? "1.57.4" : "1.57.4");
418333
+ const packageVersion = options2.packageVersion ?? (typeof MACRO !== "undefined" ? "1.57.5" : "1.57.5");
418334
418334
  if (!/^\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?$/.test(packageVersion)) {
418335
418335
  throw new Error("invalid ur-agent package version");
418336
418336
  }
@@ -419323,7 +419323,7 @@ runner; \`ur trigger\` is the inbound parser that decides what to run.
419323
419323
  path: ".github/workflows/ur.yml",
419324
419324
  root: "project",
419325
419325
  content: compileAgenticCiWorkflow("default", {
419326
- packageVersion: typeof MACRO !== "undefined" ? "1.57.4" : "1.57.4"
419326
+ packageVersion: typeof MACRO !== "undefined" ? "1.57.5" : "1.57.5"
419327
419327
  })
419328
419328
  },
419329
419329
  {
@@ -419386,7 +419386,7 @@ function value(tokens, flag) {
419386
419386
  return index2 >= 0 ? tokens[index2 + 1] : undefined;
419387
419387
  }
419388
419388
  function cliVersion() {
419389
- return typeof MACRO !== "undefined" ? "1.57.4" : "1.57.4";
419389
+ return typeof MACRO !== "undefined" ? "1.57.5" : "1.57.5";
419390
419390
  }
419391
419391
  function workflowPath(cwd2) {
419392
419392
  return join159(cwd2, ".github", "workflows", "ur-agentic-ci.yml");
@@ -425242,7 +425242,7 @@ function createAcpStdioApp(deps) {
425242
425242
  }
425243
425243
  },
425244
425244
  authMethods: [],
425245
- agentInfo: { name: "UR-Nexus", version: "1.57.4" }
425245
+ agentInfo: { name: "UR-Nexus", version: "1.57.5" }
425246
425246
  })).onRequest("authenticate", () => ({})).onRequest("session/new", async (context6) => {
425247
425247
  const result = runtime2.newSession(context6.params.cwd, context6.params.mcpServers, context6.params.additionalDirectories);
425248
425248
  await runtime2.announce({
@@ -425339,7 +425339,7 @@ function createAcpStdioAgent(deps) {
425339
425339
  }
425340
425340
  },
425341
425341
  authMethods: [],
425342
- agentInfo: { name: "UR-Nexus", version: "1.57.4" }
425342
+ agentInfo: { name: "UR-Nexus", version: "1.57.5" }
425343
425343
  });
425344
425344
  return;
425345
425345
  case "authenticate":
@@ -632706,7 +632706,7 @@ async function captureMemoryDiagnostics(trigger2, dumpNumber = 0) {
632706
632706
  smapsRollup,
632707
632707
  platform: process.platform,
632708
632708
  nodeVersion: process.version,
632709
- ccVersion: "1.57.4"
632709
+ ccVersion: "1.57.5"
632710
632710
  };
632711
632711
  }
632712
632712
  async function performHeapDump(trigger2 = "manual", dumpNumber = 0) {
@@ -633286,7 +633286,7 @@ var init_bridge_kick = __esm(() => {
633286
633286
  var call149 = async () => {
633287
633287
  return {
633288
633288
  type: "text",
633289
- value: "1.57.4"
633289
+ value: "1.57.5"
633290
633290
  };
633291
633291
  }, version2, version_default;
633292
633292
  var init_version = __esm(() => {
@@ -644357,7 +644357,7 @@ function generateHtmlReport(data, insights) {
644357
644357
  </html>`;
644358
644358
  }
644359
644359
  function buildExportData(data, insights, facets, remoteStats) {
644360
- const version3 = typeof MACRO !== "undefined" ? "1.57.4" : "unknown";
644360
+ const version3 = typeof MACRO !== "undefined" ? "1.57.5" : "unknown";
644361
644361
  const remote_hosts_collected = remoteStats?.hosts.filter((h2) => h2.sessionCount > 0).map((h2) => h2.name);
644362
644362
  const facets_summary = {
644363
644363
  total: facets.size,
@@ -648660,7 +648660,7 @@ var init_sessionStorage = __esm(() => {
648660
648660
  init_settings2();
648661
648661
  init_slowOperations();
648662
648662
  init_uuid();
648663
- VERSION7 = typeof MACRO !== "undefined" ? "1.57.4" : "unknown";
648663
+ VERSION7 = typeof MACRO !== "undefined" ? "1.57.5" : "unknown";
648664
648664
  MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
648665
648665
  SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
648666
648666
  EPHEMERAL_PROGRESS_TYPES = new Set([
@@ -649875,7 +649875,7 @@ var init_filesystem = __esm(() => {
649875
649875
  });
649876
649876
  getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
649877
649877
  const nonce = randomBytes20(16).toString("hex");
649878
- return join227(getURTempDir(), "bundled-skills", "1.57.4", nonce);
649878
+ return join227(getURTempDir(), "bundled-skills", "1.57.5", nonce);
649879
649879
  });
649880
649880
  getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
649881
649881
  });
@@ -656170,7 +656170,7 @@ function computeFingerprint(messageText2, version3) {
656170
656170
  }
656171
656171
  function computeFingerprintFromMessages(messages) {
656172
656172
  const firstMessageText = extractFirstMessageText(messages);
656173
- return computeFingerprint(firstMessageText, "1.57.4");
656173
+ return computeFingerprint(firstMessageText, "1.57.5");
656174
656174
  }
656175
656175
  var FINGERPRINT_SALT = "59cf53e54c78";
656176
656176
  var init_fingerprint = () => {};
@@ -658066,7 +658066,7 @@ async function sideQuery(opts) {
658066
658066
  betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
658067
658067
  }
658068
658068
  const messageText2 = extractFirstUserMessageText(messages);
658069
- const fingerprint2 = computeFingerprint(messageText2, "1.57.4");
658069
+ const fingerprint2 = computeFingerprint(messageText2, "1.57.5");
658070
658070
  const attributionHeader = getAttributionHeader(fingerprint2);
658071
658071
  const systemBlocks = [
658072
658072
  attributionHeader ? { type: "text", text: attributionHeader } : null,
@@ -662837,7 +662837,7 @@ function buildSystemInitMessage(inputs) {
662837
662837
  slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
662838
662838
  apiKeySource: getURHQApiKeyWithSource().source,
662839
662839
  betas: getSdkBetas(),
662840
- ur_version: "1.57.4",
662840
+ ur_version: "1.57.5",
662841
662841
  output_style: outputStyle2,
662842
662842
  agents: inputs.agents.map((agent2) => agent2.agentType),
662843
662843
  skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill2) => skill2.name),
@@ -676697,7 +676697,7 @@ var init_useVoiceEnabled = __esm(() => {
676697
676697
  function getSemverPart(version3) {
676698
676698
  return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
676699
676699
  }
676700
- function useUpdateNotification(updatedVersion, initialVersion = "1.57.4") {
676700
+ function useUpdateNotification(updatedVersion, initialVersion = "1.57.5") {
676701
676701
  const [lastNotifiedSemver, setLastNotifiedSemver] = import_react222.useState(() => getSemverPart(initialVersion));
676702
676702
  if (!updatedVersion) {
676703
676703
  return null;
@@ -676746,7 +676746,7 @@ function AutoUpdater({
676746
676746
  return;
676747
676747
  }
676748
676748
  if (false) {}
676749
- const currentVersion = "1.57.4";
676749
+ const currentVersion = "1.57.5";
676750
676750
  const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
676751
676751
  let latestVersion = await getLatestVersion(channel);
676752
676752
  const isDisabled = isAutoUpdaterDisabled();
@@ -676975,12 +676975,12 @@ function NativeAutoUpdater({
676975
676975
  logEvent("tengu_native_auto_updater_start", {});
676976
676976
  try {
676977
676977
  const maxVersion = await getMaxVersion();
676978
- if (maxVersion && gt("1.57.4", maxVersion)) {
676978
+ if (maxVersion && gt("1.57.5", maxVersion)) {
676979
676979
  const msg = await getMaxVersionMessage();
676980
676980
  setMaxVersionIssue(msg ?? "affects your version");
676981
676981
  }
676982
676982
  const result = await installLatest(channel);
676983
- const currentVersion = "1.57.4";
676983
+ const currentVersion = "1.57.5";
676984
676984
  const latencyMs = Date.now() - startTime;
676985
676985
  if (result.lockFailed) {
676986
676986
  logEvent("tengu_native_auto_updater_lock_contention", {
@@ -677117,17 +677117,17 @@ function PackageManagerAutoUpdater(t0) {
677117
677117
  const maxVersion = await getMaxVersion();
677118
677118
  if (maxVersion && latest && gt(latest, maxVersion)) {
677119
677119
  logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
677120
- if (gte("1.57.4", maxVersion)) {
677121
- logForDebugging(`PackageManagerAutoUpdater: current version ${"1.57.4"} is already at or above maxVersion ${maxVersion}, skipping update`);
677120
+ if (gte("1.57.5", maxVersion)) {
677121
+ logForDebugging(`PackageManagerAutoUpdater: current version ${"1.57.5"} is already at or above maxVersion ${maxVersion}, skipping update`);
677122
677122
  setUpdateAvailable(false);
677123
677123
  return;
677124
677124
  }
677125
677125
  latest = maxVersion;
677126
677126
  }
677127
- const hasUpdate = latest && !gte("1.57.4", latest) && !shouldSkipVersion(latest);
677127
+ const hasUpdate = latest && !gte("1.57.5", latest) && !shouldSkipVersion(latest);
677128
677128
  setUpdateAvailable(!!hasUpdate);
677129
677129
  if (hasUpdate) {
677130
- logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.57.4"} -> ${latest}`);
677130
+ logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.57.5"} -> ${latest}`);
677131
677131
  }
677132
677132
  };
677133
677133
  $2[0] = t1;
@@ -677161,7 +677161,7 @@ function PackageManagerAutoUpdater(t0) {
677161
677161
  wrap: "truncate",
677162
677162
  children: [
677163
677163
  "currentVersion: ",
677164
- "1.57.4"
677164
+ "1.57.5"
677165
677165
  ]
677166
677166
  }, undefined, true, undefined, this);
677167
677167
  $2[3] = verbose;
@@ -687858,7 +687858,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
687858
687858
  project_dir: getOriginalCwd(),
687859
687859
  added_dirs: addedDirs
687860
687860
  },
687861
- version: "1.57.4",
687861
+ version: "1.57.5",
687862
687862
  output_style: {
687863
687863
  name: outputStyleName
687864
687864
  },
@@ -687941,7 +687941,7 @@ function StatusLineInner({
687941
687941
  const taskValues = Object.values(tasks2);
687942
687942
  const taskRunningCount = taskValues.filter((task2) => task2.status === "running" || task2.status === "pending").length;
687943
687943
  const defaultStatusLineText = buildDefaultStatusBar({
687944
- version: "1.57.4",
687944
+ version: "1.57.5",
687945
687945
  providerLabel: providerRuntime.providerLabel,
687946
687946
  authMode: providerRuntime.authLabel,
687947
687947
  model: providerRuntime.model ?? renderModelName(mainLoopModel),
@@ -700084,7 +700084,7 @@ async function submitTranscriptShare(messages, trigger2, appearanceId) {
700084
700084
  } catch {}
700085
700085
  const data = {
700086
700086
  trigger: trigger2,
700087
- version: "1.57.4",
700087
+ version: "1.57.5",
700088
700088
  platform: process.platform,
700089
700089
  transcript,
700090
700090
  subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
@@ -712364,7 +712364,7 @@ function WelcomeV2() {
712364
712364
  dimColor: true,
712365
712365
  children: [
712366
712366
  "v",
712367
- "1.57.4"
712367
+ "1.57.5"
712368
712368
  ]
712369
712369
  }, undefined, true, undefined, this)
712370
712370
  ]
@@ -713624,7 +713624,7 @@ function completeOnboarding() {
713624
713624
  saveGlobalConfig((current) => ({
713625
713625
  ...current,
713626
713626
  hasCompletedOnboarding: true,
713627
- lastOnboardingVersion: "1.57.4"
713627
+ lastOnboardingVersion: "1.57.5"
713628
713628
  }));
713629
713629
  }
713630
713630
  function showDialog(root2, renderer) {
@@ -718668,7 +718668,7 @@ function appendToLog(path24, message) {
718668
718668
  cwd: getFsImplementation().cwd(),
718669
718669
  userType: process.env.USER_TYPE,
718670
718670
  sessionId: getSessionId(),
718671
- version: "1.57.4"
718671
+ version: "1.57.5"
718672
718672
  };
718673
718673
  getLogWriter(path24).write(messageWithTimestamp);
718674
718674
  }
@@ -722827,8 +722827,8 @@ async function getEnvLessBridgeConfig() {
722827
722827
  }
722828
722828
  async function checkEnvLessBridgeMinVersion() {
722829
722829
  const cfg = await getEnvLessBridgeConfig();
722830
- if (cfg.min_version && lt("1.57.4", cfg.min_version)) {
722831
- return `Your version of UR (${"1.57.4"}) is too old for Remote Control.
722830
+ if (cfg.min_version && lt("1.57.5", cfg.min_version)) {
722831
+ return `Your version of UR (${"1.57.5"}) is too old for Remote Control.
722832
722832
  Version ${cfg.min_version} or higher is required. Run \`ur update\` to update.`;
722833
722833
  }
722834
722834
  return null;
@@ -723302,7 +723302,7 @@ async function initBridgeCore(params) {
723302
723302
  const rawApi = createBridgeApiClient({
723303
723303
  baseUrl,
723304
723304
  getAccessToken,
723305
- runnerVersion: "1.57.4",
723305
+ runnerVersion: "1.57.5",
723306
723306
  onDebug: logForDebugging,
723307
723307
  onAuth401,
723308
723308
  getTrustedDeviceToken
@@ -732778,7 +732778,7 @@ function getAgUiCapabilities() {
732778
732778
  name: "UR-Nexus",
732779
732779
  type: "ur-nexus",
732780
732780
  description: "Provider-flexible, local-first autonomous engineering workflow agent.",
732781
- version: "1.57.4",
732781
+ version: "1.57.5",
732782
732782
  provider: "UR",
732783
732783
  documentationUrl: "https://github.com/Maitham16/UR/blob/master/docs/AG_UI.md"
732784
732784
  },
@@ -733918,7 +733918,7 @@ function createMCPServer(cwd4, debug2, verbose) {
733918
733918
  };
733919
733919
  const server2 = new Server({
733920
733920
  name: "ur-nexus",
733921
- version: "1.57.4"
733921
+ version: "1.57.5"
733922
733922
  }, {
733923
733923
  capabilities: {
733924
733924
  tools: {}
@@ -735076,7 +735076,7 @@ function thrownResponse(error40) {
735076
735076
  }
735077
735077
  async function createUrMcp2026Runtime(options4) {
735078
735078
  const server2 = createMCPServer(options4.cwd, options4.debug === true, options4.verbose === true);
735079
- const client2 = new Client({ name: "ur-mcp-2026-adapter", version: "1.57.4" }, { capabilities: {} });
735079
+ const client2 = new Client({ name: "ur-mcp-2026-adapter", version: "1.57.5" }, { capabilities: {} });
735080
735080
  const [clientTransport, serverTransport] = createLinkedTransportPair();
735081
735081
  try {
735082
735082
  await server2.connect(serverTransport);
@@ -735087,7 +735087,7 @@ async function createUrMcp2026Runtime(options4) {
735087
735087
  }
735088
735088
  const runtime2 = new Mcp2026Runtime({
735089
735089
  cwd: options4.cwd,
735090
- version: "1.57.4",
735090
+ version: "1.57.5",
735091
735091
  backend: {
735092
735092
  listTools: async () => {
735093
735093
  const listed = await client2.listTools();
@@ -737220,7 +737220,7 @@ async function update() {
737220
737220
  logEvent("tengu_update_check", {});
737221
737221
  const diagnostic2 = await getDoctorDiagnostic();
737222
737222
  const result = await checkUpgradeStatus({
737223
- currentVersion: "1.57.4",
737223
+ currentVersion: "1.57.5",
737224
737224
  packageName: UR_AGENT_PACKAGE_NAME,
737225
737225
  installationType: diagnostic2.installationType,
737226
737226
  latestVersion: () => getLatestNpmPackageVersion(UR_AGENT_PACKAGE_NAME)
@@ -738536,7 +738536,7 @@ ${customInstructions}` : customInstructions;
738536
738536
  }
738537
738537
  }
738538
738538
  logForDiagnosticsNoPII("info", "started", {
738539
- version: "1.57.4",
738539
+ version: "1.57.5",
738540
738540
  is_native_binary: isInBundledMode()
738541
738541
  });
738542
738542
  registerCleanup(async () => {
@@ -739322,7 +739322,7 @@ Usage: ur --remote "your task description"`, () => gracefulShutdown(1));
739322
739322
  pendingHookMessages
739323
739323
  }, renderAndRun);
739324
739324
  }
739325
- }).version("1.57.4 (UR-Nexus)", "-v, --version", "Output the version number");
739325
+ }).version("1.57.5 (UR-Nexus)", "-v, --version", "Output the version number");
739326
739326
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
739327
739327
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
739328
739328
  if (canUserConfigureAdvisor()) {
@@ -740357,7 +740357,7 @@ if (false) {}
740357
740357
  async function main2() {
740358
740358
  const args = process.argv.slice(2);
740359
740359
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
740360
- console.log(`${"1.57.4"} (UR-Nexus)`);
740360
+ console.log(`${"1.57.5"} (UR-Nexus)`);
740361
740361
  return;
740362
740362
  }
740363
740363
  if (args[0] === "a2a" && args[1] === "serve" && !args.includes("--help") && !args.includes("-h")) {
@@ -45,7 +45,7 @@
45
45
  <main id="content" class="content">
46
46
  <header class="topbar">
47
47
  <div>
48
- <p class="eyebrow">Version 1.57.4</p>
48
+ <p class="eyebrow">Version 1.57.5</p>
49
49
  <h1>UR-Nexus Documentation</h1>
50
50
  <p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-Nexus.</p>
51
51
  </div>
@@ -7,7 +7,7 @@ plugins {
7
7
  }
8
8
 
9
9
  group = "dev.urnexus"
10
- version = "1.57.4"
10
+ version = "1.57.5"
11
11
 
12
12
  repositories {
13
13
  mavenCentral()
@@ -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.57.4",
5
+ "version": "1.57.5",
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.57.4",
3
+ "version": "1.57.5",
4
4
  "description": "UR-Nexus — autonomous engineering workflow engine (plan, execute, test, verify, document, benchmark, reproduce)",
5
5
  "type": "module",
6
6
  "packageManager": "bun@1.3.14",