ur-agent 1.78.11 → 1.78.13

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,40 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.78.13
4
+
5
+ - The release workflow now publishes its downloaded tarball with an explicit
6
+ `./dist-release/...` filesystem path. npm interpreted the previous bare
7
+ `dist-release/...` value as GitHub shorthand and attempted to clone
8
+ `github.com/dist-release/ur-agent-<version>.tgz` over SSH even though the
9
+ verified artifact existed. A release-readiness regression assertion prevents
10
+ the local-path prefix from being removed again.
11
+
12
+ ## 1.78.12
13
+
14
+ - Completed or failed automatic `Planning tasks` seeds no longer remain in the
15
+ task panel or status bar after a simple turn finishes. Pending and
16
+ in-progress seeds remain visible for honest interruption recovery, while the
17
+ terminal snapshot stays internal so a corrective follow-up can reopen it
18
+ without turning the user's reply into a task title.
19
+ - The active checkout now keeps benchmark evidence only for its current
20
+ package version. Superseded 1.37.2 result snapshots, an obsolete release
21
+ audit, and a superseded root IDE design draft were removed; the benchmark
22
+ guide now derives comparison paths from `package.json`. Historical evidence
23
+ remains available from immutable Git tags and releases instead of being
24
+ duplicated in the current tree.
25
+ - Release publication now preflights `NPM_TOKEN` before creating a GitHub
26
+ Release whenever the version is not already on npm. A missing credential
27
+ fails the workflow explicitly instead of reporting success after publishing
28
+ only half of the release, and release-readiness tests lock in the dependency
29
+ ordering.
30
+ - Repository maintenance removed stale generated archives, caches, logs,
31
+ duplicate/FUSE/Finder files, abandoned worktree records, redundant local
32
+ helper branches, and unreachable Git objects. Remote branches, tags, and all
33
+ reachable history are preserved. The safety-matrix executable guard now
34
+ compares canonical paths, so `bun run safety:matrix -- --check` still runs
35
+ under Bun when `argv[1]` is relative, and benchmark schema tests no longer
36
+ depend on a deleted historical placeholder.
37
+
3
38
  ## 1.78.11
4
39
 
5
40
  - Provider-reported context overflow now triggers one bounded automatic
package/RELEASE.md CHANGED
@@ -90,6 +90,15 @@ GitHub Actions publishes the exact tarball that passes the release workflow.
90
90
  Do not run `npm publish` separately and do not create a tag before the release
91
91
  commit is on the remote branch.
92
92
 
93
+ The repository secret `NPM_TOKEN` must be configured before tagging a version
94
+ that is not already published. The workflow checks this before it creates the
95
+ GitHub Release, preventing a partial GitHub-only release from being reported as
96
+ successful. Treat a failed credential preflight as a release blocker; configure
97
+ the secret and re-run the same immutable tag rather than publishing manually.
98
+ The npm publish step uses `./dist-release/<tarball>.tgz`: the explicit relative
99
+ path marker prevents npm from interpreting the artifact name as GitHub
100
+ `owner/repository` shorthand.
101
+
93
102
  Only after every check passes, commit the complete release and push it:
94
103
 
95
104
  ```bash
package/dist/cli.js CHANGED
@@ -107602,7 +107602,7 @@ var init_auth = __esm(() => {
107602
107602
 
107603
107603
  // src/utils/userAgent.ts
107604
107604
  function getURCodeUserAgent() {
107605
- return `ur/${"1.78.11"}`;
107605
+ return `ur/${"1.78.13"}`;
107606
107606
  }
107607
107607
 
107608
107608
  // src/utils/workloadContext.ts
@@ -107624,7 +107624,7 @@ function getUserAgent() {
107624
107624
  const clientApp = process.env.UR_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}` : "";
107625
107625
  const workload = getWorkload();
107626
107626
  const workloadSuffix = workload ? `, workload/${workload}` : "";
107627
- return `ur-cli/${"1.78.11"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
107627
+ return `ur-cli/${"1.78.13"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
107628
107628
  }
107629
107629
  function getMCPUserAgent() {
107630
107630
  const parts = [];
@@ -107638,7 +107638,7 @@ function getMCPUserAgent() {
107638
107638
  parts.push(`client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}`);
107639
107639
  }
107640
107640
  const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
107641
- return `ur/${"1.78.11"}${suffix}`;
107641
+ return `ur/${"1.78.13"}${suffix}`;
107642
107642
  }
