ur-agent 1.44.2 → 1.44.3
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 +33 -0
- package/dist/cli.js +8668 -8481
- 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,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.44.3
|
|
4
|
+
|
|
5
|
+
- Make thinking visually distinct from answers: thinking blocks are labeled
|
|
6
|
+
"model reasoning to itself — not the answer" (dim italic, left-bordered when
|
|
7
|
+
expanded); answer text carries an accent-colored ⏺ marker.
|
|
8
|
+
- Pin the live task panel: it stays visible above the prompt while the agent
|
|
9
|
+
works (previously hidden during turns), with real-time status icons
|
|
10
|
+
(✔ done, ■ in progress, □ pending, ✘ failed, ⚠ skipped). `showExpandedTodos`
|
|
11
|
+
now defaults on; ctrl+T still toggles.
|
|
12
|
+
- Add tasks on request: saying "add to your tasks …" now creates the task
|
|
13
|
+
immediately, even mid-turn, and it appears live in the pinned panel.
|
|
14
|
+
- Add `/undo`: restores the most recently edited file to its content from
|
|
15
|
+
before the last turn's edits (deletes a file the last edit created). Full
|
|
16
|
+
checkpoint restore remains `/rewind`.
|
|
17
|
+
- Reject shell commands with unterminated quotes before execution, with a
|
|
18
|
+
diagnostic that names the defect, suggests the quoted-heredoc fix, and
|
|
19
|
+
tells the model not to retry the identical command.
|
|
20
|
+
- Add Concise, JSON-strict, Debug-verbose, and Release-notes output styles.
|
|
21
|
+
- Ollama: drop text-form tool calls that duplicate native ones (no more
|
|
22
|
+
double-executed Writes); tolerate and strip up to two hallucinated extra
|
|
23
|
+
keys on bare-JSON Write/Edit calls instead of leaking them as prose.
|
|
24
|
+
- Fix the test suite: repaired two committed test files that failed or
|
|
25
|
+
poisoned other suites via global module mocks — the suite is now fully
|
|
26
|
+
green (1134 pass, 0 fail).
|
|
27
|
+
- TypeScript now covers test/ (fixed all 171 surfaced errors) and 544
|
|
28
|
+
compiled files no longer end in megabyte-scale inline sourcemap comments —
|
|
29
|
+
VS Code diagnostics and long-line problems are gone.
|
|
30
|
+
- Repo hygiene: untracked committed local state (.ur state files, FUSE
|
|
31
|
+
artifact, stray yarn.lock) and added ignore rules; added UR.md project
|
|
32
|
+
memory so the agent learns the repo across sessions.
|
|
33
|
+
- `Task` status schema now includes `failed` and `skipped`, matching what
|
|
34
|
+
crew/workflow runs produce and the task panel renders.
|
|
35
|
+
|
|
3
36
|
## 1.44.2
|
|
4
37
|
|
|
5
38
|
- Fix Ollama streamed tool-call accumulation: Ollama streams each completed
|