ur-agent 1.65.10 → 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 +27 -0
- package/dist/cli.js +803 -530
- 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 +40 -2
- package/technical/12-security-sandbox-stability.md +17 -0
- package/technical/README.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
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
|
+
|
|
3
30
|
## 1.65.10
|
|
4
31
|
|
|
5
32
|
- Reworked approved-plan execution into a capability-aware task graph. Plans
|