ur-agent 1.15.0 → 1.16.1
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 +3 -1
- package/dist/cli.js +1211 -860
- package/docs/AGENT_FEATURES.md +8 -0
- package/docs/AGENT_UPGRADE_1.16.0.md +102 -0
- package/docs/CODE_FEATURE_INVENTORY.md +1 -1
- package/docs/CONFIGURATION.md +51 -4
- package/docs/USAGE.md +19 -1
- package/docs/VALIDATION.md +21 -2
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.16.0
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **Network Ollama discovery.** `ur --discover-ollama` scans active local subnets
|
|
7
|
+
for Ollama servers on port 11434, verifies each via `/api/tags`, and shows an
|
|
8
|
+
interactive host picker. The chosen host is used for that session only; plain
|
|
9
|
+
`ur` continues to default to `localhost:11434` unless `ollama.host` is set
|
|
10
|
+
explicitly.
|
|
11
|
+
- **`--ollama-host <url>` CLI flag.** Point UR at a specific Ollama server for a
|
|
12
|
+
single session without writing settings.
|
|
13
|
+
- **`ollama` settings block** in `~/.ur/settings.json` with `host` and
|
|
14
|
+
`lanDiscovery` keys.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- **Version bump.** Updated from 1.15.0 to 1.16.0 across `package.json`,
|
|
18
|
+
`bunfig.toml`, the VS Code extension, and bundled CLI.
|
|
19
|
+
|
|
20
|
+
### Verified
|
|
21
|
+
- Added `test/ollamaDiscovery.test.ts` and updated `test/ollamaModels.test.ts`.
|
|
22
|
+
- Rebuilt `dist/cli.js` and verified typecheck, full test suite, bundle,
|
|
23
|
+
package check, and version output.
|
|
24
|
+
|
|
25
|
+
## 1.15.0
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
- **Version bump.** Updated from 1.14.0 to 1.15.0 across `package.json`, `bunfig.toml`, and bundled CLI.
|
|
29
|
+
|
|
30
|
+
### Verified
|
|
31
|
+
- Rebuilt `dist/cli.js` at 1.15.0 and verified release check, package check, and version output.
|
|
32
|
+
|
|
3
33
|
## 1.14.1
|
|
4
34
|
|
|
5
35
|
### Changed
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ The package installs a global `ur` command from npm or this GitHub repository. T
|
|
|
8
8
|
|
|
9
9
|
- Bun. This workspace was verified with Bun 1.3.14.
|
|
10
10
|
- Node.js-compatible shell environment
|
|
11
|
-
- A local Ollama app/server for model requests
|
|
11
|
+
- A local Ollama app/server for model requests (default http://localhost:11434/api; LAN hosts supported via `--discover-ollama` or `--ollama-host`)
|
|
12
12
|
- Optional: GitHub CLI, tmux, and IDE integrations for workflows that use them
|
|
13
13
|
|
|
14
14
|
## Install
|
|
@@ -111,6 +111,7 @@ ur artifacts capture-diff
|
|
|
111
111
|
ur bg run "fix the flaky parser test" --worktree --dry-run
|
|
112
112
|
ur ide diff capture --title "Working tree review"
|
|
113
113
|
ur eval bench list
|
|
114
|
+
ur --discover-ollama
|
|
114
115
|
```
|
|
115
116
|
|
|
116
117
|
## Documentation
|
|
@@ -118,6 +119,7 @@ ur eval bench list
|
|
|
118
119
|
- [Usage Guide](docs/USAGE.md)
|
|
119
120
|
- [Configuration](docs/CONFIGURATION.md)
|
|
120
121
|
- [Agent Trend Coverage](docs/AGENT_TRENDS.md)
|
|
122
|
+
- [1.16.0 Upgrade Notes](docs/AGENT_UPGRADE_1.16.0.md)
|
|
121
123
|
- [Agent Feature Expansion](docs/AGENT_FEATURES.md)
|
|
122
124
|
- [Development Guide](docs/DEVELOPMENT.md)
|
|
123
125
|
- [Static Documentation Site](documentation/index.html)
|