ur-agent 1.47.1 → 1.49.0
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 +34 -0
- package/README.md +36 -16
- package/dist/cli.js +19573 -11221
- package/docs/AGENT_FEATURES.md +59 -0
- package/docs/AGENT_TRENDS.md +26 -21
- package/docs/CONFIGURATION.md +7 -2
- package/docs/FRONTIER_AGENT_FEATURES.md +210 -0
- package/docs/USAGE.md +44 -9
- package/docs/VALIDATION.md +62 -1
- package/documentation/app.js +100 -29
- package/documentation/index.html +58 -2
- 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/documentation/app.js
CHANGED
|
@@ -14,13 +14,19 @@ const featureGroups = [
|
|
|
14
14
|
{
|
|
15
15
|
title: 'Agent platform',
|
|
16
16
|
tags: ['spec', 'workflow', 'pattern', 'crew', 'goal', 'worktree'],
|
|
17
|
-
text: 'Spec-driven development, durable workflows, collaboration patterns, parallel crews, long-horizon goals, live execution boards, and resumable checkpoint state.',
|
|
18
|
-
commands: ['ur spec', 'ur workflow', 'ur pattern', 'ur crew', 'ur goal', 'ur worktree'],
|
|
17
|
+
text: 'Spec-driven development, durable workflows, collaboration patterns, parallel crews, long-horizon goals, live execution boards, multi-repository coordination, and resumable checkpoint state.',
|
|
18
|
+
commands: ['ur spec', 'ur workflow', 'ur pattern', 'ur crew', 'ur goal', 'ur worktree', 'ur workspace'],
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
title: 'Frontier agent operations',
|
|
22
|
+
tags: ['managed', 'steering', 'playbooks', 'Agentic CI', 'trajectory', 'desktop QA'],
|
|
23
|
+
text: 'Managed PASS-and-safe-branch fan-out, idempotent live steering, approval-gated learned playbooks, citation-validated memory, patch-only Agentic CI, privacy-minimized trajectory gates, redaction-safe Electron QA, durable tool-free side chats, dependency-aware workspace coordination, and verified anonymous model judging.',
|
|
24
|
+
commands: ['ur cloud', 'ur bg steer', 'ur learn playbooks', 'ur context-pack memory', 'ur agent-ci', 'ur eval gate', 'ur desktop-qa', '/btw', 'ur workspace', 'ur arena --judge hybrid'],
|
|
19
25
|
},
|
|
20
26
|
{
|
|
21
27
|
title: 'Judging, escalation, and repair',
|
|
22
28
|
tags: ['oracle', 'arena', 'CI', 'artifacts'],
|
|
23
|
-
text: 'Capability-aware fast/oracle
|
|
29
|
+
text: 'Capability-aware fast/oracle routing, proof-gated best-of-N judging, test-first and self-healing CI loops, patch-only Agentic CI, and reviewable artifacts for diffs, test runs, plans, attachments, and feedback.',
|
|
24
30
|
commands: ['ur escalate', 'ur arena', 'ur test-first', 'ur ci-loop', 'ur artifacts', 'ur bg'],
|
|
25
31
|
},
|
|
26
32
|
{
|
|
@@ -38,14 +44,14 @@ const featureGroups = [
|
|
|
38
44
|
{
|
|
39
45
|
title: 'Knowledge and memory',
|
|
40
46
|
tags: ['retrieval', 'provenance', 'citations'],
|
|
41
|
-
text: 'Durable memory, semantic memory, curated knowledge sources, lexical or embedding retrieval, citations, claim ledgers, and research graph primitives.',
|
|
42
|
-
commands: ['ur knowledge', 'ur semantic-memory', 'ur context-pack remember', 'ur claim-ledger'],
|
|
47
|
+
text: 'Durable memory, semantic memory, curated knowledge sources, lexical or embedding retrieval, digest-validated file/run citations, explicitly unverifiable user/web citations, claim ledgers, and research graph primitives.',
|
|
48
|
+
commands: ['ur knowledge', 'ur semantic-memory', 'ur context-pack remember --cite-file', 'ur context-pack memory revalidate', 'ur claim-ledger'],
|
|
43
49
|
},
|
|
44
50
|
{
|
|
45
51
|
title: 'Evaluation and verification',
|
|
46
|
-
tags: ['evals', 'review', 'QA'],
|
|
47
|
-
text: '
|
|
48
|
-
commands: ['ur eval', 'ur test-first', 'ur agent-task', 'ur browser-qa', 'ur artifacts', '/verify', '/trace'],
|
|
52
|
+
tags: ['evals', 'trajectory', 'review', 'desktop QA'],
|
|
53
|
+
text: 'Isolated replayable evals with fail-closed trajectory gates, self-review and patch-state binding, browser/Electron QA fixtures, verifier reminders, trace inspection, safe attachment delivery, and subagent timelines.',
|
|
54
|
+
commands: ['ur eval gate', 'ur agent-ci', 'ur desktop-qa', 'ur test-first', 'ur agent-task', 'ur browser-qa', 'ur artifacts', '/verify', '/trace'],
|
|
49
55
|
},
|
|
50
56
|
{
|
|
51
57
|
title: 'Interoperability',
|
|
@@ -107,8 +113,8 @@ const commands = [
|
|
|
107
113
|
name: 'bg',
|
|
108
114
|
category: 'Agent Platform',
|
|
109
115
|
aliases: ['background-agent'],
|
|
110
|
-
summary: 'Run and manage detached local background agents with optional worktrees and
|
|
111
|
-
examples: ['ur bg run "fix the flaky parser test" --worktree', 'ur bg
|
|
116
|
+
summary: 'Run and manage detached local background agents with optional worktrees, cancellation, and bounded idempotent live steering.',
|
|
117
|
+
examples: ['ur bg run "fix the flaky parser test" --worktree', 'ur bg steer <id> --message "cover timeouts" --request-id timeout-1', 'ur bg status <id> --json', 'ur bg kill <id>'],
|
|
112
118
|
},
|
|
113
119
|
{
|
|
114
120
|
name: 'worktree',
|
|
@@ -163,8 +169,8 @@ const commands = [
|
|
|
163
169
|
name: 'arena',
|
|
164
170
|
category: 'Agent Platform',
|
|
165
171
|
aliases: ['best-of'],
|
|
166
|
-
summary: 'Run
|
|
167
|
-
examples: ['ur arena "implement a debounce helper" --agents 2 --dry-run', 'ur arena "implement the rate limiter" --agents 3', 'ur arena "fix the parser" --agents 3 --apply'],
|
|
172
|
+
summary: 'Run isolated candidates, admit only PASS + safe + verified bounded patches, and judge them deterministically or through a strict anonymous model/hybrid decision.',
|
|
173
|
+
examples: ['ur arena "implement a debounce helper" --agents 2 --dry-run', 'ur arena "implement the rate limiter" --agents 3 --judge hybrid --verify "bun test"', 'ur arena "fix the parser" --agents 3 --apply'],
|
|
168
174
|
},
|
|
169
175
|
{
|
|
170
176
|
name: 'artifacts',
|
|
@@ -205,8 +211,8 @@ const commands = [
|
|
|
205
211
|
name: 'context-pack',
|
|
206
212
|
category: 'Knowledge',
|
|
207
213
|
aliases: ['project-manifest', 'ctx-pack'],
|
|
208
|
-
summary: 'Summarize repository architecture
|
|
209
|
-
examples: ['ur context-pack scan', 'ur context-pack remember --decision "
|
|
214
|
+
summary: 'Summarize repository architecture and maintain source-labelled task memory with digest-validated file/run citations and explicit user/web provenance.',
|
|
215
|
+
examples: ['ur context-pack scan', 'ur context-pack remember --decision "Keep streaming" --cite-file src/parser.ts --lines 20:48', 'ur context-pack memory revalidate', 'ur context-pack memory search --query "streaming"', 'ur context-pack compress'],
|
|
210
216
|
},
|
|
211
217
|
{
|
|
212
218
|
name: 'config',
|
|
@@ -261,8 +267,8 @@ const commands = [
|
|
|
261
267
|
name: 'eval',
|
|
262
268
|
category: 'Verification',
|
|
263
269
|
aliases: ['evals'],
|
|
264
|
-
summary: '
|
|
265
|
-
examples: ['ur eval init', 'ur eval
|
|
270
|
+
summary: 'Run isolated agent evals, grade privacy-minimized control-flow trajectories, and enforce fail-closed pass, trajectory, test, cost, duration, or regression gates.',
|
|
271
|
+
examples: ['ur eval init', 'ur eval validate starter', 'ur eval run starter --metrics --json', 'ur eval gate starter --min-pass-rate 1 --min-trajectory-score 0.9', 'ur eval report starter --dashboard'],
|
|
266
272
|
},
|
|
267
273
|
{
|
|
268
274
|
name: 'goal',
|
|
@@ -443,8 +449,8 @@ const commands = [
|
|
|
443
449
|
name: 'cloud',
|
|
444
450
|
category: 'Agent Platform',
|
|
445
451
|
aliases: [],
|
|
446
|
-
summary: 'Run
|
|
447
|
-
examples: ['ur cloud run "speed up parser" --attempts 3', 'ur cloud
|
|
452
|
+
summary: 'Run local best-of-N or managed fan-out. Managed selection requires explicit PASS plus a safe review branch, supports cancellation/steering, and never fetches or merges.',
|
|
453
|
+
examples: ['ur cloud run "speed up parser" --runner managed --environment <id> --attempts 3', 'ur cloud sync', 'ur cloud steer <id> --message "preserve the API" --request-id review-1', 'ur cloud cancel <id>'],
|
|
448
454
|
},
|
|
449
455
|
{
|
|
450
456
|
name: 'recipe',
|
|
@@ -497,12 +503,12 @@ const slashGroups = [
|
|
|
497
503
|
{
|
|
498
504
|
title: 'Project intelligence',
|
|
499
505
|
items: ['/dna', '/project', '/context-pack', '/workspace', '/read', '/search', '/index', '/analyze', '/summarize'],
|
|
500
|
-
text: 'Understand
|
|
506
|
+
text: 'Understand one repository or coordinate a dependency-aware, one-writer-per-repository workspace; build indexes and read or summarize project files.',
|
|
501
507
|
},
|
|
502
508
|
{
|
|
503
509
|
title: 'Agents and orchestration',
|
|
504
|
-
items: ['/agents', '/agent-templates', '/spec', '/workflow', '/pattern', '/crew', '/goal', '/arena', '/route', '/role-mode', '/bg'],
|
|
505
|
-
text: 'Manage agents,
|
|
510
|
+
items: ['/agents', '/agent-templates', '/spec', '/workflow', '/pattern', '/crew', '/goal', '/arena', '/route', '/role-mode', '/bg', '/btw'],
|
|
511
|
+
text: 'Manage agents, run specs/workflows and verified arenas, steer background work, and keep durable tool-free side chats alongside the main task.',
|
|
506
512
|
},
|
|
507
513
|
{
|
|
508
514
|
title: 'Agent skills',
|
|
@@ -511,13 +517,13 @@ const slashGroups = [
|
|
|
511
517
|
},
|
|
512
518
|
{
|
|
513
519
|
title: 'Memory and evidence',
|
|
514
|
-
items: ['/memory', '/remember', '/forget', '/knowledge', '/semantic-memory', '/claim-ledger', '/evidence', '/graph'],
|
|
515
|
-
text: 'Persist useful facts,
|
|
520
|
+
items: ['/memory', '/remember', '/forget', '/context-pack', '/knowledge', '/semantic-memory', '/claim-ledger', '/evidence', '/graph'],
|
|
521
|
+
text: 'Persist useful facts, validate cited project memory, search knowledge, and keep claim provenance.',
|
|
516
522
|
},
|
|
517
523
|
{
|
|
518
524
|
title: 'Automation and evals',
|
|
519
|
-
items: ['/automation', '/trigger', '/ci-loop', '/eval', '/browser-qa', '/actions', '/stability'],
|
|
520
|
-
text: 'Run recurring prompts,
|
|
525
|
+
items: ['/automation', '/trigger', '/ci-loop', '/agent-ci', '/eval', '/browser-qa', '/desktop-qa', '/actions', '/stability'],
|
|
526
|
+
text: 'Run recurring prompts, patch-only Agentic CI, self-healing loops, browser/Electron QA, trajectory-gated evals, and stability diagnostics.',
|
|
521
527
|
},
|
|
522
528
|
{
|
|
523
529
|
title: 'Models, tools, and interop',
|
|
@@ -624,8 +630,33 @@ const projectFiles = [
|
|
|
624
630
|
},
|
|
625
631
|
{
|
|
626
632
|
title: '.ur/context/',
|
|
627
|
-
text: 'Architecture summaries, task memory JSONL, and compressed context for decisions, constraints, commands, diffs, and notes.',
|
|
628
|
-
example: 'ur context-pack
|
|
633
|
+
text: 'Architecture summaries, citation-validated task memory JSONL, and compressed context for decisions, constraints, commands, diffs, and notes.',
|
|
634
|
+
example: 'ur context-pack memory revalidate',
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
title: '.ur/cloud/',
|
|
638
|
+
text: 'Private bounded manifests, steering receipts, cursors, and redacted logs for local or managed fan-out.',
|
|
639
|
+
example: 'ur cloud sync',
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
title: '.ur/learning/',
|
|
643
|
+
text: 'Proof-backed playbook candidates plus the private archive created when an unchanged approved workflow is disabled.',
|
|
644
|
+
example: 'ur learn playbooks list',
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
title: '.ur/agentic-ci/',
|
|
648
|
+
text: 'Agentic CI policies, isolated temporary worktree state, and hash-addressed patch-only run manifests.',
|
|
649
|
+
example: 'ur agent-ci validate default',
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
title: '.ur/desktop-qa/',
|
|
653
|
+
text: 'Electron QA fixtures and bounded run evidence; selector-redacted fixtures cannot enable raw trace or video.',
|
|
654
|
+
example: 'ur desktop-qa validate .ur/desktop-qa/fixtures/smoke.json',
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
title: '.ur/workspaces/',
|
|
658
|
+
text: 'Pinned multi-repository specifications and durable dependency-aware run state.',
|
|
659
|
+
example: 'ur workspace validate checkout',
|
|
629
660
|
},
|
|
630
661
|
{
|
|
631
662
|
title: '.ur/repo-edit/',
|
|
@@ -682,8 +713,48 @@ const examples = [
|
|
|
682
713
|
},
|
|
683
714
|
{
|
|
684
715
|
title: 'Best-of-N agent run',
|
|
685
|
-
text: '
|
|
686
|
-
code: 'ur arena "implement a debounce helper" --agents 2 --dry-run\nur arena "fix the parser" --agents 3 --apply',
|
|
716
|
+
text: 'Admit only PASS + safe + verified bounded patches, then use deterministic or strict anonymous model judging.',
|
|
717
|
+
code: 'ur arena "implement a debounce helper" --agents 2 --dry-run\nur arena "fix the parser" --agents 3 --judge hybrid --verify "bun test"\nur arena "fix the parser" --agents 3 --apply',
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
title: 'Managed fan-out and steering',
|
|
721
|
+
text: 'Launch isolated managed candidates, steer active sessions idempotently, and review only explicit PASS candidates with safe branches.',
|
|
722
|
+
code: 'ur cloud environments\nur cloud run "repair the parser" --runner managed --environment <id> --attempts 3\nur cloud steer <task-id> --message "preserve the API" --request-id review-1\nur cloud sync\nur cloud show <task-id>',
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
title: 'Approval-gated learned playbook',
|
|
726
|
+
text: 'Mine verified repetitions, inspect the candidate, explicitly promote it, and archive it safely when disabled.',
|
|
727
|
+
code: 'ur learn playbooks mine --min-runs 3\nur learn playbooks show <id>\nur learn playbooks approve <id> --name parser-repair\nur learn playbooks run <id>\nur learn playbooks disable <id>',
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
title: 'Cited project memory',
|
|
731
|
+
text: 'Bind durable decisions to a file excerpt or run artifact and revalidate before reuse.',
|
|
732
|
+
code: 'ur context-pack remember --decision "Keep streaming" --cite-file src/parser.ts --lines 20:48\nur context-pack memory revalidate\nur context-pack memory search --query "streaming"',
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
title: 'Patch-only Agentic CI',
|
|
736
|
+
text: 'Generate the pinned read-only workflow and emit a post-check, state-bound patch artifact for separate review.',
|
|
737
|
+
code: 'ur agent-ci init default\nur agent-ci validate default\nur agent-ci workflow default --force\nur agent-ci run default --event "$GITHUB_EVENT_PATH" --event-name "$GITHUB_EVENT_NAME" --output-dir "$RUNNER_TEMP/ur-agentic-ci"',
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
title: 'Trajectory-gated eval',
|
|
741
|
+
text: 'Run cases in isolated worktrees and fail CI when outcome or control-flow evidence misses a declared threshold.',
|
|
742
|
+
code: 'ur eval run starter\nur eval gate starter --min-pass-rate 1 --min-trajectory-score 0.9 --min-test-pass-rate 1',
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
title: 'Redaction-safe Electron QA',
|
|
746
|
+
text: 'Validate bounded fixtures before launch. Selector masks require raw video and trace to remain disabled.',
|
|
747
|
+
code: 'ur desktop-qa init\nur desktop-qa validate .ur/desktop-qa/fixtures/smoke.json\nur desktop-qa doctor\nur desktop-qa run .ur/desktop-qa/fixtures/smoke.json',
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
title: 'Durable side chat',
|
|
751
|
+
text: 'Ask a tool-free one-turn question without blocking the main task, then continue or close its private hash-chained history.',
|
|
752
|
+
code: '/btw Why does this parser use a sentinel?\n/btw continue <chat-id> What invariant does it protect?\n/btw show <chat-id>\n/btw close <chat-id>',
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
title: 'Dependency-aware repository workspace',
|
|
756
|
+
text: 'Pin repository identities, serialize each repository writer, verify every branch, and print non-executing handoff plans.',
|
|
757
|
+
code: 'ur workspace init checkout\nur workspace add checkout api ../api --base main --verify "bun test"\nur workspace task checkout api-contract --repo api --prompt "add the response field"\nur workspace validate checkout\nur workspace run checkout --max-concurrency 4\nur workspace verify checkout\nur workspace pr-plan checkout',
|
|
687
758
|
},
|
|
688
759
|
{
|
|
689
760
|
title: 'Reliable repo rename',
|
package/documentation/index.html
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
<a href="#architecture">Architecture</a>
|
|
32
32
|
<a href="#mental-model">Mental Model</a>
|
|
33
33
|
<a href="#features">Feature Map</a>
|
|
34
|
+
<a href="#frontier">Frontier Agent Workflows</a>
|
|
34
35
|
<a href="#tutorials">Tutorials</a>
|
|
35
36
|
<a href="#commands">Command Reference</a>
|
|
36
37
|
<a href="#slash">Slash Commands</a>
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
<main id="content" class="content">
|
|
45
46
|
<header class="topbar">
|
|
46
47
|
<div>
|
|
47
|
-
<p class="eyebrow">Version 1.
|
|
48
|
+
<p class="eyebrow">Version 1.49.0</p>
|
|
48
49
|
<h1>UR-Nexus Documentation</h1>
|
|
49
50
|
<p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-Nexus.</p>
|
|
50
51
|
</div>
|
|
@@ -165,7 +166,7 @@ ur config set responses.store false</code></pre>
|
|
|
165
166
|
</article>
|
|
166
167
|
<article>
|
|
167
168
|
<h3>Status bar and updates</h3>
|
|
168
|
-
<pre><code>Ollama | llama3 | ask | main | update 1.
|
|
169
|
+
<pre><code>Ollama | llama3 | ask | main | update 1.48.0 available</code></pre>
|
|
169
170
|
<p>The interactive status bar shows only important runtime state: provider, model, mode, branch, active tasks, checks status when known, and update availability. It is hidden in CI, dumb terminals, and print mode.</p>
|
|
170
171
|
</article>
|
|
171
172
|
<article>
|
|
@@ -229,6 +230,61 @@ ur config set responses.store false</code></pre>
|
|
|
229
230
|
<div id="featureGrid" class="feature-grid"></div>
|
|
230
231
|
</section>
|
|
231
232
|
|
|
233
|
+
<section id="frontier" class="section">
|
|
234
|
+
<div class="section-heading">
|
|
235
|
+
<p class="eyebrow">Production Agent Operations</p>
|
|
236
|
+
<h2>Ten frontier workflows with explicit trust boundaries</h2>
|
|
237
|
+
<p>These surfaces keep untrusted task text separate from policy, make publication explicit, and fail closed when evidence is incomplete or changes during verification.</p>
|
|
238
|
+
</div>
|
|
239
|
+
<div class="concept-grid">
|
|
240
|
+
<article>
|
|
241
|
+
<h3>1. Managed cloud fan-out</h3>
|
|
242
|
+
<p><code>ur cloud run --runner managed</code> starts isolated candidates. Selection requires a completed session, explicit <code>PASS</code>, and a safe non-empty review branch; ordering is deterministic, not comparative judging. UR never fetches or merges that branch. Cancellation also closes sessions that finish starting concurrently.</p>
|
|
243
|
+
</article>
|
|
244
|
+
<article>
|
|
245
|
+
<h3>2. Idempotent live steering</h3>
|
|
246
|
+
<p><code>ur cloud steer</code> and <code>ur bg steer</code> accept bounded messages only for active work. Request IDs are reserved before delivery, digest-bound, and deduplicated across concurrent retries. A2A steering additionally enforces authenticated task ownership.</p>
|
|
247
|
+
</article>
|
|
248
|
+
<article>
|
|
249
|
+
<h3>3. Learned playbooks</h3>
|
|
250
|
+
<p><code>ur learn playbooks</code> mines repeated proof-backed safe runs into candidates. Execution requires explicit approval. Rejection is terminal; disable verifies the promoted workflow and moves it into a private disabled archive so it can no longer run.</p>
|
|
251
|
+
</article>
|
|
252
|
+
<article>
|
|
253
|
+
<h3>4. Cited task memory</h3>
|
|
254
|
+
<p><code>ur context-pack remember</code> can cite bounded project-file excerpts and run artifacts by SHA-256. Stale, missing, rejected, and superseded entries are excluded by default. User and web sources stay explicitly unverifiable until reopened; memory search performs no network request.</p>
|
|
255
|
+
</article>
|
|
256
|
+
<article>
|
|
257
|
+
<h3>5. Patch-only Agentic CI</h3>
|
|
258
|
+
<p><code>ur agent-ci</code> runs from a trusted base in a detached worktree with read-only GitHub permissions and isolated check credentials. Exact NUL-delimited path metadata enforces rename-source, deletion, allow, and deny policy. Pre/post check state digests bind verification to the post-check patch; any staged, unstaged, untracked, or index-visibility mutation suppresses output.</p>
|
|
259
|
+
</article>
|
|
260
|
+
<article>
|
|
261
|
+
<h3>6. Trajectory-aware eval gates</h3>
|
|
262
|
+
<p><code>ur eval gate</code> can require pass, trajectory, test, cost, duration, and baseline-regression thresholds. Captures retain control-flow metadata only—never prompts, paths, tool inputs, tool outputs, or assistant text—and a requested missing metric fails closed.</p>
|
|
263
|
+
</article>
|
|
264
|
+
<article>
|
|
265
|
+
<h3>7. Electron desktop QA</h3>
|
|
266
|
+
<p><code>ur desktop-qa</code> runs bounded fixtures with guaranteed teardown and masked screenshots. Raw video or trace is refused whenever selector redaction is configured. Evidence is copied into bounded non-symlink attachments; downloads use private/no-store headers, sandbox CSP, a safe inline allow-list, and octet-stream fallback.</p>
|
|
267
|
+
</article>
|
|
268
|
+
<article>
|
|
269
|
+
<h3>8. Durable side chats</h3>
|
|
270
|
+
<p><code>/btw</code> creates a private hash-chained side conversation that survives restarts while the main task continues. Every request is a cancellable one-turn, tool-free fork; chat count, turns, content, and storage are bounded, and closed chats reject continuation.</p>
|
|
271
|
+
</article>
|
|
272
|
+
<article>
|
|
273
|
+
<h3>9. Multi-repository coordination</h3>
|
|
274
|
+
<p><code>ur workspace</code> pins canonical repository/remote identities and executes a dependency DAG in isolated worktrees. Independent repositories may run concurrently, but each repository has one serialized writer. Changed specifications cannot resume, and PR/rollback commands print plans only.</p>
|
|
275
|
+
</article>
|
|
276
|
+
<article>
|
|
277
|
+
<h3>10. Verified model arena</h3>
|
|
278
|
+
<p><code>ur arena --judge model|hybrid</code> exposes only bounded, redacted, anonymous eligible candidates to a one-turn tool-free judge. Candidates need <code>PASS</code>, a non-empty safe patch, and successful checks. Oversized full diffs are excluded rather than truncated into eligibility; malformed decisions yield no winner.</p>
|
|
279
|
+
</article>
|
|
280
|
+
</div>
|
|
281
|
+
<pre><code>ur cloud run "repair the parser" --runner managed --environment <id> --attempts 3
|
|
282
|
+
ur agent-ci validate default
|
|
283
|
+
ur eval gate starter --min-pass-rate 1 --min-trajectory-score 0.9
|
|
284
|
+
ur desktop-qa validate .ur/desktop-qa/fixtures/smoke.json
|
|
285
|
+
ur arena "repair the cache race" --agents 3 --judge hybrid --verify "bun test"</code></pre>
|
|
286
|
+
</section>
|
|
287
|
+
|
|
232
288
|
<section id="tutorials" class="section">
|
|
233
289
|
<div class="section-heading">
|
|
234
290
|
<p class="eyebrow">Tutorials</p>
|
|
@@ -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.
|
|
5
|
+
"version": "1.49.0",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED