ur-agent 1.13.4 → 1.13.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 +38 -0
- package/README.md +1 -0
- package/dist/cli.js +2740 -1077
- package/docs/VALIDATION.md +1 -1
- package/documentation/README.md +18 -0
- package/documentation/app.js +625 -0
- package/documentation/assets/ur-architecture.svg +67 -0
- package/documentation/index.html +374 -0
- package/documentation/styles.css +575 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.13.6
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **Professional static documentation site.** Added `documentation/` with a
|
|
7
|
+
full HTML/CSS/JS documentation project covering installation, architecture,
|
|
8
|
+
feature map, tutorials, command reference, slash command families,
|
|
9
|
+
configuration, project files, examples, and troubleshooting.
|
|
10
|
+
- **Packaged documentation asset.** Added `documentation` to the npm package
|
|
11
|
+
files list and linked the static site from the root README.
|
|
12
|
+
|
|
13
|
+
### Verified
|
|
14
|
+
- Rebuilt `dist/cli.js` at 1.13.6 and verified the documentation site scripts,
|
|
15
|
+
release check, package check, secret scan, and npm publish dry-run.
|
|
16
|
+
|
|
17
|
+
## 1.13.5
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- **Headless agent crews.** Added `ur crew` for lead/worker task boards that
|
|
21
|
+
split a goal into subtasks, let worker subagents claim work, and support
|
|
22
|
+
parallel dry-runs or live execution.
|
|
23
|
+
- **Long-horizon goals.** Added `ur goal` for persistent objectives with
|
|
24
|
+
progress notes, workflow or pattern links, and resumable execution.
|
|
25
|
+
- **Model routing.** Added `ur model-route` to recommend the best local Ollama
|
|
26
|
+
model for a task by capability fit.
|
|
27
|
+
- **Trigger bridge.** Added `ur trigger` for parsing GitHub, Slack, and generic
|
|
28
|
+
webhook payloads and optionally launching a headless UR run.
|
|
29
|
+
- **Embeddable SDK surface.** Added `ur sdk` plus `src/sdk` helpers so projects
|
|
30
|
+
can drive UR programmatically and scaffold TypeScript/Python examples.
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
- **Automation and model diagnostics.** Expanded automation scheduling support,
|
|
34
|
+
model-doctor reporting, agent feature scaffolds, and trend coverage for the
|
|
35
|
+
new crew, goal, trigger, model-route, and SDK surfaces.
|
|
36
|
+
|
|
37
|
+
### Verified
|
|
38
|
+
- Rebuilt `dist/cli.js` at 1.13.5 and prepared npm package metadata for
|
|
39
|
+
`ur-agent@1.13.5`.
|
|
40
|
+
|
|
3
41
|
## 1.13.4
|
|
4
42
|
|
|
5
43
|
### Added
|
package/README.md
CHANGED
|
@@ -106,6 +106,7 @@ ur plugin --help
|
|
|
106
106
|
- [Agent Trend Coverage](docs/AGENT_TRENDS.md)
|
|
107
107
|
- [Agent Feature Expansion](docs/AGENT_FEATURES.md)
|
|
108
108
|
- [Development Guide](docs/DEVELOPMENT.md)
|
|
109
|
+
- [Static Documentation Site](documentation/index.html)
|
|
109
110
|
|
|
110
111
|
The `examples/` directory also contains prompt examples for coding, research, browser, image, video, MCP, memory, agent-trend, and agent-feature workflows.
|
|
111
112
|
|