ur-agent 1.65.8 → 1.65.10
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 +37 -0
- package/dist/cli.js +621 -260
- 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/technical/04-tools.md +32 -0
- package/technical/09-multi-agent.md +58 -5
- package/technical/11-integrations.md +4 -3
- package/technical/README.md +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.65.10
|
|
4
|
+
|
|
5
|
+
- Reworked approved-plan execution into a capability-aware task graph. Plans
|
|
6
|
+
now split separately completable outcomes, keep genuinely atomic work whole,
|
|
7
|
+
express review-to-fix and verification dependencies, and launch only ready,
|
|
8
|
+
non-conflicting work in parallel waves of at most eight. The handoff uses
|
|
9
|
+
`TaskCreate`/`TaskUpdate`, `TodoWrite`, or the numbered plan according to the
|
|
10
|
+
tools actually available, and never advertises a worker that is not active.
|
|
11
|
+
- Made the built-in Explore and Plan agents available in the standard CLI with
|
|
12
|
+
structurally read-only tools. Parent and child execution boundaries reject
|
|
13
|
+
mutations even after permission-hook rewrites, custom agents cannot inherit
|
|
14
|
+
the exemption by reusing a name, and team creation/deletion rechecks live
|
|
15
|
+
plan mode before changing state.
|
|
16
|
+
- Task tools now accept positive safe-integer JSON task IDs as well as strings
|
|
17
|
+
and normalize them to canonical persisted strings, fixing smaller models
|
|
18
|
+
that call `TaskUpdate` with `taskId: 1`.
|
|
19
|
+
- Exact edit failures now return a bounded preview and a verified line anchor
|
|
20
|
+
for a fresh, smaller contiguous match. Large cross-section replacements fail
|
|
21
|
+
closed with actionable recovery instead of retrying unchanged or applying a
|
|
22
|
+
risky fuzzy edit.
|
|
23
|
+
|
|
24
|
+
## 1.65.9
|
|
25
|
+
|
|
26
|
+
- Fixed the plan-file/task-list deadlock. While plan mode is active, the exact
|
|
27
|
+
normalized session plan file can be written before actionable tasks exist;
|
|
28
|
+
ordinary workspace mutations still require `TaskCreate`/`TodoWrite`, and
|
|
29
|
+
permission or hook rewrites are reclassified at the final execution boundary.
|
|
30
|
+
- Fixed `ExitPlanMode` approval races. Permission approval can change the mode
|
|
31
|
+
and rewrite allowed prompts or edited plan content without causing a false
|
|
32
|
+
“not in plan mode” error, while genuinely new out-of-mode calls remain
|
|
33
|
+
rejected. The compact execution contract now distinguishes ordered task
|
|
34
|
+
tracking from explicit plan mode for weaker models.
|
|
35
|
+
- Fixed Linux GitHub Actions and release validation without misrepresenting the
|
|
36
|
+
product surface. Registry checks now use the platform-neutral
|
|
37
|
+
167-command/160-visible/235-token baseline and verify the supported macOS and
|
|
38
|
+
x64 Windows `/desktop` (`/app`) delta separately.
|
|
39
|
+
|
|
3
40
|
## 1.65.8
|
|
4
41
|
|
|
5
42
|
- Fixed provider API-key entry in `/model`: the masked input now uses the
|