ur-agent 1.78.9 → 1.78.11
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 +27 -18
- package/dist/cli.js +386 -227
- package/docs/USAGE.md +30 -27
- package/docs/VALIDATION.md +7 -5
- package/docs/providers.md +8 -6
- package/documentation/index.html +3 -3
- 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,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 1.78.
|
|
3
|
+
## 1.78.11
|
|
4
4
|
|
|
5
5
|
- Provider-reported context overflow now triggers one bounded automatic
|
|
6
6
|
compaction-and-retry in the shipped build instead of immediately showing
|
|
@@ -9,25 +9,34 @@
|
|
|
9
9
|
recovery itself; the original transcript remains unchanged. Automatic
|
|
10
10
|
recovery still respects the user's disable setting and never recurses inside
|
|
11
11
|
compact/session-memory workers.
|
|
12
|
-
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
12
|
+
- The normal screen no longer paints live answer drafts or completed
|
|
13
|
+
"I'll inspect..." tool preludes. It shows stable tool progress and the final
|
|
14
|
+
answer instead; the complete provider text remains untouched in transcript
|
|
15
|
+
history, exports, verbose diagnostics, and future model context. The
|
|
16
|
+
`◭ Mashoofing…` activity row is now independent from streamed content and
|
|
17
|
+
remains mounted throughout active work, so hiding narration never hides
|
|
18
|
+
liveness. Its primary line now includes the live task-board activity after
|
|
19
|
+
the ellipsis, width-bounded to stay on one row.
|
|
20
|
+
- Ollama Cloud streams now tolerate five minutes of silence during large-model
|
|
21
|
+
prefill or tool planning instead of failing after two. The deadline still
|
|
22
|
+
measures inactivity rather than total runtime and remains configurable with
|
|
23
|
+
`UR_STREAM_IDLE_TIMEOUT_MS`; remote sessions and cloud non-streaming fallback
|
|
24
|
+
keep their two-minute bounds, and real dead streams still terminate.
|
|
25
|
+
|
|
26
|
+
- A new work board appears immediately, even before a model emits `TaskCreate`.
|
|
27
|
+
Its internal seed now renders as a neutral `Planning tasks…` state and never
|
|
28
|
+
stores or flashes the user's prompt as a task title or description. The first
|
|
29
|
+
explicit model task atomically replaces that seed, so parallel creation does
|
|
30
|
+
not duplicate or lose work. Corrective replies—including `no` / `still`
|
|
31
|
+
feedback—and interruptions resume the existing seed or explicit unfinished
|
|
32
|
+
board. A successful simple turn completes its seed; an aborted turn leaves it
|
|
33
|
+
pending for honest recovery.
|
|
26
34
|
- User interruptions no longer archive pending or in-progress tasks into an
|
|
27
35
|
apparently empty list. The next prompt advances the generation while keeping
|
|
28
|
-
unfinished work visible
|
|
29
|
-
|
|
30
|
-
|
|
36
|
+
unfinished work visible and instructs the agent to reconcile, update relevant
|
|
37
|
+
work, skip superseded work, and continue statuses. Completed terminal lists
|
|
38
|
+
move to readable history only for genuinely new work; corrective follow-ups
|
|
39
|
+
reopen the relevant active board.
|
|
31
40
|
- Crew concurrency tests now declare their branches read-only, matching the
|
|
32
41
|
runtime policy that unknown shared-checkout work serializes. The artifact
|
|
33
42
|
HTTP integration test also distinguishes a managed sandbox's blanket socket
|