107643
107643
  function getWebFetchUserAgent() {
107644
107644
  return `UR-User (${getURCodeUserAgent()})`;
@@ -107776,7 +107776,7 @@ var init_user = __esm(() => {
107776
107776
  deviceId,
107777
107777
  sessionId: getSessionId(),
107778
107778
  email: getEmail(),
107779
- appVersion: "1.78.11",
107779
+ appVersion: "1.78.13",
107780
107780
  platform: getHostPlatformForAnalytics(),
107781
107781
  organizationUuid,
107782
107782
  accountUuid,
@@ -115663,7 +115663,7 @@ var init_metadata = __esm(() => {
115663
115663
  COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
115664
115664
  WHITESPACE_REGEX = /\s+/;
115665
115665
  getVersionBase = memoize_default(() => {
115666
- const match = "1.78.11".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
115666
+ const match = "1.78.13".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
115667
115667
  return match ? match[0] : undefined;
115668
115668
  });
115669
115669
  buildEnvContext = memoize_default(async () => {
@@ -115703,7 +115703,7 @@ var init_metadata = __esm(() => {
115703
115703
  isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
115704
115704
  isURCodeAction: isEnvTruthy(process.env.UR_CODE_ACTION),
115705
115705
  isURAiAuth: isURAISubscriber(),
115706
- version: "1.78.11",
115706
+ version: "1.78.13",
115707
115707
  versionBase: getVersionBase(),
115708
115708
  buildTime: "",
115709
115709
  deploymentEnvironment: env2.detectDeploymentEnvironment(),
@@ -116373,7 +116373,7 @@ function initialize1PEventLogging() {
116373
116373
  const platform2 = getPlatform();
116374
116374
  const attributes = {
116375
116375
  [import_semantic_conventions4.ATTR_SERVICE_NAME]: "ur",
116376
- [import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.78.11"
116376
+ [import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.78.13"
116377
116377
  };
116378
116378
  if (platform2 === "wsl") {
116379
116379
  const wslVersion = getWslVersion();
@@ -116401,7 +116401,7 @@ function initialize1PEventLogging() {
116401
116401
  })
116402
116402
  ]
116403
116403
  });
116404
- firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.78.11");
116404
+ firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.78.13");
116405
116405
  }
116406
116406
  async function reinitialize1PEventLoggingIfConfigChanged() {
116407
116407
  if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
@@ -126301,7 +126301,7 @@ function formatAgentTrendReport(report = buildAgentTrendReport()) {
126301
126301
  function formatA2AAgentCard(options = {}, pretty = true) {
126302
126302
  return JSON.stringify(buildA2AAgentCard(options), null, pretty ? 2 : 0);
126303
126303
  }
126304
- var urVersion = "1.78.11", researchSnapshotDate = "2026-07-15", coverage, priorityRoadmap;
126304
+ var urVersion = "1.78.13", researchSnapshotDate = "2026-07-15", coverage, priorityRoadmap;
126305
126305
  var init_trends = __esm(() => {
126306
126306
  init_a2aCardSignature();
126307
126307
  coverage = [
@@ -129104,7 +129104,7 @@ function getAttributionHeader(fingerprint) {
129104
129104
  if (!isAttributionHeaderEnabled()) {
129105
129105
  return "";
129106
129106
  }
129107
- const version2 = `${"1.78.11"}.${fingerprint}`;
129107
+ const version2 = `${"1.78.13"}.${fingerprint}`;
129108
129108
  const entrypoint = process.env.UR_CODE_ENTRYPOINT ?? "unknown";
129109
129109
  const cch = "";
129110
129110
  const workload = getWorkload();
@@ -157108,7 +157108,7 @@ var init_projectSafety = __esm(() => {
157108
157108
  function getInstruments() {
157109
157109
  if (instruments)
157110
157110
  return instruments;
157111
- const meter = import_api10.metrics.getMeter("ur-agent.gen_ai", "1.78.11");
157111
+ const meter = import_api10.metrics.getMeter("ur-agent.gen_ai", "1.78.13");
157112
157112
  instruments = {
157113
157113
  operationDuration: meter.createHistogram("gen_ai.client.operation.duration", {
157114
157114
  description: "GenAI operation duration.",
@@ -157206,7 +157206,7 @@ function genAiAgentAttributes() {
157206
157206
  "gen_ai.operation.name": GEN_AI_OPERATION_INVOKE_AGENT,
157207
157207
  "gen_ai.provider.name": "ur",
157208
157208
  "gen_ai.agent.name": "UR-Nexus",
157209
- "gen_ai.agent.version": "1.78.11"
157209
+ "gen_ai.agent.version": "1.78.13"
157210
157210
  };
157211
157211
  }
157212
157212
  function genAiWorkflowAttributes(workflowName) {
@@ -157222,7 +157222,7 @@ function genAiWorkflowAttributes(workflowName) {
157222
157222
  function startGenAiWorkflowSpan(workflowName) {
157223
157223
  const attributes = genAiWorkflowAttributes(workflowName);
157224
157224
  const name = typeof attributes["gen_ai.workflow.name"] === "string" ? `invoke_workflow ${attributes["gen_ai.workflow.name"]}` : GEN_AI_OPERATION_INVOKE_WORKFLOW;
157225
- return import_api10.trace.getTracer("ur-agent.gen_ai", "1.78.11").startSpan(name, { kind: import_api10.SpanKind.INTERNAL, attributes });
157225
+ return import_api10.trace.getTracer("ur-agent.gen_ai", "1.78.13").startSpan(name, { kind: import_api10.SpanKind.INTERNAL, attributes });
157226
157226
  }
157227
157227
  function endGenAiWorkflowSpan(span, options2 = {}) {
157228
157228
  try {
@@ -157260,7 +157260,7 @@ function startGenAiMemorySpan(operation, options2 = {}) {
157260
157260
  if (options2.recordCount !== undefined && Number.isInteger(options2.recordCount) && options2.recordCount >= 0) {
157261
157261
  attributes["gen_ai.memory.record.count"] = options2.recordCount;
157262
157262
  }
157263
- return import_api10.trace.getTracer("ur-agent.gen_ai", "1.78.11").startSpan(operation, { kind: import_api10.SpanKind.INTERNAL, attributes });
157263
+ return import_api10.trace.getTracer("ur-agent.gen_ai", "1.78.13").startSpan(operation, { kind: import_api10.SpanKind.INTERNAL, attributes });
157264
157264
  }
157265
157265
  function endGenAiMemorySpan(span, options2 = {}) {
157266
157266
  try {
@@ -159299,6 +159299,7 @@ __export(exports_tasks, {
159299
159299
  listTasks: () => listTasks,
159300
159300
  listTaskHistory: () => listTaskHistory,
159301
159301
  isTodoV2Enabled: () => isTodoV2Enabled,
159302
+ isTaskVisibleInActiveBoard: () => isTaskVisibleInActiveBoard,
159302
159303
  isTaskListFullyCompleted: () => isTaskListFullyCompleted,
159303
159304
  isAutomaticPromptTask: () => isAutomaticPromptTask,
159304
159305
  inspectTaskListForGate: () => inspectTaskListForGate,
@@ -159357,6 +159358,9 @@ function notifyTasksUpdated() {
159357
159358
  function isAutomaticPromptTask(task) {
159358
159359
  return task.metadata?.[AUTOMATIC_PROMPT_TASK_KEY] === true;
159359
159360
  }
159361
+ function isTaskVisibleInActiveBoard(task) {
159362
+ return !isAutomaticPromptTask(task) || task.status === "pending" || task.status === "in_progress";
159363
+ }
159360
159364
  function parseNumericTaskId(value) {
159361
159365
  if (!/^\d+$/u.test(value))
159362
159366
  return null;
@@ -250997,7 +251001,7 @@ function getTelemetryAttributes() {
250997
251001
  attributes["session.id"] = sessionId;
250998
251002
  }
250999
251003
  if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
251000
- attributes["app.version"] = "1.78.11";
251004
+ attributes["app.version"] = "1.78.13";
251001
251005
  }
251002
251006
  const oauthAccount = getOauthAccountInfo();
251003
251007
  if (oauthAccount) {
@@ -297504,7 +297508,7 @@ function getInstallationEnv() {
297504
297508
  return;
297505
297509
  }
297506
297510
  function getURCodeVersion() {
297507
- return "1.78.11";
297511
+ return "1.78.13";
297508
297512
  }
297509
297513
  async function getInstalledVSCodeExtensionVersion(command) {
297510
297514
  const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
@@ -304835,7 +304839,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
304835
304839
  const client2 = new Client({
304836
304840
  name: "ur",
304837
304841
  title: "UR",
304838
- version: "1.78.11",
304842
+ version: "1.78.13",
304839
304843
  description: "UR-Nexus autonomous engineering workflow engine",
304840
304844
  websiteUrl: PRODUCT_URL
304841
304845
  }, {
@@ -305195,7 +305199,7 @@ var init_client5 = __esm(() => {
305195
305199
  const client2 = new Client({
305196
305200
  name: "ur",
305197
305201
  title: "UR",
305198
- version: "1.78.11",
305202
+ version: "1.78.13",
305199
305203
  description: "UR-Nexus autonomous engineering workflow engine",
305200
305204
  websiteUrl: PRODUCT_URL
305201
305205
  }, {
@@ -317916,7 +317920,7 @@ async function createRuntime() {
317916
317920
  bootstrapTelemetry();
317917
317921
  const resource = defaultResource().merge(detectResources({ detectors: [envDetector] })).merge(resourceFromAttributes({
317918
317922
  [import_semantic_conventions7.ATTR_SERVICE_NAME]: "ur-agent",
317919
- [import_semantic_conventions7.ATTR_SERVICE_VERSION]: "1.78.11"
317923
+ [import_semantic_conventions7.ATTR_SERVICE_VERSION]: "1.78.13"
317920
317924
  }));
317921
317925
  const tracerProvider = exporters.traces.length > 0 ? new BasicTracerProvider({
317922
317926
  resource,
@@ -317949,11 +317953,11 @@ async function createRuntime() {
317949
317953
  setMeterProvider(meterProvider);
317950
317954
  setLoggerProvider(loggerProvider);
317951
317955
  if (meterProvider) {
317952
- const meter = meterProvider.getMeter("ur-agent", "1.78.11");
317956
+ const meter = meterProvider.getMeter("ur-agent", "1.78.13");
317953
317957
  setMeter(meter, (name, options2) => meter.createCounter(name, options2));
317954
317958
  }
317955
317959
  if (loggerProvider) {
317956
- setEventLogger(loggerProvider.getLogger("ur-agent.events", "1.78.11"));
317960
+ setEventLogger(loggerProvider.getLogger("ur-agent.events", "1.78.13"));
317957
317961
  }
317958
317962
  if (!cleanupRegistered2) {
317959
317963
  cleanupRegistered2 = true;
@@ -318615,9 +318619,9 @@ async function assertMinVersion() {
318615
318619
  if (false) {}
318616
318620
  try {
318617
318621
  const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
318618
- if (versionConfig.minVersion && lt("1.78.11", versionConfig.minVersion)) {
318622
+ if (versionConfig.minVersion && lt("1.78.13", versionConfig.minVersion)) {
318619
318623
  console.error(`
318620
- It looks like your version of UR (${"1.78.11"}) needs an update.
318624
+ It looks like your version of UR (${"1.78.13"}) needs an update.
318621
318625
  A newer version (${versionConfig.minVersion} or higher) is required to continue.
318622
318626
 
318623
318627
  To update, please run:
@@ -318833,7 +318837,7 @@ async function installGlobalPackage(specificVersion) {
318833
318837
  logError2(new AutoUpdaterError("Another process is currently installing an update"));
318834
318838
  logEvent("tengu_auto_updater_lock_contention", {
318835
318839
  pid: process.pid,
318836
- currentVersion: "1.78.11"
318840
+ currentVersion: "1.78.13"
318837
318841
  });
318838
318842
  return "in_progress";
318839
318843
  }
@@ -318842,7 +318846,7 @@ async function installGlobalPackage(specificVersion) {
318842
318846
  if (!env2.isRunningWithBun() && env2.isNpmFromWindowsPath()) {
318843
318847
  logError2(new Error("Windows NPM detected in WSL environment"));
318844
318848
  logEvent("tengu_auto_updater_windows_npm_in_wsl", {
318845
- currentVersion: "1.78.11"
318849
+ currentVersion: "1.78.13"
318846
318850
  });
318847
318851
  console.error(`
318848
318852
  Error: Windows NPM detected in WSL
@@ -319377,7 +319381,7 @@ function detectLinuxGlobPatternWarnings() {
319377
319381
  }
319378
319382
  async function getDoctorDiagnostic() {
319379
319383
  const installationType = await getCurrentInstallationType();
319380
- const version2 = typeof MACRO !== "undefined" ? "1.78.11" : "unknown";
319384
+ const version2 = typeof MACRO !== "undefined" ? "1.78.13" : "unknown";
319381
319385
  const installationPath = await getInstallationPath();
319382
319386
  const invokedBinary = getInvokedBinary();
319383
319387
  const multipleInstallations = await detectMultipleInstallations();
@@ -320312,8 +320316,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
320312
320316
  const maxVersion = await getMaxVersion();
320313
320317
  if (maxVersion && gt(version2, maxVersion)) {
320314
320318
  logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
320315
- if (gte("1.78.11", maxVersion)) {
320316
- logForDebugging(`Native installer: current version ${"1.78.11"} is already at or above maxVersion ${maxVersion}, skipping update`);
320319
+ if (gte("1.78.13", maxVersion)) {
320320
+ logForDebugging(`Native installer: current version ${"1.78.13"} is already at or above maxVersion ${maxVersion}, skipping update`);
320317
320321
  logEvent("tengu_native_update_skipped_max_version", {
320318
320322
  latency_ms: Date.now() - startTime,
320319
320323
  max_version: maxVersion,
@@ -320324,7 +320328,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
320324
320328
  version2 = maxVersion;
320325
320329
  }
320326
320330
  }
320327
- if (!forceReinstall && version2 === "1.78.11" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
320331
+ if (!forceReinstall && version2 === "1.78.13" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
320328
320332
  logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
320329
320333
  logEvent("tengu_native_update_complete", {
320330
320334
  latency_ms: Date.now() - startTime,
@@ -322251,7 +322255,7 @@ class TasksV2Store {
322251
322255
  #fetch = async () => {
322252
322256
  const taskListId = getTaskListId();
322253
322257
  this.#rewatch(getTasksDir(taskListId));
322254
- const current = (await listTasks(taskListId)).filter((t) => !t.metadata?._internal);
322258
+ const current = (await listTasks(taskListId)).filter((t) => !t.metadata?._internal && isTaskVisibleInActiveBoard(t));
322255
322259
  this.#tasks = current;
322256
322260
  const hasIncomplete = current.some((t) => t.status === "pending" || t.status === "in_progress");
322257
322261
  this.#hidden = current.length === 0;
@@ -390162,7 +390166,7 @@ function isAnyTracingEnabled() {
390162
390166
  return isTelemetryEnabled() || isEnhancedTelemetryEnabled() || isBetaTracingEnabled();
390163
390167
  }
390164
390168
  function getTracer() {
390165
- return import_api39.trace.getTracer("ur-agent.gen_ai", "1.78.11");
390169
+ return import_api39.trace.getTracer("ur-agent.gen_ai", "1.78.13");
390166
390170
  }
390167
390171
  function createSpanAttributes(spanType, customAttributes = {}) {
390168
390172
  const baseAttributes = getTelemetryAttributes();
@@ -420451,7 +420455,7 @@ function Feedback({
420451
420455
  platform: env2.platform,
420452
420456
  gitRepo: envInfo.isGit,
420453
420457
  terminal: env2.terminal,
420454
- version: "1.78.11",
420458
+ version: "1.78.13",
420455
420459
  transcript: normalizeMessagesForAPI(messages),
420456
420460
  errors: sanitizedErrors,
420457
420461
  lastApiRequest: getLastAPIRequest(),
@@ -420643,7 +420647,7 @@ function Feedback({
420643
420647
  ", ",
420644
420648
  env2.terminal,
420645
420649
  ", v",
420646
- "1.78.11"
420650
+ "1.78.13"
420647
420651
  ]
420648
420652
  }, undefined, true, undefined, this)
420649
420653
  ]
@@ -420749,7 +420753,7 @@ ${sanitizedDescription}
420749
420753
  ` + `**Environment Info**
420750
420754
  ` + `- Platform: ${env2.platform}
420751
420755
  ` + `- Terminal: ${env2.terminal}
420752
- ` + `- Version: ${"1.78.11"}
420756
+ ` + `- Version: ${"1.78.13"}
420753
420757
  ` + `- Feedback ID: ${feedbackId}
420754
420758
  ` + `
420755
420759
  **Errors**
@@ -423859,7 +423863,7 @@ function buildPrimarySection() {
423859
423863
  }, undefined, false, undefined, this);
423860
423864
  return [{
423861
423865
  label: "Version",
423862
- value: "1.78.11"
423866
+ value: "1.78.13"
423863
423867
  }, {
423864
423868
  label: "Session name",
423865
423869
  value: nameValue
@@ -427241,7 +427245,7 @@ function Config({
427241
427245
  }
427242
427246
  }, undefined, false, undefined, this)
427243
427247
  }, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime179.jsxDEV(ChannelDowngradeDialog, {
427244
- currentVersion: "1.78.11",
427248
+ currentVersion: "1.78.13",
427245
427249
  onChoice: (choice) => {
427246
427250
  setShowSubmenu(null);
427247
427251
  setTabsHidden(false);
@@ -427253,7 +427257,7 @@ function Config({
427253
427257
  autoUpdatesChannel: "stable"
427254
427258
  };
427255
427259
  if (choice === "stay") {
427256
- newSettings.minimumVersion = "1.78.11";
427260
+ newSettings.minimumVersion = "1.78.13";
427257
427261
  }
427258
427262
  updateSettingsForSource("userSettings", newSettings);
427259
427263
  setSettingsData((prev_27) => ({
@@ -435317,7 +435321,7 @@ function HelpV2(t0) {
435317
435321
  let t6;
435318
435322
  if ($2[31] !== tabs) {
435319
435323
  t6 = /* @__PURE__ */ jsx_dev_runtime206.jsxDEV(Tabs, {
435320
- title: `UR v${"1.78.11"}`,
435324
+ title: `UR v${"1.78.13"}`,
435321
435325
  color: "professionalBlue",
435322
435326
  defaultTab: "general",
435323
435327
  children: tabs
@@ -436250,7 +436254,7 @@ function buildToolUseContext(tools, readFileStateCache, toolPermissionContext, a
436250
436254
  async function handleInitialize(options2) {
436251
436255
  return {
436252
436256
  name: "UR",
436253
- version: "1.78.11",
436257
+ version: "1.78.13",
436254
436258
  protocolVersion: "0.1.0",
436255
436259
  workspaceRoot: options2.cwd,
436256
436260
  capabilities: {
@@ -453358,7 +453362,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
453358
453362
  return [];
453359
453363
  }
453360
453364
  }
453361
- async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.78.11") {
453365
+ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.78.13") {
453362
453366
  if (process.env.USER_TYPE === "ant") {
453363
453367
  const changelog = "";
453364
453368
  if (changelog) {
@@ -453385,7 +453389,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.78.11")
453385
453389
  releaseNotes
453386
453390
  };
453387
453391
  }
453388
- function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.78.11") {
453392
+ function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.78.13") {
453389
453393
  if (process.env.USER_TYPE === "ant") {
453390
453394
  const changelog = "";
453391
453395
  if (changelog) {
@@ -456290,7 +456294,7 @@ function getRecentActivitySync() {
456290
456294
  return cachedActivity;
456291
456295
  }
456292
456296
  function getLogoDisplayData() {
456293
- const version2 = process.env.DEMO_VERSION ?? "1.78.11";
456297
+ const version2 = process.env.DEMO_VERSION ?? "1.78.13";
456294
456298
  const serverUrl = getDirectConnectServerUrl();
456295
456299
  const displayPath = process.env.DEMO_VERSION ? "/code/ur" : getDisplayPath(getCwd());
456296
456300
  const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
@@ -457157,7 +457161,7 @@ function LogoV2() {
457157
457161
  if ($2[2] === Symbol.for("react.memo_cache_sentinel")) {
457158
457162
  t2 = () => {
457159
457163
  const currentConfig2 = getGlobalConfig();
457160
- if (currentConfig2.lastReleaseNotesSeen === "1.78.11") {
457164
+ if (currentConfig2.lastReleaseNotesSeen === "1.78.13") {
457161
457165
  return;
457162
457166
  }
457163
457167
  saveGlobalConfig(_temp325);
@@ -457842,12 +457846,12 @@ function LogoV2() {
457842
457846
  return t41;
457843
457847
  }
457844
457848
  function _temp325(current) {
457845
- if (current.lastReleaseNotesSeen === "1.78.11") {
457849
+ if (current.lastReleaseNotesSeen === "1.78.13") {
457846
457850
  return current;
457847
457851
  }
457848
457852
  return {
457849
457853
  ...current,
457850
- lastReleaseNotesSeen: "1.78.11"
457854
+ lastReleaseNotesSeen: "1.78.13"
457851
457855
  };
457852
457856
  }
457853
457857
  function _temp241(s_0) {
@@ -474684,7 +474688,7 @@ function compileAgenticCiWorkflow(specName = "default", options2 = {}) {
474684
474688
  if (spec.name !== specName) {
474685
474689
  throw new Error("Agentic CI workflow spec name does not match");
474686
474690
  }
474687
- const packageVersion = options2.packageVersion ?? (typeof MACRO !== "undefined" ? "1.78.11" : "1.78.11");
474691
+ const packageVersion = options2.packageVersion ?? (typeof MACRO !== "undefined" ? "1.78.13" : "1.78.13");
474688
474692
  if (!/^\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?$/.test(packageVersion)) {
474689
474693
  throw new Error("invalid ur-agent package version");
474690
474694
  }
@@ -475677,7 +475681,7 @@ runner; \`ur trigger\` is the inbound parser that decides what to run.
475677
475681
  path: ".github/workflows/ur.yml",
475678
475682
  root: "project",
475679
475683
  content: compileAgenticCiWorkflow("default", {
475680
- packageVersion: typeof MACRO !== "undefined" ? "1.78.11" : "1.78.11"
475684
+ packageVersion: typeof MACRO !== "undefined" ? "1.78.13" : "1.78.13"
475681
475685
  })
475682
475686
  },
475683
475687
  {
@@ -475740,7 +475744,7 @@ function value(tokens, flag) {
475740
475744
  return index2 >= 0 ? tokens[index2 + 1] : undefined;
475741
475745
  }
475742
475746
  function cliVersion() {
475743
- return typeof MACRO !== "undefined" ? "1.78.11" : "1.78.11";
475747
+ return typeof MACRO !== "undefined" ? "1.78.13" : "1.78.13";
475744
475748
  }
475745
475749
  function workflowPath(cwd2) {
475746
475750
  return join159(cwd2, ".github", "workflows", "ur-agentic-ci.yml");
@@ -481596,7 +481600,7 @@ function createAcpStdioApp(deps) {
481596
481600
  }
481597
481601
  },
481598
481602
  authMethods: [],
481599
- agentInfo: { name: "UR-Nexus", version: "1.78.11" }
481603
+ agentInfo: { name: "UR-Nexus", version: "1.78.13" }
481600
481604
  })).onRequest("authenticate", () => ({})).onRequest("session/new", async (context6) => {
481601
481605
  const result = runtime2.newSession(context6.params.cwd, context6.params.mcpServers, context6.params.additionalDirectories);
481602
481606
  await runtime2.announce({
@@ -481693,7 +481697,7 @@ function createAcpStdioAgent(deps) {
481693
481697
  }
481694
481698
  },
481695
481699
  authMethods: [],
481696
- agentInfo: { name: "UR-Nexus", version: "1.78.11" }
481700
+ agentInfo: { name: "UR-Nexus", version: "1.78.13" }
481697
481701
  });
481698
481702
  return;
481699
481703
  case "authenticate":
@@ -505324,7 +505328,7 @@ var init_code_index2 = __esm(() => {
505324
505328
 
505325
505329
  // node_modules/typescript/lib/typescript.js
505326
505330
  var require_typescript3 = __commonJS((exports, module) => {
505327
- var __dirname = "/home/runner/work/UR/UR/node_modules/typescript/lib", __filename = "/home/runner/work/UR/UR/node_modules/typescript/lib/typescript.js";
505331
+ var __dirname = "/Users/maith/Desktop/UR Agent/UR-1.78.11/node_modules/typescript/lib", __filename = "/Users/maith/Desktop/UR Agent/UR-1.78.11/node_modules/typescript/lib/typescript.js";
505328
505332
  /*! *****************************************************************************
505329
505333
  Copyright (c) Microsoft Corporation. All rights reserved.
505330
505334
  Licensed under the Apache License, Version 2.0 (the "License"); you may not use
@@ -691315,7 +691319,7 @@ async function captureMemoryDiagnostics(trigger2, dumpNumber = 0) {
691315
691319
  smapsRollup,
691316
691320
  platform: process.platform,
691317
691321
  nodeVersion: process.version,
691318
- ccVersion: "1.78.11"
691322
+ ccVersion: "1.78.13"
691319
691323
  };
691320
691324
  }
691321
691325
  async function performHeapDump(trigger2 = "manual", dumpNumber = 0) {
@@ -691895,7 +691899,7 @@ var init_bridge_kick = __esm(() => {
691895
691899
  var call154 = async () => {
691896
691900
  return {
691897
691901
  type: "text",
691898
- value: "1.78.11"
691902
+ value: "1.78.13"
691899
691903
  };
691900
691904
  }, version2, version_default;
691901
691905
  var init_version = __esm(() => {
@@ -703162,7 +703166,7 @@ function generateHtmlReport(data, insights) {
703162
703166
  </html>`;
703163
703167
  }
703164
703168
  function buildExportData(data, insights, facets, remoteStats) {
703165
- const version3 = typeof MACRO !== "undefined" ? "1.78.11" : "unknown";
703169
+ const version3 = typeof MACRO !== "undefined" ? "1.78.13" : "unknown";
703166
703170
  const remote_hosts_collected = remoteStats?.hosts.filter((h2) => h2.sessionCount > 0).map((h2) => h2.name);
703167
703171
  const facets_summary = {
703168
703172
  total: facets.size,
@@ -707476,7 +707480,7 @@ var init_sessionStorage = __esm(() => {
707476
707480
  init_settings2();
707477
707481
  init_slowOperations();
707478
707482
  init_uuid();
707479
- VERSION7 = typeof MACRO !== "undefined" ? "1.78.11" : "unknown";
707483
+ VERSION7 = typeof MACRO !== "undefined" ? "1.78.13" : "unknown";
707480
707484
  MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
707481
707485
  SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
707482
707486
  EPHEMERAL_PROGRESS_TYPES = new Set([
@@ -708691,7 +708695,7 @@ var init_filesystem = __esm(() => {
708691
708695
  });
708692
708696
  getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
708693
708697
  const nonce = randomBytes20(16).toString("hex");
708694
- return join232(getURTempDir(), "bundled-skills", "1.78.11", nonce);
708698
+ return join232(getURTempDir(), "bundled-skills", "1.78.13", nonce);
708695
708699
  });
708696
708700
  getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
708697
708701
  });
@@ -715066,7 +715070,7 @@ function computeFingerprint(messageText2, version3) {
715066
715070
  }
715067
715071
  function computeFingerprintFromMessages(messages) {
715068
715072
  const firstMessageText = extractFirstMessageText(messages);
715069
- return computeFingerprint(firstMessageText, "1.78.11");
715073
+ return computeFingerprint(firstMessageText, "1.78.13");
715070
715074
  }
715071
715075
  var FINGERPRINT_SALT = "59cf53e54c78";
715072
715076
  var init_fingerprint = () => {};
@@ -716988,7 +716992,7 @@ async function sideQuery(opts) {
716988
716992
  betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
716989
716993
  }
716990
716994
  const messageText2 = extractFirstUserMessageText(messages);
716991
- const fingerprint2 = computeFingerprint(messageText2, "1.78.11");
716995
+ const fingerprint2 = computeFingerprint(messageText2, "1.78.13");
716992
716996
  const attributionHeader = getAttributionHeader(fingerprint2);
716993
716997
  const systemBlocks = [
716994
716998
  attributionHeader ? { type: "text", text: attributionHeader } : null,
@@ -721825,7 +721829,7 @@ function buildSystemInitMessage(inputs) {
721825
721829
  slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
721826
721830
  apiKeySource: getURHQApiKeyWithSource().source,
721827
721831
  betas: getSdkBetas(),
721828
- ur_version: "1.78.11",
721832
+ ur_version: "1.78.13",
721829
721833
  output_style: outputStyle2,
721830
721834
  agents: inputs.agents.map((agent2) => agent2.agentType),
721831
721835
  skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill2) => skill2.name),
@@ -735697,7 +735701,7 @@ var init_useVoiceEnabled = __esm(() => {
735697
735701
  function getSemverPart(version3) {
735698
735702
  return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
735699
735703
  }
735700
- function useUpdateNotification(updatedVersion, initialVersion = "1.78.11") {
735704
+ function useUpdateNotification(updatedVersion, initialVersion = "1.78.13") {
735701
735705
  const [lastNotifiedSemver, setLastNotifiedSemver] = import_react224.useState(() => getSemverPart(initialVersion));
735702
735706
  if (!updatedVersion) {
735703
735707
  return null;
@@ -735746,7 +735750,7 @@ function AutoUpdater({
735746
735750
  return;
735747
735751
  }
735748
735752
  if (false) {}
735749
- const currentVersion = "1.78.11";
735753
+ const currentVersion = "1.78.13";
735750
735754
  const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
735751
735755
  let latestVersion = await getLatestVersion(channel);
735752
735756
  const isDisabled = isAutoUpdaterDisabled();
@@ -735975,12 +735979,12 @@ function NativeAutoUpdater({
735975
735979
  logEvent("tengu_native_auto_updater_start", {});
735976
735980
  try {
735977
735981
  const maxVersion = await getMaxVersion();
735978
- if (maxVersion && gt("1.78.11", maxVersion)) {
735982
+ if (maxVersion && gt("1.78.13", maxVersion)) {
735979
735983
  const msg = await getMaxVersionMessage();
735980
735984
  setMaxVersionIssue(msg ?? "affects your version");
735981
735985
  }
735982
735986
  const result = await installLatest(channel);
735983
- const currentVersion = "1.78.11";
735987
+ const currentVersion = "1.78.13";
735984
735988
  const latencyMs = Date.now() - startTime;
735985
735989
  if (result.lockFailed) {
735986
735990
  logEvent("tengu_native_auto_updater_lock_contention", {
@@ -736117,17 +736121,17 @@ function PackageManagerAutoUpdater(t0) {
736117
736121
  const maxVersion = await getMaxVersion();
736118
736122
  if (maxVersion && latest && gt(latest, maxVersion)) {
736119
736123
  logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
736120
- if (gte("1.78.11", maxVersion)) {
736121
- logForDebugging(`PackageManagerAutoUpdater: current version ${"1.78.11"} is already at or above maxVersion ${maxVersion}, skipping update`);
736124
+ if (gte("1.78.13", maxVersion)) {
736125
+ logForDebugging(`PackageManagerAutoUpdater: current version ${"1.78.13"} is already at or above maxVersion ${maxVersion}, skipping update`);
736122
736126
  setUpdateAvailable(false);
736123
736127
  return;
736124
736128
  }
736125
736129
  latest = maxVersion;
736126
736130
  }
736127
- const hasUpdate = latest && !gte("1.78.11", latest) && !shouldSkipVersion(latest);
736131
+ const hasUpdate = latest && !gte("1.78.13", latest) && !shouldSkipVersion(latest);
736128
736132
  setUpdateAvailable(!!hasUpdate);
736129
736133
  if (hasUpdate) {
736130
- logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.78.11"} -> ${latest}`);
736134
+ logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.78.13"} -> ${latest}`);
736131
736135
  }
736132
736136
  };
736133
736137
  $2[0] = t1;
@@ -736161,7 +736165,7 @@ function PackageManagerAutoUpdater(t0) {
736161
736165
  wrap: "truncate",
736162
736166
  children: [
736163
736167
  "currentVersion: ",
736164
- "1.78.11"
736168
+ "1.78.13"
736165
736169
  ]
736166
736170
  }, undefined, true, undefined, this);
736167
736171
  $2[3] = verbose;
@@ -746961,7 +746965,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
746961
746965
  project_dir: getOriginalCwd(),
746962
746966
  added_dirs: addedDirs
746963
746967
  },
746964
- version: "1.78.11",
746968
+ version: "1.78.13",
746965
746969
  output_style: {
746966
746970
  name: outputStyleName
746967
746971
  },
@@ -747096,7 +747100,7 @@ function StatusLineInner({
747096
747100
  const attention = customStatusError ?? taskAttention;
747097
747101
  const terminalSize = React133.useContext(TerminalSizeContext);
747098
747102
  const defaultStatusLineText = buildDefaultStatusBar({
747099
- version: "1.78.11",
747103
+ version: "1.78.13",
747100
747104
  providerLabel: providerRuntime.providerLabel,
747101
747105
  authMode: providerRuntime.authLabel,
747102
747106
  model: renderModelName(mainLoopModel) || providerRuntime.model || "",
@@ -757100,7 +757104,7 @@ function getTaskStatusCounts(tasks2, unresolvedIds) {
757100
757104
  return counts;
757101
757105
  }
757102
757106
  function isTaskPlanningPlaceholder(tasks2) {
757103
- return tasks2.length === 1 && isAutomaticPromptTask(tasks2[0]);
757107
+ return tasks2.length === 1 && isAutomaticPromptTask(tasks2[0]) && isTaskVisibleInActiveBoard(tasks2[0]);
757104
757108
  }
757105
757109
  function TaskListV2({
757106
757110
  tasks: tasks2,
@@ -757156,6 +757160,9 @@ function TaskListV2({
757156
757160
  if (tasks2.length === 0) {
757157
757161
  return null;
757158
757162
  }
757163
+ if (tasks2.every((task2) => !isTaskVisibleInActiveBoard(task2))) {
757164
+ return null;
757165
+ }
757159
757166
  if (isTaskPlanningPlaceholder(tasks2)) {
757160
757167
  const planningState = /* @__PURE__ */ jsx_dev_runtime431.jsxDEV(ThemedText, {
757161
757168
  dimColor: true,
@@ -759437,7 +759444,7 @@ async function submitTranscriptShare(messages, trigger2, appearanceId) {
759437
759444
  } catch {}
759438
759445
  const data = {
759439
759446
  trigger: trigger2,
759440
- version: "1.78.11",
759447
+ version: "1.78.13",
759441
759448
  platform: process.platform,
759442
759449
  transcript,
759443
759450
  subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
@@ -771817,7 +771824,7 @@ function WelcomeV2() {
771817
771824
  dimColor: true,
771818
771825
  children: [
771819
771826
  "v",
771820
- "1.78.11"
771827
+ "1.78.13"
771821
771828
  ]
771822
771829
  }, undefined, true, undefined, this)
771823
771830
  ]
@@ -773077,7 +773084,7 @@ function completeOnboarding() {
773077
773084
  saveGlobalConfig((current) => ({
773078
773085
  ...current,
773079
773086
  hasCompletedOnboarding: true,
773080
- lastOnboardingVersion: "1.78.11"
773087
+ lastOnboardingVersion: "1.78.13"
773081
773088
  }));
773082
773089
  }
773083
773090
  function showDialog(root2, renderer) {
@@ -778121,7 +778128,7 @@ function appendToLog(path24, message) {
778121
778128
  cwd: getFsImplementation().cwd(),
778122
778129
  userType: process.env.USER_TYPE,
778123
778130
  sessionId: getSessionId(),
778124
- version: "1.78.11"
778131
+ version: "1.78.13"
778125
778132
  };
778126
778133
  getLogWriter(path24).write(messageWithTimestamp);
778127
778134
  }
@@ -782280,8 +782287,8 @@ async function getEnvLessBridgeConfig() {
782280
782287
  }
782281
782288
  async function checkEnvLessBridgeMinVersion() {
782282
782289
  const cfg = await getEnvLessBridgeConfig();
782283
- if (cfg.min_version && lt("1.78.11", cfg.min_version)) {
782284
- return `Your version of UR (${"1.78.11"}) is too old for Remote Control.
782290
+ if (cfg.min_version && lt("1.78.13", cfg.min_version)) {
782291
+ return `Your version of UR (${"1.78.13"}) is too old for Remote Control.
782285
782292
  Version ${cfg.min_version} or higher is required. Run \`ur update\` to update.`;
782286
782293
  }
782287
782294
  return null;
@@ -782755,7 +782762,7 @@ async function initBridgeCore(params) {
782755
782762
  const rawApi = createBridgeApiClient({
782756
782763
  baseUrl,
782757
782764
  getAccessToken,
782758
- runnerVersion: "1.78.11",
782765
+ runnerVersion: "1.78.13",
782759
782766
  onDebug: logForDebugging,
782760
782767
  onAuth401,
782761
782768
  getTrustedDeviceToken
@@ -792228,7 +792235,7 @@ function getAgUiCapabilities() {
792228
792235
  name: "UR-Nexus",
792229
792236
  type: "ur-nexus",
792230
792237
  description: "Provider-flexible, local-first autonomous engineering workflow agent.",
792231
- version: "1.78.11",
792238
+ version: "1.78.13",
792232
792239
  provider: "UR",
792233
792240
  documentationUrl: "https://github.com/Maitham16/UR/blob/master/docs/AG_UI.md"
792234
792241
  },
@@ -793368,7 +793375,7 @@ function createMCPServer(cwd4, debug2, verbose) {
793368
793375
  };
793369
793376
  const server2 = new Server({
793370
793377
  name: "ur-nexus",
793371
- version: "1.78.11"
793378
+ version: "1.78.13"
793372
793379
  }, {
793373
793380
  capabilities: {
793374
793381
  tools: {}
@@ -794526,7 +794533,7 @@ function thrownResponse(error40) {
794526
794533
  }
794527
794534
  async function createUrMcp2026Runtime(options4) {
794528
794535
  const server2 = createMCPServer(options4.cwd, options4.debug === true, options4.verbose === true);
794529
- const client2 = new Client({ name: "ur-mcp-2026-adapter", version: "1.78.11" }, { capabilities: {} });
794536
+ const client2 = new Client({ name: "ur-mcp-2026-adapter", version: "1.78.13" }, { capabilities: {} });
794530
794537
  const [clientTransport, serverTransport] = createLinkedTransportPair();
794531
794538
  try {
794532
794539
  await server2.connect(serverTransport);
@@ -794537,7 +794544,7 @@ async function createUrMcp2026Runtime(options4) {
794537
794544
  }
794538
794545
  const runtime2 = new Mcp2026Runtime({
794539
794546
  cwd: options4.cwd,
794540
- version: "1.78.11",
794547
+ version: "1.78.13",
794541
794548
  backend: {
794542
794549
  listTools: async () => {
794543
794550
  const listed = await client2.listTools();
@@ -796678,7 +796685,7 @@ async function update() {
796678
796685
  logEvent("tengu_update_check", {});
796679
796686
  const diagnostic2 = await getDoctorDiagnostic();
796680
796687
  const result = await checkUpgradeStatus({
796681
- currentVersion: "1.78.11",
796688
+ currentVersion: "1.78.13",
796682
796689
  packageName: UR_AGENT_PACKAGE_NAME,
796683
796690
  installationType: diagnostic2.installationType,
796684
796691
  latestVersion: () => getLatestNpmPackageVersion(UR_AGENT_PACKAGE_NAME)
@@ -797994,7 +798001,7 @@ ${customInstructions}` : customInstructions;
797994
798001
  }
797995
798002
  }
797996
798003
  logForDiagnosticsNoPII("info", "started", {
797997
- version: "1.78.11",
798004
+ version: "1.78.13",
797998
798005
  is_native_binary: isInBundledMode()
797999
798006
  });
798000
798007
  registerCleanup(async () => {
@@ -798780,7 +798787,7 @@ Usage: ur --remote "your task description"`, () => gracefulShutdown(1));
798780
798787
  pendingHookMessages
798781
798788
  }, renderAndRun);
798782
798789
  }
798783
- }).version("1.78.11 (UR-Nexus)", "-v, --version", "Output the version number");
798790
+ }).version("1.78.13 (UR-Nexus)", "-v, --version", "Output the version number");
798784
798791
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
798785
798792
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
798786
798793
  if (canUserConfigureAdvisor()) {
@@ -799832,7 +799839,7 @@ if (false) {}
799832
799839
  async function main2() {
799833
799840
  const args = process.argv.slice(2);
799834
799841
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
799835
- console.log(`${"1.78.11"} (UR-Nexus)`);
799842
+ console.log(`${"1.78.13"} (UR-Nexus)`);
799836
799843
  return;
799837
799844
  }
799838
799845
  if (args[0] === "a2a" && args[1] === "serve" && !args.includes("--help") && !args.includes("-h")) {
package/docs/USAGE.md CHANGED
@@ -394,7 +394,9 @@ A work board is seeded immediately. Before the model names concrete work, the
394
394
  UI shows a neutral `Planning tasks…` state—not the prompt and not a misleading
395
395
  one-task counter. The seed stores no prompt text. If the model creates explicit
396
396
  subtasks, its first `TaskCreate` atomically replaces that seed instead of
397
- duplicating it. A successful simple turn completes the seed automatically.
397
+ duplicating it. A successful simple turn completes the seed automatically and
398
+ its terminal placeholder disappears from the task panel and status bar. The
399
+ snapshot remains available internally so a corrective follow-up can reopen it.
398
400
  Replies such as corrections (including `no` / `still` feedback), approvals,
399
401
  and interruptions reuse the current seed or explicit unfinished board. The
400
402
  agent reconciles and updates the relevant work rather than starting empty. A
@@ -19,7 +19,7 @@ You need:
19
19
 
20
20
  ```sh
21
21
  ur --version
22
- # expected for this release: "1.78.11 (UR-Nexus)"
22
+ # expected for this release: "1.78.13 (UR-Nexus)"
23
23
  ```
24
24
 
25
25
  ## 0.1 First-workspace model selection (1.45.4)
@@ -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.78.11</p>
48
+ <p class="eyebrow">Version 1.78.13</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.78.11"
10
+ version = "1.78.13"
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.78.11",
5
+ "version": "1.78.13",
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.78.11",
3
+ "version": "1.78.13",
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",