ur-agent 1.13.3 → 1.13.4
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 +32 -0
- package/dist/cli.js +1956 -775
- package/docs/VALIDATION.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.13.4
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **Parallel workflow execution.** The declarative workflow executor now runs
|
|
7
|
+
independent ready steps concurrently. `ur workflow run --concurrency <n>`
|
|
8
|
+
caps fan-out width (`1` forces sequential); approval gates and the
|
|
9
|
+
verification/review loop still run sequentially so existing semantics are
|
|
10
|
+
preserved exactly.
|
|
11
|
+
- **Live multi-agent dashboard.** `ur workflow run --live` streams a real-time
|
|
12
|
+
execution board (per-step state, verdicts, and parallel-wave grouping) driven
|
|
13
|
+
straight from executor events — the live counterpart to the post-hoc
|
|
14
|
+
`ur agent-inspect` timeline.
|
|
15
|
+
- **More orchestration patterns.** Added `concurrent` (parallel fan-out/fan-in),
|
|
16
|
+
`handoff` (triage → specialist), and `debate` (propose → critique → moderate
|
|
17
|
+
loop) alongside PEER and DOE, completing the
|
|
18
|
+
sequential/concurrent/handoff/group-chat/manager-loop taxonomy. Patterns can
|
|
19
|
+
now compile into true DAGs (stage `dependsOn`), and `ur route` recommends the
|
|
20
|
+
new patterns.
|
|
21
|
+
- **Public eval harness.** New `ur eval init|list|validate|run|report` runs
|
|
22
|
+
replayable, gradeable cases (contains / notContains / regex / verdict / length
|
|
23
|
+
checks) grouped by category, with deterministic offline grading and a
|
|
24
|
+
`--dry-run` mode. Seeds a starter suite under `.ur/evals/`.
|
|
25
|
+
- **A2A delegation tokens.** Signed (HMAC-SHA256), attenuated, expiring
|
|
26
|
+
capability tokens scoped to specific skills and bound to one audience.
|
|
27
|
+
`ur a2a token mint|verify`, enforced by the A2A task server (static bearer
|
|
28
|
+
still works), advertised in the Agent Card `securitySchemes`.
|
|
29
|
+
|
|
30
|
+
### Verified
|
|
31
|
+
- Full test suite green (workflow parallelism, patterns, live board, eval
|
|
32
|
+
grading, and delegation each covered); `tsc --noEmit` clean; `dist/cli.js`
|
|
33
|
+
rebuilt and smoke-tested through the CLI.
|
|
34
|
+
|
|
3
35
|
## 1.13.3
|
|
4
36
|
|
|
5
37
|
### Added
|