ur-agent 1.80.4 → 1.80.5
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 +737 -592
- package/docs/AGENT_FEATURES.md +6 -0
- package/docs/TROUBLESHOOTING.md +10 -5
- package/docs/USAGE.md +8 -0
- package/docs/VALIDATION.md +17 -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,12 @@ 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.80.5 Addition
|
|
13
|
+
|
|
14
|
+
| Addition | Surface | What it adds |
|
|
15
|
+
| --- | --- | --- |
|
|
16
|
+
| Plan-to-task synchronization | `Write`/`Edit` plan artifact, `ExitPlanMode`, canonical `TaskCreate` lifecycle | Removes the circular task-gate failure while keeping project mutations protected. Approval preserves an existing actionable board or creates bounded, deduplicated implementation tasks and a dependent verification task before coding begins. |
|
|
17
|
+
|
|
12
18
|
## v1.80.4 Additions
|
|
13
19
|
|
|
14
20
|
| Addition | Surface | What it adds |
|
package/docs/TROUBLESHOOTING.md
CHANGED
|
@@ -85,11 +85,16 @@ ur provider status
|
|
|
85
85
|
|
|
86
86
|
### Plan mode says `TaskListRequired`
|
|
87
87
|
|
|
88
|
-
- Likely cause
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
88
|
+
- Likely cause on UR 1.80.3–1.80.4: the strict task gate treated the session's
|
|
89
|
+
own plan-file update as a project mutation, creating a circular requirement
|
|
90
|
+
for tasks before the plan could be finalized.
|
|
91
|
+
- Fix: upgrade to UR 1.80.5 or newer. The exact active plan file is allowed
|
|
92
|
+
during plan mode, and approved plans are synchronized into visible
|
|
93
|
+
implementation and verification tasks before the first project mutation.
|
|
94
|
+
Other files remain protected. Existing actionable tasks are preserved.
|
|
95
|
+
- If the message names a project file rather than the active plan file, it is
|
|
96
|
+
expected: create the requested tasks or finish and approve the plan first.
|
|
97
|
+
Disabling `tasks.requireBeforeChanges` is no longer needed for plan mode.
|
|
93
98
|
|
|
94
99
|
## Providers and models
|
|
95
100
|
|
package/docs/USAGE.md
CHANGED
|
@@ -468,6 +468,14 @@ empty or adding the reply as another task. A terminal board is archived only
|
|
|
468
468
|
when the next prompt is genuinely new work. Legacy automatic placeholders from
|
|
469
469
|
older builds are hidden and removed at the next prompt boundary.
|
|
470
470
|
|
|
471
|
+
Plan mode has one narrow exception to the mutation gate: UR may write or edit
|
|
472
|
+
the exact plan file for the active session while the rest of the workspace
|
|
473
|
+
remains read-only. When the user approves the plan, `ExitPlanMode` preserves
|
|
474
|
+
any existing actionable board or creates a bounded set of professional,
|
|
475
|
+
deduplicated implementation tasks plus a verification task that depends on
|
|
476
|
+
them. Implementation therefore starts with visible tracking without requiring
|
|
477
|
+
the model or user to recover from a circular `TaskListRequired` error.
|
|
478
|
+
|
|
471
479
|
Independent read-only tasks can run in parallel. A task that may write to the
|
|
472
480
|
shared checkout is serialized with other possible writers, even when it comes
|
|
473
481
|
from another top-level prompt or crew worker. Parallel writers require explicit
|
package/docs/VALIDATION.md
CHANGED
|
@@ -19,7 +19,23 @@ You need:
|
|
|
19
19
|
|
|
20
20
|
```sh
|
|
21
21
|
ur --version
|
|
22
|
-
# expected for this release: "1.80.
|
|
22
|
+
# expected for this release: "1.80.5 (UR-Nexus)"
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### 0.0.1 Plan approval creates visible tasks (1.80.5)
|
|
26
|
+
|
|
27
|
+
Start an interactive session with task enforcement enabled, ask for a
|
|
28
|
+
multi-file change, and let the agent enter plan mode. Expected lifecycle:
|
|
29
|
+
|
|
30
|
+
1. Updating the displayed plan succeeds without `TaskListRequired`.
|
|
31
|
+
2. Approving `ExitPlanMode` creates or preserves visible implementation tasks.
|
|
32
|
+
3. A verification task is blocked by the implementation tasks.
|
|
33
|
+
4. The first project edit proceeds and task statuses stay visible.
|
|
34
|
+
|
|
35
|
+
The deterministic regression is:
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
bun test test/taskListGate.test.ts test/planModeTaskSync.test.ts
|
|
23
39
|
```
|
|
24
40
|
|
|
25
41
|
## 0.1 First-workspace model selection (1.45.4)
|
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.5</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.5",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED