ur-agent 1.80.0 → 1.80.1

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.
@@ -1,6 +1,7 @@
1
1
  # UR Gap Analysis — 2026-08-11 Implemented Release Audit
2
2
 
3
- Baseline audited: `ur-agent@1.79.1`, commit `6faed11`. Release target: `1.80.0`.
3
+ Baseline audited: `ur-agent@1.79.1`, commit `6faed11`. Implemented in
4
+ `1.80.0`; stale-feature cleanup completed in `1.80.1`.
4
5
  Primary references were rechecked before implementation: Claude Code
5
6
  2.1.221–2.1.224, the final Model Context Protocol specification dated
6
7
  2026-07-28, and the Agent2Agent 1.0 release.
@@ -34,16 +35,19 @@ unchanged. UR does not add automated approval delegation.
34
35
 
35
36
  - `roots/list` was not absent. UR already served the initial working directory;
36
37
  this release extends it to added directories and change notifications.
37
- - The old and modern Agent-to-Agent cards are separate negotiated compatibility
38
- representations. The old card’s version is truthful and must not be relabeled.
38
+ - Retracted finding: the old and modern Agent-to-Agent cards are separate,
39
+ negotiated compatibility representations selected by `a2aServer.ts`. The
40
+ legacy card’s `protocolVersion: 0.3.0` is truthful; the v1 card is produced
41
+ separately by `a2aV1.ts` and signed independently. No code fix was required.
39
42
  - gRPC transport and AP2 payments are optional integrations, not correctness
40
43
  requirements for UR’s local coding-agent surface. Shipping either without a
41
44
  real transport consumer, payment policy, credential model, and end-to-end
42
45
  conformance suite would add attack surface without useful capability, so they
43
46
  are deliberately omitted.
44
- - Anthropic removed `ultraplan` in Claude Code 2.1.222. UR’s registered command
45
- was also permanently disabled, so the registration was removed as dead public
46
- weight. Shared remote-planning internals used by active features remain.
47
+ - Anthropic removed `ultraplan` in Claude Code 2.1.222. UR’s command was already
48
+ unregistered and permanently disabled, so 1.80.1 removes its unreachable
49
+ command, task state, pills, metadata, polling, and UI. The active
50
+ `ultrareview` workflow remains available with its own keyword helper.
47
51
  - `EndConversation`, managed-gateway spend UX, `/dataviz`, and automated
48
52
  approval delegation remain intentionally omitted. They either duplicate
49
53
  existing controls, are content rather than capability, or weaken the explicit
@@ -19,7 +19,7 @@ You need:
19
19
 
20
20
  ```sh
21
21
  ur --version
22
- # expected for this release: "1.80.0 (UR-Nexus)"
22
+ # expected for this release: "1.80.1 (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.80.0</p>
48
+ <p class="eyebrow">Version 1.80.1</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.80.0"
10
+ version = "1.80.1"
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.80.0",
5
+ "version": "1.80.1",
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.80.0",
3
+ "version": "1.80.1",
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",