ur-agent 1.44.2 → 1.44.4
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 +54 -0
- package/dist/cli.js +10278 -10012
- 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,59 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.44.4
|
|
4
|
+
|
|
5
|
+
- The agent now learns from every run automatically — no `/learn run` needed.
|
|
6
|
+
ci-loop, arena, escalation, and test-first completions fold their pass/fail
|
|
7
|
+
outcome (per task category and model) into `.ur/learning/stats.json` as a
|
|
8
|
+
pure JSON update: zero model calls, zero tokens, idempotent, and failure of
|
|
9
|
+
the store can never break the run that produced the outcome.
|
|
10
|
+
- The `auto` routing strategy consumes that evidence: when a model has a
|
|
11
|
+
proven track record for a task's category (≥ 3 recorded runs, ≥ 60% pass
|
|
12
|
+
rate) and is currently selectable, it is chosen directly. Categories that
|
|
13
|
+
history shows a cheap local model handles reliably stop paying for the
|
|
14
|
+
strong tier — tokens go down because of evidence, not guesswork. With thin
|
|
15
|
+
or absent evidence, routing falls through to the exact previous heuristics,
|
|
16
|
+
so behavior can never degrade below today's.
|
|
17
|
+
- `/escalate` keeps consuming the same store (learned difficulty bias), which
|
|
18
|
+
now grows by itself, so tier selection sharpens run over run.
|
|
19
|
+
- New `autoMemoryExtractionInterval` setting: run the auto-memory extraction
|
|
20
|
+
agent every N eligible turns instead of every turn. The default (1) is
|
|
21
|
+
unchanged; the extraction is a forked agent call on the session model, so
|
|
22
|
+
this is an explicit token/compute dial for long sessions.
|
|
23
|
+
|
|
24
|
+
## 1.44.3
|
|
25
|
+
|
|
26
|
+
- Make thinking visually distinct from answers: thinking blocks are labeled
|
|
27
|
+
"model reasoning to itself — not the answer" (dim italic, left-bordered when
|
|
28
|
+
expanded); answer text carries an accent-colored ⏺ marker.
|
|
29
|
+
- Pin the live task panel: it stays visible above the prompt while the agent
|
|
30
|
+
works (previously hidden during turns), with real-time status icons
|
|
31
|
+
(✔ done, ■ in progress, □ pending, ✘ failed, ⚠ skipped). `showExpandedTodos`
|
|
32
|
+
now defaults on; ctrl+T still toggles.
|
|
33
|
+
- Add tasks on request: saying "add to your tasks …" now creates the task
|
|
34
|
+
immediately, even mid-turn, and it appears live in the pinned panel.
|
|
35
|
+
- Add `/undo`: restores the most recently edited file to its content from
|
|
36
|
+
before the last turn's edits (deletes a file the last edit created). Full
|
|
37
|
+
checkpoint restore remains `/rewind`.
|
|
38
|
+
- Reject shell commands with unterminated quotes before execution, with a
|
|
39
|
+
diagnostic that names the defect, suggests the quoted-heredoc fix, and
|
|
40
|
+
tells the model not to retry the identical command.
|
|
41
|
+
- Add Concise, JSON-strict, Debug-verbose, and Release-notes output styles.
|
|
42
|
+
- Ollama: drop text-form tool calls that duplicate native ones (no more
|
|
43
|
+
double-executed Writes); tolerate and strip up to two hallucinated extra
|
|
44
|
+
keys on bare-JSON Write/Edit calls instead of leaking them as prose.
|
|
45
|
+
- Fix the test suite: repaired two committed test files that failed or
|
|
46
|
+
poisoned other suites via global module mocks — the suite is now fully
|
|
47
|
+
green (1134 pass, 0 fail).
|
|
48
|
+
- TypeScript now covers test/ (fixed all 171 surfaced errors) and 544
|
|
49
|
+
compiled files no longer end in megabyte-scale inline sourcemap comments —
|
|
50
|
+
VS Code diagnostics and long-line problems are gone.
|
|
51
|
+
- Repo hygiene: untracked committed local state (.ur state files, FUSE
|
|
52
|
+
artifact, stray yarn.lock) and added ignore rules; added UR.md project
|
|
53
|
+
memory so the agent learns the repo across sessions.
|
|
54
|
+
- `Task` status schema now includes `failed` and `skipped`, matching what
|
|
55
|
+
crew/workflow runs produce and the task panel renders.
|
|
56
|
+
|
|
3
57
|
## 1.44.2
|
|
4
58
|
|
|
5
59
|
- Fix Ollama streamed tool-call accumulation: Ollama streams each completed
|