ur-agent 1.78.13 → 1.78.14
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 +17 -0
- package/dist/cli.js +697 -6000
- package/docs/USAGE.md +11 -12
- 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 +7 -7
package/docs/USAGE.md
CHANGED
|
@@ -390,18 +390,17 @@ in dependency order. `ur exec` materializes this graph deterministically; the
|
|
|
390
390
|
interactive agent follows the same lifecycle and its task/agent tools enforce
|
|
391
391
|
the concurrency boundary.
|
|
392
392
|
|
|
393
|
-
A
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
corrective follow-up reopens the existing automatic task without renaming it.
|
|
393
|
+
A user prompt does not create a placeholder task. The task panel stays quiet
|
|
394
|
+
for informational conversation, direct one-step changes, acknowledgements, and
|
|
395
|
+
small corrections. For genuinely multi-step work, multiple independently
|
|
396
|
+
verifiable outcomes, dependencies, delegation, or an explicit request for a
|
|
397
|
+
task list, the model creates concrete tasks after it understands the work. Task
|
|
398
|
+
subjects describe outcomes and never copy the raw prompt. Replies such as
|
|
399
|
+
corrections (including `no` / `still` feedback), approvals, and interruptions
|
|
400
|
+
reuse and update the relevant explicit unfinished board rather than starting
|
|
401
|
+
empty or adding the reply as another task. A terminal board is archived only
|
|
402
|
+
when the next prompt is genuinely new work. Legacy automatic placeholders from
|
|
403
|
+
older builds are hidden and removed at the next prompt boundary.
|
|
405
404
|
|
|
406
405
|
Independent read-only tasks can run in parallel. A task that may write to the
|
|
407
406
|
shared checkout is serialized with other possible writers, even when it comes
|
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.78.
|
|
48
|
+
<p class="eyebrow">Version 1.78.14</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.78.
|
|
5
|
+
"version": "1.78.14",
|
|
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.
|
|
3
|
+
"version": "1.78.14",
|
|
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",
|
|
@@ -72,12 +72,12 @@
|
|
|
72
72
|
"prepack": "bun run build && bun run release:check"
|
|
73
73
|
},
|
|
74
74
|
"overrides": {
|
|
75
|
-
"@hono/node-server": "2.0.
|
|
75
|
+
"@hono/node-server": "2.0.12",
|
|
76
76
|
"body-parser": "2.3.0",
|
|
77
|
-
"fast-uri": "3.1.
|
|
77
|
+
"fast-uri": "3.1.5",
|
|
78
78
|
"form-data": "4.0.6",
|
|
79
|
-
"hono": "4.
|
|
80
|
-
"ip-address": "10.
|
|
79
|
+
"hono": "4.13.0",
|
|
80
|
+
"ip-address": "10.4.0",
|
|
81
81
|
"qs": "6.15.3"
|
|
82
82
|
},
|
|
83
83
|
"dependencies": {
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"@aws-sdk/credential-provider-node": "^3.972.68",
|
|
95
95
|
"@commander-js/extra-typings": "^13.1.0",
|
|
96
96
|
"@growthbook/growthbook": "1.6.5",
|
|
97
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
97
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
98
98
|
"@opentelemetry/api": "1.9.1",
|
|
99
99
|
"@opentelemetry/api-logs": "0.220.0",
|
|
100
100
|
"@opentelemetry/core": "2.9.0",
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
"tree-kill": "^1.2.2",
|
|
164
164
|
"type-fest": "^4.41.0",
|
|
165
165
|
"typescript": "^5.9.3",
|
|
166
|
-
"undici": "^7.
|
|
166
|
+
"undici": "^7.29.0",
|
|
167
167
|
"usehooks-ts": "^3.1.1",
|
|
168
168
|
"vscode-jsonrpc": "^8.2.1",
|
|
169
169
|
"vscode-languageserver-protocol": "^3.18.2",
|