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.
- package/CHANGELOG.md +13 -0
- package/dist/cli.js +151 -1246
- package/docs/GAP_ANALYSIS_2026-08-11.md +10 -6
- package/docs/VALIDATION.md +1 -1
- package/documentation/index.html +1 -1
- package/extensions/jetbrains-ur/build.gradle.kts +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +1 -1
|
@@ -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`.
|
|
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
|
-
-
|
|
38
|
-
|
|
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
|
|
45
|
-
|
|
46
|
-
|
|
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
|
package/docs/VALIDATION.md
CHANGED
package/documentation/index.html
CHANGED
|
@@ -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.
|
|
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>
|
|
@@ -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.
|
|
5
|
+
"version": "1.80.1",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED