ur-agent 1.65.4 → 1.65.6
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 +116 -30
- package/README.md +2 -1
- package/RELEASE.md +13 -2
- package/bin/ur.js +77 -5
- package/dist/cli.js +48594 -5460
- package/docs/AGENT_FEATURES.md +1 -0
- package/docs/USAGE.md +3 -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/out/extension.js +358 -105
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +2 -1
package/docs/AGENT_FEATURES.md
CHANGED
|
@@ -275,6 +275,7 @@ automatically changes the active provider.
|
|
|
275
275
|
| Spec verification / verifier kernel role | `ur spec verify <name>`, `src/services/agents/specVerifier.ts` | Deterministic project gates first, then a read-only deep verification subagent that must prove compile/test/lint/diff/runtime before PASS. Writes `.ur/specs/<name>/verification.md` and a `verification` record in `spec.json`. First concrete kernel role: verifier is stricter than the generator. |
|
|
276
276
|
| AgentKernel abstraction | `ur spec run|verify <name> --kernel`, `src/services/agents/kernel.ts` | Pure orchestrator separating planner, executor, verifier, critic, memory, router, and guard. Routes spec run/verify through kernel stages while keeping the legacy loop as default. Foundation for applying the same orchestration to workflows, crew, and CI loop. |
|
|
277
277
|
| Rich task decomposition | `ur crew create|run|plan ... --decompose`, `src/services/agents/decomposer.ts` | Splits large goals into atomic subtasks with goal, files touched, risk level (low/medium/high), tests required, and rollback point. Deterministic fallback + optional LLM-driven JSON decomposition. |
|
|
278
|
+
| Dependency-aware crew recovery | `ur crew run ... --workers N --worktrees --max-attempts N` | Runs independent tasks concurrently, blocks failed or cyclic dependency chains, and retries crashed workers only within finite limits and fresh isolated worktrees. |
|
|
278
279
|
| Parallel specialized subagents | `ur pattern parallel "<task>" --execute`, `src/services/agents/patterns.ts` | Bug finder, patch writer, test writer, security auditor, and style reviewer run in parallel via the workflow executor, then a synthesizer merges results into one plan. |
|
|
279
280
|
|
|
280
281
|
The spec-first path is the default reliability story: `ur spec init` turns a
|
package/docs/USAGE.md
CHANGED
|
@@ -320,7 +320,8 @@ UR includes slash commands and CLI subcommands for common workflows:
|
|
|
320
320
|
- `ur eval report ...` to show a saved report or write a single-suite dashboard
|
|
321
321
|
- `ur eval dashboard` to generate the local HTML dashboard across all reports
|
|
322
322
|
- `ur eval bench ...` to import local SWE-bench, Terminal-Bench, or Aider Polyglot exports
|
|
323
|
-
- `ur crew ...` to run
|
|
323
|
+
- `ur crew ...` to run dependency-aware agent crews with parallel independent
|
|
324
|
+
tasks and bounded, isolated worker recovery
|
|
324
325
|
- `ur pattern ...` to run multi-agent collaboration patterns (PEER, DOE, concurrent, handoff, debate, parallel)
|
|
325
326
|
- `ur workflow ...` to define, validate, graph, run, and resume declarative agent workflows
|
|
326
327
|
- `ur goal ...` to track long-horizon objectives that persist across sessions
|
|
@@ -461,6 +462,7 @@ ur eval report starter --dashboard
|
|
|
461
462
|
ur eval dashboard
|
|
462
463
|
ur crew create parser-crew --goal "fix the flaky parser test" --decompose --dry-run
|
|
463
464
|
ur crew run parser-crew --workers 3 --decompose --dry-run
|
|
465
|
+
ur crew run parser-crew --workers 3 --worktrees --max-attempts 2
|
|
464
466
|
ur pattern parallel "refactor login without changing behavior" --execute --dry-run
|
|
465
467
|
```
|
|
466
468
|
|
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.65.
|
|
48
|
+
<p class="eyebrow">Version 1.65.6</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>
|