ur-agent 1.44.3 → 1.44.5
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 +28 -0
- package/dist/cli.js +1688 -1608
- package/documentation/index.html +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.44.5
|
|
4
|
+
|
|
5
|
+
- Change `dontAsk` permission mode into an auto-approval mode for operations
|
|
6
|
+
that would otherwise require manual approval. Explicit deny rules and
|
|
7
|
+
security-policy blocks still apply.
|
|
8
|
+
- Expose `dontAsk` in the interactive permission-mode cycle.
|
|
9
|
+
|
|
10
|
+
## 1.44.4
|
|
11
|
+
|
|
12
|
+
- The agent now learns from every run automatically — no `/learn run` needed.
|
|
13
|
+
ci-loop, arena, escalation, and test-first completions fold their pass/fail
|
|
14
|
+
outcome (per task category and model) into `.ur/learning/stats.json` as a
|
|
15
|
+
pure JSON update: zero model calls, zero tokens, idempotent, and failure of
|
|
16
|
+
the store can never break the run that produced the outcome.
|
|
17
|
+
- The `auto` routing strategy consumes that evidence: when a model has a
|
|
18
|
+
proven track record for a task's category (≥ 3 recorded runs, ≥ 60% pass
|
|
19
|
+
rate) and is currently selectable, it is chosen directly. Categories that
|
|
20
|
+
history shows a cheap local model handles reliably stop paying for the
|
|
21
|
+
strong tier — tokens go down because of evidence, not guesswork. With thin
|
|
22
|
+
or absent evidence, routing falls through to the exact previous heuristics,
|
|
23
|
+
so behavior can never degrade below today's.
|
|
24
|
+
- `/escalate` keeps consuming the same store (learned difficulty bias), which
|
|
25
|
+
now grows by itself, so tier selection sharpens run over run.
|
|
26
|
+
- New `autoMemoryExtractionInterval` setting: run the auto-memory extraction
|
|
27
|
+
agent every N eligible turns instead of every turn. The default (1) is
|
|
28
|
+
unchanged; the extraction is a forked agent call on the session model, so
|
|
29
|
+
this is an explicit token/compute dial for long sessions.
|
|
30
|
+
|
|
3
31
|
## 1.44.3
|
|
4
32
|
|
|
5
33
|
- Make thinking visually distinct from answers: thinking blocks are labeled
|