ur-agent 1.78.8 → 1.78.9
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 +43 -0
- package/README.md +2 -0
- package/RELEASE.md +23 -3
- package/dist/cli.js +5617 -5381
- package/docs/USAGE.md +23 -1
- 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 +2 -1
package/docs/USAGE.md
CHANGED
|
@@ -388,6 +388,14 @@ in dependency order. `ur exec` materializes this graph deterministically; the
|
|
|
388
388
|
interactive agent follows the same lifecycle and its task/agent tools enforce
|
|
389
389
|
the concurrency boundary.
|
|
390
390
|
|
|
391
|
+
Every real user work turn is seeded into the live task board immediately. If
|
|
392
|
+
the model creates explicit subtasks, its first `TaskCreate` atomically replaces
|
|
393
|
+
that seed instead of duplicating it. A successful simple turn completes the
|
|
394
|
+
seed automatically. If the user interrupts, the active seed remains pending;
|
|
395
|
+
pending and in-progress tasks stay visible, the new instruction is added to
|
|
396
|
+
the same board, and the agent reconciles the list rather than starting empty.
|
|
397
|
+
Only a list with no unfinished work is archived into readable history.
|
|
398
|
+
|
|
391
399
|
Independent read-only tasks can run in parallel. A task that may write to the
|
|
392
400
|
shared checkout is serialized with other possible writers, even when it comes
|
|
393
401
|
from another top-level prompt or crew worker. Parallel writers require explicit
|
|
@@ -406,7 +414,21 @@ UR leaves the useful summary visible and replaces the noisy middle with a slim
|
|
|
406
414
|
compaction is presentation-only: session history and the model's next-turn
|
|
407
415
|
context retain the original text. Detection is cached per completed message
|
|
408
416
|
and uses one linear pass; it does not make another model/API call or reduce the
|
|
409
|
-
agent's reasoning budget.
|
|
417
|
+
agent's reasoning budget. During generation, UR buffers the undecided trailing
|
|
418
|
+
paragraph instead of briefly painting it and hiding it later. If that paragraph
|
|
419
|
+
is internal planning, the live preview advances to one stable `Reasoning in
|
|
420
|
+
progress` rail; it never exposes the raw self-talk on the normal screen.
|
|
421
|
+
Provider-native thinking follows the same rule and is visible in full only when
|
|
422
|
+
the transcript is explicitly opened or verbose diagnostics are enabled. The
|
|
423
|
+
persistent `Mashoofing` row continues to report live work on the normal screen.
|
|
424
|
+
|
|
425
|
+
When a provider reports that the context limit was reached despite the normal
|
|
426
|
+
proactive threshold, UR withholds that transient error, runs one emergency
|
|
427
|
+
compaction, and retries the interrupted turn automatically. Oversized images or
|
|
428
|
+
documents are replaced with markers only in the emergency summary request so a
|
|
429
|
+
large Computer screenshot cannot block recovery; the original transcript is
|
|
430
|
+
not rewritten. If that single bounded recovery fails—or automatic compaction
|
|
431
|
+
was explicitly disabled—UR shows the manual `/compact` or `/clear` action.
|
|
410
432
|
|
|
411
433
|
## Status bar
|
|
412
434
|
|
package/docs/VALIDATION.md
CHANGED
package/documentation/index.html
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
<main id="content" class="content">
|
|
46
46
|
<header class="topbar">
|
|
47
47
|
<div>
|
|
48
|
-
<p class="eyebrow">Version 1.78.
|
|
48
|
+
<p class="eyebrow">Version 1.78.9</p>
|
|
49
49
|
<h1>UR-Nexus Documentation</h1>
|
|
50
50
|
<p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-Nexus.</p>
|
|
51
51
|
</div>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ur-inline-diffs",
|
|
3
3
|
"displayName": "UR Inline Diffs",
|
|
4
4
|
"description": "Review, apply, and reject UR inline diff bundles from .ur/ide/diffs inside VS Code.",
|
|
5
|
-
"version": "1.78.
|
|
5
|
+
"version": "1.78.9",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ur-agent",
|
|
3
|
-
"version": "1.78.
|
|
3
|
+
"version": "1.78.9",
|
|
4
4
|
"description": "UR-Nexus — autonomous engineering workflow engine (plan, execute, test, verify, document, benchmark, reproduce)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "bun@1.3.14",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"bundle": "node scripts/bundle.mjs",
|
|
50
50
|
"build": "node scripts/bundle.mjs",
|
|
51
51
|
"release:check": "node scripts/release-check.mjs",
|
|
52
|
+
"release:tag": "node scripts/release-tag.mjs",
|
|
52
53
|
"release:create-source-zip": "bun scripts/source-zip-create.mjs",
|
|
53
54
|
"release:check-source-zip": "node scripts/source-zip-check.mjs",
|
|
54
55
|
"typecheck": "bun run tsc --noEmit && bun run typecheck:strict-core",
|