ur-agent 1.47.0 → 1.48.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 +31 -0
- package/README.md +36 -16
- package/dist/cli.js +20418 -11591
- package/docs/AGENT_FEATURES.md +46 -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 +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.48.0
|
|
4
|
+
|
|
5
|
+
- Added managed cloud fan-out with durable, idempotent steering, owner-scoped
|
|
6
|
+
mobile/A2A control, explicit PASS plus safe-branch selection, and
|
|
7
|
+
cancellation-safe task transitions.
|
|
8
|
+
- Added evidence-backed learned playbooks, citation-validated shared memory,
|
|
9
|
+
durable hash-chained side chats, and isolated multi-repository coordination
|
|
10
|
+
with dependency-aware execution and review-only PR/rollback plans.
|
|
11
|
+
- Added hardened Agentic CI, trajectory-aware evaluation gates, Electron
|
|
12
|
+
desktop QA with privacy-safe evidence, and verified deterministic/model/
|
|
13
|
+
hybrid best-of-N arenas whose checks are cryptographically bound to the
|
|
14
|
+
candidate patch.
|
|
15
|
+
- Hardened agent subprocess credentials, artifact storage and delivery,
|
|
16
|
+
concurrent state updates, verifier mutation detection, signed-URL memory
|
|
17
|
+
redaction, terminal cancellation races, and CI-facing failure exit codes.
|
|
18
|
+
- Expanded user, configuration, validation, static-site, and technical
|
|
19
|
+
documentation plus adversarial regression coverage for the new workflows.
|
|
20
|
+
|
|
21
|
+
## 1.47.1
|
|
22
|
+
|
|
23
|
+
- Hardened file downloads, filesystem permission checks, and signed skill
|
|
24
|
+
trees against traversal and chained-symlink escapes.
|
|
25
|
+
- Fixed task-memory integrity validation, prompt-plan file locking and change
|
|
26
|
+
evidence, multi-prompt legacy execution, tool cancellation, and invalid
|
|
27
|
+
concurrency handling.
|
|
28
|
+
- Made OAuth callbacks, remote session WebSockets, relay buffering, provider
|
|
29
|
+
body timeouts, and macOS keychain fallback behavior fail safely and recover
|
|
30
|
+
from transient errors.
|
|
31
|
+
- Updated vulnerable transitive dependencies and added focused regression
|
|
32
|
+
coverage for each corrected path.
|
|
33
|
+
|
|
3
34
|
## 1.47.0
|
|
4
35
|
|
|
5
36
|
- Added a secure, opt-in AG-UI HTTP/SSE adapter with official schema/encoder
|
package/README.md
CHANGED
|
@@ -42,16 +42,16 @@ handing work off to other tools or agents when needed.
|
|
|
42
42
|
`ur auth claude`, `ur auth gemini`, `ur auth antigravity`, and safe
|
|
43
43
|
`ur config set ...` commands to select official subscription, API, or local
|
|
44
44
|
providers without storing secrets in UR settings.
|
|
45
|
-
- **Agent workflows.** Use `ur spec`, `ur arena`, `ur
|
|
46
|
-
`ur
|
|
47
|
-
structured work beyond a single chat turn.
|
|
45
|
+
- **Agent workflows.** Use `ur spec`, `ur arena`, `ur agent-ci`, `ur cloud`,
|
|
46
|
+
`ur workspace`, `ur test-first`, `ur ci-loop`, `ur bg`, `ur workflow`,
|
|
47
|
+
`ur crew`, and `ur automation` for structured work beyond a single chat turn.
|
|
48
48
|
- **Reliable repo editing.** Use `ur repo-edit` for indexed search,
|
|
49
49
|
AST-aware rename plans, patch previews, and rollback-safe multi-file apply.
|
|
50
50
|
- **Permission and context control.** Use `ur safety` and `ur context-pack` to
|
|
51
51
|
inspect command risk, initialize project safety policy, summarize repository
|
|
52
52
|
architecture, and preserve task decisions, constraints, commands, diffs,
|
|
53
53
|
architecture decisions, preferred commands, failed attempts, accepted patterns,
|
|
54
|
-
and
|
|
54
|
+
rejected approaches, and citation freshness.
|
|
55
55
|
- **Lifecycle hooks.** Configure `BeforeEdit`, `AfterEdit`, `BeforeCommand`,
|
|
56
56
|
`AfterCommand`, `BeforeCommit`, and `OnFailure` hooks in `.ur/hooks.json` or
|
|
57
57
|
`UR.md` to run custom commands when the agent edits files, runs shell commands,
|
|
@@ -383,14 +383,19 @@ as first-class subcommands in the shipped CLI.
|
|
|
383
383
|
| `ur -p` | Run a non-interactive prompt with text, JSON, or stream-JSON output. |
|
|
384
384
|
| `ur spec` | Default spec-first workflow: create requirements, design, and task documents under `.ur/specs/`, run the task list, and verify with strict proof gates. |
|
|
385
385
|
| `ur escalate` | Plan or run work with fast and oracle model tiers selected from local model capabilities. |
|
|
386
|
-
| `ur arena` | Run
|
|
386
|
+
| `ur arena` | Run verified best-of-N candidates in isolated worktrees with deterministic, model, or hybrid judging. |
|
|
387
|
+
| `ur agent-ci` | Run a policy-gated agent in an isolated CI worktree and emit bounded, hash-addressed review artifacts. |
|
|
387
388
|
| `ur ci-loop` | Run a build or test command in an explicit working directory, hand failures to a fix agent, and retry with a bounded budget. |
|
|
388
389
|
| `ur test-first` | Detect the project stack, run compile/test/lint commands, store failure traces, and install edit-time verify gates. |
|
|
389
390
|
| `ur safety` | Inspect or initialize project shell safety policy and evaluate command risk before execution. |
|
|
390
391
|
| `ur sandbox` | Inspect and manage the sandbox/permission architecture: status, dependency check, policy init, and command approval levels. |
|
|
391
|
-
| `ur context-pack` | Write project architecture context, tamper-evident task memory,
|
|
392
|
+
| `ur context-pack` | Write project architecture context and citation-validated, tamper-evident task memory; search, revalidate, quarantine, or roll back the chain. |
|
|
392
393
|
| `/hooks` | Inspect lifecycle hooks (`BeforeEdit`, `AfterEdit`, `BeforeCommand`, `AfterCommand`, `BeforeCommit`, `OnFailure`) configured via settings files. |
|
|
393
|
-
| `ur bg` | Run and
|
|
394
|
+
| `ur bg` | Run, inspect, cancel, and idempotently steer detached local background agents with optional worktrees and PR creation. |
|
|
395
|
+
| `ur cloud` | Run verified local best-of-N workers or managed candidates with lifecycle reconciliation, safe-branch eligibility, steering, and cancellation. |
|
|
396
|
+
| `ur workspace` | Coordinate dependency-aware tasks across isolated worktrees in multiple repositories and generate explicit PR/rollback plans. |
|
|
397
|
+
| `ur learn playbooks` | Mine verified outcomes into candidates, explicitly approve them as workflows, and run or disable them. |
|
|
398
|
+
| `/btw` | Create, continue, inspect, rename, or close a private durable tool-free side chat while the main task continues. |
|
|
394
399
|
| `ur worktree` | List, inspect, and clean up UR agent worktrees. |
|
|
395
400
|
| `ur task` | Start, run, and hand off worktree-per-task sessions with optional PR creation. |
|
|
396
401
|
| `ur automation` | Store and run project-local scheduled automation specs under `.ur/automations/`. |
|
|
@@ -406,7 +411,9 @@ as first-class subcommands in the shipped CLI.
|
|
|
406
411
|
| `ur artifacts` | Capture diffs, test runs, notes, and review feedback under `.ur/artifacts/`; `serve` opens a local web page per artifact ID. |
|
|
407
412
|
| `ur claim-ledger` | Map generated claims to file, web, MCP, tool, or user sources. |
|
|
408
413
|
| `ur browser-qa` | Validate and smoke-run browser QA replay fixtures. |
|
|
409
|
-
| `ur
|
|
414
|
+
| `ur desktop-qa` | Validate and run bounded Electron QA fixtures with teardown, masked screenshots, and optional raw video/trace only when selector redaction is disabled. |
|
|
415
|
+
| `ur eval run` | Run isolated eval cases and grade outputs plus redacted tool trajectories; optionally capture cost/tokens/files/test metrics. |
|
|
416
|
+
| `ur eval gate` | Enforce pass-rate, trajectory, test, cost, duration, and baseline-regression thresholds in CI. |
|
|
410
417
|
| `ur eval report` | Show a saved eval report; `--dashboard` writes a single-suite HTML timeline. |
|
|
411
418
|
| `ur eval dashboard` | Generate the local-first HTML dashboard across all saved reports. |
|
|
412
419
|
| `ur eval bench` | Import local SWE-bench, Terminal-Bench, or Aider Polyglot exports. |
|
|
@@ -566,7 +573,11 @@ ur crew create parser-crew --goal "fix the flaky parser test" --decompose --dry-
|
|
|
566
573
|
ur crew plan parser-crew --goal "fix the flaky parser test" --decompose
|
|
567
574
|
ur crew run parser-crew --workers 3 --decompose --dry-run
|
|
568
575
|
ur pattern parallel "refactor login without changing behavior" --execute --dry-run
|
|
569
|
-
ur arena "implement a debounce helper" --agents
|
|
576
|
+
ur arena "implement a debounce helper" --agents 3 --judge hybrid --verify "bun test"
|
|
577
|
+
ur agent-ci init default
|
|
578
|
+
ur agent-ci validate default
|
|
579
|
+
ur cloud run "fix the parser race" --runner managed --attempts 3
|
|
580
|
+
ur cloud steer <task-id> --message "preserve the public API" --request-id review-1
|
|
570
581
|
ur escalate run "refactor the cache layer" --force-oracle --dry-run
|
|
571
582
|
ur test-first detect
|
|
572
583
|
ur test-first --dry-run
|
|
@@ -579,12 +590,18 @@ ur context-pack remember --preference "Use bun test over jest"
|
|
|
579
590
|
ur context-pack remember --accepted "Use p-map for bounded concurrency" --scope project
|
|
580
591
|
ur context-pack remember --rejected "Switch to esbuild" --alternative-to "Keep bun bundle"
|
|
581
592
|
ur context-pack remember --attempt "Tried Deno runtime" --status superseded
|
|
593
|
+
ur context-pack remember --decision "Keep streaming" --cite-file src/parser.ts --lines 20:48
|
|
594
|
+
ur context-pack memory revalidate
|
|
595
|
+
ur context-pack memory search --query "streaming"
|
|
582
596
|
ur context-pack memory verify
|
|
583
597
|
ur context-pack memory quarantine
|
|
584
598
|
ur context-pack memory rollback --to <entry-id>
|
|
585
599
|
ur context-pack compress
|
|
586
600
|
ur ci-loop --command "bun test" --cwd . --max-attempts 3 --dry-run
|
|
587
601
|
ur bg run "fix the flaky parser test" --worktree --dry-run
|
|
602
|
+
ur learn playbooks mine --min-runs 3
|
|
603
|
+
ur workspace init checkout
|
|
604
|
+
ur desktop-qa validate .ur/desktop-qa/fixtures/smoke.json
|
|
588
605
|
ur automation create nightly --schedule "0 9 * * 1-5" --prompt "Review open tasks"
|
|
589
606
|
ur repo-edit preview rename oldName --to newName
|
|
590
607
|
ur repo-edit apply rename oldName --to newName --check "bun test"
|
|
@@ -603,6 +620,7 @@ ur agent-task pr --create --dry-run
|
|
|
603
620
|
ur acp serve --port 8123
|
|
604
621
|
ur exec "add tests for the parser" --concurrency 4 --json
|
|
605
622
|
ur eval run starter --metrics --json
|
|
623
|
+
ur eval gate starter --min-pass-rate 1 --min-trajectory-score 0.9
|
|
606
624
|
ur eval report starter --dashboard
|
|
607
625
|
ur eval dashboard
|
|
608
626
|
```
|
|
@@ -622,12 +640,13 @@ UR reads repository instructions and local runtime state from project files:
|
|
|
622
640
|
- `.ur/project-manifest.json` and `.ur/context/` hold architecture summaries,
|
|
623
641
|
task memory, compressed context, and project memory including architecture
|
|
624
642
|
decisions, preferred commands, failed attempts, accepted patterns, and
|
|
625
|
-
rejected approaches. Task-memory v2 entries include provenance
|
|
626
|
-
integrity chain; corrupt tails can
|
|
627
|
-
verified prefix.
|
|
643
|
+
rejected approaches. Task-memory v2 entries include provenance, source
|
|
644
|
+
citations, freshness validation, and an integrity chain; corrupt tails can
|
|
645
|
+
be quarantined without discarding the verified prefix.
|
|
628
646
|
- `.ur/specs/`, `.ur/artifacts/`, `.ur/automations/`, `.ur/test-first/`,
|
|
629
|
-
`.ur/memory/`,
|
|
630
|
-
|
|
647
|
+
`.ur/memory/`, `.ur/index/`, `.ur/agentic-ci/`, `.ur/workspaces/`, and
|
|
648
|
+
`.ur/desktop-qa/` hold workflow state, review artifacts, scheduled jobs,
|
|
649
|
+
failure traces, memory, indexes, isolated automation state, and QA evidence.
|
|
631
650
|
|
|
632
651
|
Commit only shared project assets that are safe for teammates. Keep local
|
|
633
652
|
settings, generated indexes, memory, logs, and secrets out of Git.
|
|
@@ -719,8 +738,9 @@ the permission boundary matters.
|
|
|
719
738
|
[Provider Guide](docs/providers.md).
|
|
720
739
|
- MCP servers can access external services; only enable servers you trust.
|
|
721
740
|
|
|
722
|
-
See [
|
|
723
|
-
|
|
741
|
+
See [Frontier Agent Workflows](docs/FRONTIER_AGENT_FEATURES.md),
|
|
742
|
+
[Configuration](docs/CONFIGURATION.md), [Validation](docs/VALIDATION.md), and
|
|
743
|
+
[Quality Notes](QUALITY.md) for operational guidance.
|
|
724
744
|
|
|
725
745
|
## Troubleshooting
|
|
726
746
|
|