ur-agent 1.15.0 → 1.16.0

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 CHANGED
@@ -1,5 +1,34 @@
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 persisted to user settings under
9
+ `ollama.host` and used for all subsequent Ollama calls.
10
+ - **`--ollama-host <url>` CLI flag.** Point UR at a specific Ollama server for a
11
+ single session without writing settings.
12
+ - **`ollama` settings block** in `~/.ur/settings.json` with `host` and
13
+ `lanDiscovery` keys.
14
+
15
+ ### Changed
16
+ - **Version bump.** Updated from 1.15.0 to 1.16.0 across `package.json`,
17
+ `bunfig.toml`, the VS Code extension, and bundled CLI.
18
+
19
+ ### Verified
20
+ - Added `test/ollamaDiscovery.test.ts` and updated `test/ollamaModels.test.ts`.
21
+ - Rebuilt `dist/cli.js` and verified typecheck, full test suite, bundle,
22
+ package check, and version output.
23
+
24
+ ## 1.15.0
25
+
26
+ ### Changed
27
+ - **Version bump.** Updated from 1.14.0 to 1.15.0 across `package.json`, `bunfig.toml`, and bundled CLI.
28
+
29
+ ### Verified
30
+ - Rebuilt `dist/cli.js` at 1.15.0 and verified release check, package check, and version output.
31
+
3
32
  ## 1.14.1
4
33
 
5
34
  ### 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 at http://localhost:11434/api
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)