ur-agent 1.80.4 → 1.80.6

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.
@@ -9,6 +9,18 @@ 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.6 Addition
13
+
14
+ | Addition | Surface | What it adds |
15
+ | --- | --- | --- |
16
+ | Read-only planning delegation | Plan mode, `Agent`, strict-hybrid task gate | Lets the shipped `Explore` and `Plan` agents research before implementation tasks exist, eliminating failed-first delegation while retaining plan permissions and task requirements for every custom, write-capable, nested, team, or worktree agent. |
17
+
18
+ ## v1.80.5 Addition
19
+
20
+ | Addition | Surface | What it adds |
21
+ | --- | --- | --- |
22
+ | 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. |
23
+
12
24
  ## v1.80.4 Additions
13
25
 
14
26
  | Addition | Surface | What it adds |
@@ -85,11 +85,20 @@ ur provider status
85
85
 
86
86
  ### Plan mode says `TaskListRequired`
87
87
 
88
- - Likely cause: the agent entered or updated plan mode but did not create the
89
- visible implementation tasks. A plan and a task list have separate roles.
90
- - Fix: call `TaskCreate` for the concrete outcomes before the first workspace
91
- mutation. Do not disable `tasks.requireBeforeChanges` merely to bypass this
92
- recovery message; the gate is preventing untracked implementation.
88
+ - Likely cause on UR 1.80.3–1.80.5: the strict task gate treated either the
89
+ active plan file or early read-only research delegation as an untracked
90
+ project mutation, creating a circular requirement before planning finished.
91
+ - Fix: upgrade to UR 1.80.6 or newer. The exact active plan file and main-thread
92
+ delegation to UR's shipped read-only `Explore` and `Plan` agents are allowed
93
+ before tasks exist. Approved plans are synchronized into visible
94
+ implementation and verification tasks before the first project mutation.
95
+ Other files and write-capable delegation remain protected. Existing
96
+ actionable tasks are preserved.
97
+ - If the message names a project file rather than the active plan file, it is
98
+ expected. It is also expected for custom/general-purpose/nested/team/worktree
99
+ agents without a parent task: create the requested tasks or finish and
100
+ approve the plan first. Disabling `tasks.requireBeforeChanges` is no longer
101
+ needed for normal plan mode.
93
102
 
94
103
  ## Providers and models
95
104
 
package/docs/USAGE.md CHANGED
@@ -468,6 +468,19 @@ 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. The main session may also delegate early research to UR's
474
+ shipped `Explore` and `Plan` agents before tasks exist. Those two definitions
475
+ are mechanically held in plan permission mode; custom overrides,
476
+ general-purpose agents, nested agents, team workers, and worktree agents still
477
+ require an actionable parent task. When the user approves the plan,
478
+ `ExitPlanMode` preserves any existing actionable board or creates a bounded set
479
+ of professional, deduplicated implementation tasks plus a verification task
480
+ that depends on them. Implementation therefore starts with visible tracking
481
+ without requiring the model or user to recover from a circular
482
+ `TaskListRequired` error.
483
+
471
484
  Independent read-only tasks can run in parallel. A task that may write to the
472
485
  shared checkout is serialized with other possible writers, even when it comes
473
486
  from another top-level prompt or crew worker. Parallel writers require explicit
@@ -19,7 +19,35 @@ You need:
19
19
 
20
20
  ```sh
21
21
  ur --version
22
- # expected for this release: "1.80.4 (UR-Nexus)"
22
+ # expected for this release: "1.80.6 (UR-Nexus)"
23
+ ```
24
+
25
+ ### 0.0 Plan research delegation starts cleanly (1.80.6)
26
+
27
+ Start an interactive session with task enforcement enabled and ask UR to plan a
28
+ change that requires codebase research. Before any task exists, built-in
29
+ `Explore` and `Plan` agent calls should initialize without `TaskListRequired`.
30
+ Custom or general-purpose agents should remain blocked until they have an
31
+ actionable parent task. The deterministic regressions are:
32
+
33
+ ```sh
34
+ bun test test/taskListGate.test.ts test/toolExecutionFinalInput.test.ts
35
+ ```
36
+
37
+ ### 0.0.1 Plan approval creates visible tasks (1.80.5)
38
+
39
+ Start an interactive session with task enforcement enabled, ask for a
40
+ multi-file change, and let the agent enter plan mode. Expected lifecycle:
41
+
42
+ 1. Updating the displayed plan succeeds without `TaskListRequired`.
43
+ 2. Approving `ExitPlanMode` creates or preserves visible implementation tasks.
44
+ 3. A verification task is blocked by the implementation tasks.
45
+ 4. The first project edit proceeds and task statuses stay visible.
46
+
47
+ The deterministic regression is:
48
+
49
+ ```sh
50
+ bun test test/taskListGate.test.ts test/planModeTaskSync.test.ts
23
51
  ```
24
52
 
25
53
  ## 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.4</p>
48
+ <p class="eyebrow">Version 1.80.6</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.4"
10
+ version = "1.80.6"
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.4",
5
+ "version": "1.80.6",
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.4",
3
+ "version": "1.80.6",
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",