ur-agent 1.78.7 → 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 CHANGED
@@ -1,7 +1,42 @@
1
1
  # Changelog
2
2
 
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
+
3
33
  ## 1.78.7
4
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.
5
40
  - `AskUserQuestion` recovers a flattened option list even when the model omits
6
41
  the outer question text. Eight `{description, header, label}` choices now
7
42
  render under a neutral prompt with every label and description preserved,