ur-agent 1.14.1 → 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
@@ -108,6 +108,10 @@ ur arena "implement a debounce helper" --agents 2 --dry-run
108
108
  ur escalate run "refactor the cache layer" --force-oracle --dry-run
109
109
  ur ci-loop --command "bun test" --dry-run
110
110
  ur artifacts capture-diff
111
+ ur bg run "fix the flaky parser test" --worktree --dry-run
112
+ ur ide diff capture --title "Working tree review"
113
+ ur eval bench list
114
+ ur --discover-ollama
111
115
  ```
112
116
 
113
117
  ## Documentation
@@ -115,6 +119,7 @@ ur artifacts capture-diff
115
119
  - [Usage Guide](docs/USAGE.md)
116
120
  - [Configuration](docs/CONFIGURATION.md)
117
121
  - [Agent Trend Coverage](docs/AGENT_TRENDS.md)
122
+ - [1.16.0 Upgrade Notes](docs/AGENT_UPGRADE_1.16.0.md)
118
123
  - [Agent Feature Expansion](docs/AGENT_FEATURES.md)
119
124
  - [Development Guide](docs/DEVELOPMENT.md)
120
125
  - [Static Documentation Site](documentation/index.html)
package/bin/ur.js CHANGED
@@ -221,14 +221,6 @@ function runA2AServer() {
221
221
  })
222
222
  }
223
223
 
224
- if (
225
- userArgs[0] === 'a2a' &&
226
- userArgs[1] === 'serve' &&
227
- !userArgs.includes('--help') &&
228
- !userArgs.includes('-h')
229
- ) {
230
- runA2AServer()
231
- } else {
232
224
  const args =
233
225
  existsSync(bundledEntrypoint)
234
226
  ? [bundledEntrypoint, ...userArgs]
@@ -283,4 +275,3 @@ child.on('exit', (code, signal) => {
283
275
 
284
276
  process.exit(code ?? 1)
285
277
  })
286
- }