ur-agent 1.48.0 → 1.50.0
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 +48 -0
- package/dist/cli.js +796 -326
- package/docs/AGENT_FEATURES.md +13 -0
- 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
package/docs/AGENT_FEATURES.md
CHANGED
|
@@ -9,6 +9,19 @@ reproducible autonomous software engineering agent: every substantial task can
|
|
|
9
9
|
be driven as `spec -> plan -> patch -> test -> report -> rollback`, with the
|
|
10
10
|
spec as the durable source of truth and command evidence as the success gate.
|
|
11
11
|
|
|
12
|
+
## v1.49.0 Additions
|
|
13
|
+
|
|
14
|
+
- Signed A2A Agent Cards. An Agent Card is discovery metadata served over plain
|
|
15
|
+
HTTP, so a client cannot otherwise distinguish a genuine card from one
|
|
16
|
+
rewritten in transit — the endpoints, skills, and auth schemes it advertises
|
|
17
|
+
are all taken on trust. UR can now sign the v1 card with an Ed25519 key,
|
|
18
|
+
producing an RFC 7515 detached JWS over the card's RFC 8785 canonical form,
|
|
19
|
+
which a client verifies before trusting anything the card claims. Multiple
|
|
20
|
+
keys can sign one card independently, and verification refuses a
|
|
21
|
+
caller-supplied `alg` so a signature cannot be stripped by substituting
|
|
22
|
+
`none`. Signing is opt-in: without a provisioned key the card is served
|
|
23
|
+
unsigned and unchanged.
|
|
24
|
+
|
|
12
25
|
## v1.48.0 Additions
|
|
13
26
|
|
|
14
27
|
- `ur cloud --runner managed` persists remote environment/session lifecycle,
|
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.
|
|
48
|
+
<p class="eyebrow">Version 1.50.0</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.
|
|
5
|
+
"version": "1.50.0",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED