ur-agent 1.78.6 → 1.78.8
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 +49 -2
- package/dist/cli.js +940 -536
- package/docs/USAGE.md +29 -0
- 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,7 +1,54 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 1.78.
|
|
4
|
-
|
|
3
|
+
## 1.78.8
|
|
4
|
+
|
|
5
|
+
- Long model self-deliberation emitted through the ordinary answer channel is
|
|
6
|
+
compacted into a slim `Reasoning condensed` rail. The useful summary and
|
|
7
|
+
result remain visible, `ctrl+o` expands the complete trace, and the original
|
|
8
|
+
text still stays in session history and model context; this is a cached,
|
|
9
|
+
linear-time display change, not reasoning truncation.
|
|
10
|
+
- The `◭ Mashoofing…` activity row remains present for the entire live turn.
|
|
11
|
+
Its parenthesized detail moves through the real phase (`thinking`,
|
|
12
|
+
`requesting`, `responding`, `preparing tool`, or `working`) and continues to
|
|
13
|
+
show elapsed thinking time and token activity instead of disappearing
|
|
14
|
+
between stream states.
|
|
15
|
+
- Large prompts are decomposed into a bounded dependency graph before work is
|
|
16
|
+
delegated. Natural lowercase follow-ups and semicolon clauses split
|
|
17
|
+
correctly, natural phrases such as `agents/subagents` are no longer mistaken
|
|
18
|
+
for paths, and invalid model-produced graphs (missing targets, self-edges,
|
|
19
|
+
cycles, duplicates, or excessive fan-out) fall back to the deterministic
|
|
20
|
+
planner instead of reaching the task store.
|
|
21
|
+
- Parallelism now follows the work, not merely the requested worker count.
|
|
22
|
+
Independent read-only branches may overlap; unknown or shared-checkout
|
|
23
|
+
mutations serialize across tasks, crews, and concurrent top-level plans.
|
|
24
|
+
Mutating subagents may overlap only in explicit isolation, whose worktrees
|
|
25
|
+
start from the exact clean current revision rather than a possibly stale
|
|
26
|
+
remote branch.
|
|
27
|
+
- Task outcome learning is atomic across processes and records only work that
|
|
28
|
+
actually executed. Batched prompt-plan and crew outcomes cannot overwrite one
|
|
29
|
+
another, malformed stores normalize safely, and model routing waits for five
|
|
30
|
+
observations and compares confidence-adjusted success rather than trusting a
|
|
31
|
+
tiny perfect sample.
|
|
32
|
+
|
|
33
|
+
## 1.78.7
|
|
34
|
+
|
|
35
|
+
- A short approval turn such as `ok`, `proceed`, or `go ahead` keeps the active
|
|
36
|
+
task generation. It previously looked like a brand-new request, so the plan
|
|
37
|
+
was archived just before the agent tried to complete its first task; the next
|
|
38
|
+
dependent creation then failed too because its blocker had disappeared.
|
|
39
|
+
Whole-message matching keeps real follow-up requests on the fresh-list path.
|
|
40
|
+
- `AskUserQuestion` recovers a flattened option list even when the model omits
|
|
41
|
+
the outer question text. Eight `{description, header, label}` choices now
|
|
42
|
+
render under a neutral prompt with every label and description preserved,
|
|
43
|
+
instead of producing sixteen missing-field errors and showing no dialog.
|
|
44
|
+
- Batched `TaskCreate` calls keep their emitted order, so the consecutive IDs
|
|
45
|
+
used in dependency fields cannot be reassigned by lock-acquisition order.
|
|
46
|
+
Forward dependencies now work with the future task on either side of the
|
|
47
|
+
edge, adopt both reciprocal relationships when that task is created, and
|
|
48
|
+
participate in cycle detection while still virtual. A redundant self-edge
|
|
49
|
+
is ignored without deleting the otherwise-valid task. Together these prevent
|
|
50
|
+
the cascade of `task_not_found` / `self_dependency` errors that left only one
|
|
51
|
+
task from a multi-task plan.
|
|
5
52
|
- Delegation is the default for independent work rather than something held in
|
|
6
53
|
reserve. The guidance described subagents as valuable but warned against
|
|
7
54
|
using them "excessively when not needed", which reads as a reason not to —
|