ur-agent 1.13.4 → 1.13.5
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 +24 -0
- package/dist/cli.js +2740 -1077
- package/docs/VALIDATION.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.13.5
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **Headless agent crews.** Added `ur crew` for lead/worker task boards that
|
|
7
|
+
split a goal into subtasks, let worker subagents claim work, and support
|
|
8
|
+
parallel dry-runs or live execution.
|
|
9
|
+
- **Long-horizon goals.** Added `ur goal` for persistent objectives with
|
|
10
|
+
progress notes, workflow or pattern links, and resumable execution.
|
|
11
|
+
- **Model routing.** Added `ur model-route` to recommend the best local Ollama
|
|
12
|
+
model for a task by capability fit.
|
|
13
|
+
- **Trigger bridge.** Added `ur trigger` for parsing GitHub, Slack, and generic
|
|
14
|
+
webhook payloads and optionally launching a headless UR run.
|
|
15
|
+
- **Embeddable SDK surface.** Added `ur sdk` plus `src/sdk` helpers so projects
|
|
16
|
+
can drive UR programmatically and scaffold TypeScript/Python examples.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- **Automation and model diagnostics.** Expanded automation scheduling support,
|
|
20
|
+
model-doctor reporting, agent feature scaffolds, and trend coverage for the
|
|
21
|
+
new crew, goal, trigger, model-route, and SDK surfaces.
|
|
22
|
+
|
|
23
|
+
### Verified
|
|
24
|
+
- Rebuilt `dist/cli.js` at 1.13.5 and prepared npm package metadata for
|
|
25
|
+
`ur-agent@1.13.5`.
|
|
26
|
+
|
|
3
27
|
## 1.13.4
|
|
4
28
|
|
|
5
29
|
### Added
|