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.
- package/CHANGELOG.md +24 -0
- package/dist/cli.js +762 -597
- package/docs/AGENT_FEATURES.md +12 -0
- package/docs/TROUBLESHOOTING.md +14 -5
- package/docs/USAGE.md +13 -0
- package/docs/VALIDATION.md +29 -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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.80.6
|
|
4
|
+
|
|
5
|
+
- Fixed Plan Mode's failed-first research delegation. UR's shipped read-only
|
|
6
|
+
`Explore` and `Plan` agents can now run before implementation tasks exist, as
|
|
7
|
+
the plan workflow already instructs, without emitting `TaskListRequired`.
|
|
8
|
+
- Kept the exception deliberately narrow: the active definition must be the
|
|
9
|
+
built-in plan-permission agent, called by the main session without a name,
|
|
10
|
+
team, worktree, or nested parent. Custom overrides and every write-capable
|
|
11
|
+
delegation still require an actionable task, and rewritten tool inputs are
|
|
12
|
+
revalidated immediately before execution. Approve All remains unchanged.
|
|
13
|
+
|
|
14
|
+
## 1.80.5
|
|
15
|
+
|
|
16
|
+
- Fixed the plan-mode/task-tracking deadlock introduced by the strict task
|
|
17
|
+
gate. Writing or editing only the active session plan file is now allowed
|
|
18
|
+
during plan mode, while project files remain protected and read-only.
|
|
19
|
+
- Plan approval now guarantees a visible execution board before coding starts.
|
|
20
|
+
Existing actionable tasks are preserved; otherwise UR derives a bounded,
|
|
21
|
+
deduplicated set of implementation tasks plus a dependent verification task
|
|
22
|
+
through the canonical `TaskCreate` lifecycle.
|
|
23
|
+
- `ExitPlanMode` can no longer be blocked for lacking the tasks it is
|
|
24
|
+
responsible for synchronizing. Plan prompts and recovery documentation now
|
|
25
|
+
describe the same lifecycle. Approve All remains unchanged.
|
|
26
|
+
|
|
3
27
|
## 1.80.4
|
|
4
28
|
|
|
5
29
|
- Stopped runaway WebFetch loops on permanent HTTP 4xx responses. Failures are
|