ur-agent 1.13.5 → 1.13.7
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 +30 -0
- package/README.md +1 -0
- package/dist/cli.js +105 -79
- package/docs/USAGE.md +3 -0
- 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,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.13.7
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **Explicit update notice.** Interactive sessions now show
|
|
7
|
+
`Update available: <current> -> <latest>` when a newer published package is
|
|
8
|
+
detected, before auto-update starts or when manual action is needed.
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Normalized `ur update` output across npm, Homebrew, winget, and apk paths so
|
|
12
|
+
all update notices use the same current-to-latest version wording.
|
|
13
|
+
|
|
14
|
+
### Verified
|
|
15
|
+
- Rebuilt `dist/cli.js` at 1.13.7 and verified the update notice helper tests,
|
|
16
|
+
typecheck, full test suite, release check, package check, secret scan, and npm
|
|
17
|
+
publish dry-run.
|
|
18
|
+
|
|
19
|
+
## 1.13.6
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- **Professional static documentation site.** Added `documentation/` with a
|
|
23
|
+
full HTML/CSS/JS documentation project covering installation, architecture,
|
|
24
|
+
feature map, tutorials, command reference, slash command families,
|
|
25
|
+
configuration, project files, examples, and troubleshooting.
|
|
26
|
+
- **Packaged documentation asset.** Added `documentation` to the npm package
|
|
27
|
+
files list and linked the static site from the root README.
|
|
28
|
+
|
|
29
|
+
### Verified
|
|
30
|
+
- Rebuilt `dist/cli.js` at 1.13.6 and verified the documentation site scripts,
|
|
31
|
+
release check, package check, secret scan, and npm publish dry-run.
|
|
32
|
+
|
|
3
33
|
## 1.13.5
|
|
4
34
|
|
|
5
35
|
### 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
|
|