ur-agent 1.80.0 → 1.80.2
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 +22 -0
- package/dist/cli.js +183 -1251
- package/docs/AGENT_FEATURES.md +1 -1
- package/docs/GAP_ANALYSIS_2026-08-11.md +10 -6
- package/docs/USAGE.md +3 -1
- 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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.80.2
|
|
4
|
+
|
|
5
|
+
- Repaired repeated `AskUserQuestion` validation loops when a model emits one
|
|
6
|
+
flattened `{label, header, description}` suggestion, one ordinary option, or
|
|
7
|
+
duplicate-only options. UR preserves the model's suggestion and adds only a
|
|
8
|
+
neutral `Different answer` rejection path; it never fabricates a second
|
|
9
|
+
domain choice or selects an answer for the user. Zero-option questions still
|
|
10
|
+
fail closed.
|
|
11
|
+
|
|
12
|
+
## 1.80.1
|
|
13
|
+
|
|
14
|
+
- Removed the complete unreachable `ultraplan` implementation after its public
|
|
15
|
+
command was disabled: stale task types, pills, metadata, polling, prompt
|
|
16
|
+
routing, and UI state can no longer create a half-supported workflow. The
|
|
17
|
+
active `ultrareview` workflow remains supported and unchanged.
|
|
18
|
+
- Renamed the `/fix-bug` source module and test from their obsolete `debug-v2`
|
|
19
|
+
filenames, without changing the public command contract.
|
|
20
|
+
- Recorded the retracted Agent-to-Agent version finding: UR deliberately serves
|
|
21
|
+
truthful legacy 0.3 and modern v1 cards through negotiation, so no protocol
|
|
22
|
+
behavior was changed.
|
|
23
|
+
- “Approve all”/`autoApprove` remains supported and unchanged.
|
|
24
|
+
|
|
3
25
|
## 1.80.0
|
|
4
26
|
|
|
5
27
|
- Sandbox security now supports trusted-source-only credential masking and
|