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.
@@ -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 lead+worker agent crews with optional automatic task decomposition
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
 
@@ -19,7 +19,7 @@ You need:
19
19
 
20
20
  ```sh
21
21
  ur --version
22
- # expected for this release: "1.49.0 (UR-Nexus)"
22
+ # expected for this release: "1.65.6 (UR-Nexus)"
23
23
  ```
24
24
 
25
25
  ## 0.1 First-workspace model selection (1.45.4)
@@ -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.4</p>
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>
@@ -7,7 +7,7 @@ plugins {
7
7
  }
8
8
 
9
9
  group = "dev.urnexus"
10
- version = "1.65.4"
10
+ version = "1.65.6"
11
11
 
12
12
  repositories {
13
13
  mavenCentral()