ur-agent 1.65.9 → 1.65.11
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 +48 -0
- package/dist/cli.js +1268 -687
- 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 +63 -0
- package/technical/09-multi-agent.md +52 -5
- package/technical/12-security-sandbox-stability.md +17 -0
- package/technical/README.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.65.11
|
|
4
|
+
|
|
5
|
+
- Hardened `AskUserQuestion` for weaker models without inventing user intent.
|
|
6
|
+
Its model schema now exposes only a strict 1–4-question request shape with
|
|
7
|
+
2–8 nested choices, compact validation explains malformed flat arrays, and
|
|
8
|
+
lossless recovery never fabricates labels, descriptions, or prose-derived
|
|
9
|
+
questions.
|
|
10
|
+
- Made question interaction truthful and safe. Answers are accepted only after
|
|
11
|
+
post-permission validation has collected one real response per question,
|
|
12
|
+
custom `Other` works in both menu layouts, question-keyed UI state is
|
|
13
|
+
prototype-safe, and HTML-configured previews render escaped inert text
|
|
14
|
+
instead of executable model markup.
|
|
15
|
+
- Improved weak-model file-tool recovery. `Write` now explains that
|
|
16
|
+
`file_path` and complete `content` must be supplied together and never treats
|
|
17
|
+
surrounding prose as file data; a narrow deletion-only `Edit` whose desired
|
|
18
|
+
replacement is already uniquely present reports “already up to date” without
|
|
19
|
+
writing, while ambiguous and general stale edits still fail closed.
|
|
20
|
+
- Corrected task-gate control flow and diagnostics. `ExitPlanMode` can reach
|
|
21
|
+
its approval transition without an implementation task, stale out-of-mode
|
|
22
|
+
calls remain invalid, and gate recovery distinguishes a missing plan from an
|
|
23
|
+
all-terminal task list so unfinished Edit/Bash work is reopened rather than
|
|
24
|
+
retried unchanged. A simple loopback browser preview bypasses only the task
|
|
25
|
+
gate while retaining Bash permission and rewrite checks.
|
|
26
|
+
- Kept package validation compatible with both npm 11 and npm 12
|
|
27
|
+
`npm pack --json` output shapes, so upgrading npm does not make a valid
|
|
28
|
+
tarball look missing during tests or release checks.
|
|
29
|
+
|
|
30
|
+
## 1.65.10
|
|
31
|
+
|
|
32
|
+
- Reworked approved-plan execution into a capability-aware task graph. Plans
|
|
33
|
+
now split separately completable outcomes, keep genuinely atomic work whole,
|
|
34
|
+
express review-to-fix and verification dependencies, and launch only ready,
|
|
35
|
+
non-conflicting work in parallel waves of at most eight. The handoff uses
|
|
36
|
+
`TaskCreate`/`TaskUpdate`, `TodoWrite`, or the numbered plan according to the
|
|
37
|
+
tools actually available, and never advertises a worker that is not active.
|
|
38
|
+
- Made the built-in Explore and Plan agents available in the standard CLI with
|
|
39
|
+
structurally read-only tools. Parent and child execution boundaries reject
|
|
40
|
+
mutations even after permission-hook rewrites, custom agents cannot inherit
|
|
41
|
+
the exemption by reusing a name, and team creation/deletion rechecks live
|
|
42
|
+
plan mode before changing state.
|
|
43
|
+
- Task tools now accept positive safe-integer JSON task IDs as well as strings
|
|
44
|
+
and normalize them to canonical persisted strings, fixing smaller models
|
|
45
|
+
that call `TaskUpdate` with `taskId: 1`.
|
|
46
|
+
- Exact edit failures now return a bounded preview and a verified line anchor
|
|
47
|
+
for a fresh, smaller contiguous match. Large cross-section replacements fail
|
|
48
|
+
closed with actionable recovery instead of retrying unchanged or applying a
|
|
49
|
+
risky fuzzy edit.
|
|
50
|
+
|
|
3
51
|
## 1.65.9
|
|
4
52
|
|
|
5
53
|
- Fixed the plan-file/task-list deadlock. While plan mode is active, the exact
|