ur-agent 1.45.3 → 1.45.5

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,32 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.45.5
4
+
5
+ - Bounded Ollama Cloud response-header and streaming phases to 120 seconds by
6
+ default while preserving the five-minute allowance for local Ollama models.
7
+ `API_TIMEOUT_MS` and per-request timeouts still take precedence.
8
+ - Stopped deliberate Ollama Cloud stream deadlines from triggering the shared
9
+ non-streaming fallback and retry chain. Other providers and local Ollama
10
+ retain their existing fallback and retry behavior.
11
+ - Extended the deterministic verifier to reject turns that end by promising an
12
+ immediate file change or command but emit no successful matching tool call.
13
+ Conditional plans and instructional prose remain unaffected.
14
+ - Added focused timeout, retry-containment, intent-detection, and verifier
15
+ integration coverage; synchronized npm, IDE extension, static-site, user,
16
+ validation, and technical release metadata.
17
+
18
+ ## 1.45.4
19
+
20
+ - Added mandatory provider-first model selection for the first interactive run
21
+ in every workspace that has no project-local model. The validated provider
22
+ and model pair is saved to `.ur/settings.local.json` before the REPL starts.
23
+ - Prevented user-global and built-in defaults from silently choosing a model
24
+ for a fresh folder. Explicit CLI/environment, shared project, flag, managed,
25
+ agent, and restored-session model choices continue without interruption.
26
+ - Made fresh headless workspaces fail before model execution with actionable
27
+ guidance to run the picker or pass `--model <model>`; initialization-only and
28
+ resume flows remain non-blocking. AutoApprove behavior is unchanged.
29
+
3
30
  ## 1.45.3
4
31
 
5
32
  - Made slash-command resolution deterministic across bundled skills, plugins,
@@ -15,6 +42,10 @@
15
42
  guidance instead of invoking a fix agent repeatedly.
16
43
  - Serialized concurrent artifact-viewer startup so simultaneous callers share
17
44
  one server and one reported URL.
45
+ - Synchronized the user guides, static documentation site, and technical
46
+ specifications with the final command counts, source-priority rules,
47
+ `/skill` versus `/skills`, merged `/sandbox`, CI cwd behavior, and explicit
48
+ worktree publishing contract.
18
49
 
19
50
  ## 1.45.2
20
51
 
package/README.md CHANGED
@@ -214,16 +214,19 @@ Development build detected. To update, pull latest source or install from npm.
214
214
  Choose a model or Ollama host:
215
215
 
216
216
  ```sh
217
+ ur # first run opens provider/model selection
217
218
  ur --model qwen2.5-coder:7b
218
219
  ur --ollama-host http://192.168.1.50:11434
219
220
  ur --discover-ollama
220
221
  ```
221
222
 
222
- For Ollama sessions, model selection precedence is `OLLAMA_MODEL`, then
223
- `UR_MODEL`, then the model router over the configured Ollama host. Once a
224
- provider/model pair is selected with `/model` or `ur config set`, runtime
225
- requests use that provider backend; they do not fall back to Ollama unless
226
- `ollama` is the selected provider.
223
+ A fresh workspace never silently inherits a user-global or built-in model.
224
+ Interactive `ur` requires a provider/model choice and stores it in the
225
+ gitignored `.ur/settings.local.json`. Fresh print-mode runs require an explicit
226
+ `--model`, `OLLAMA_MODEL`, `UR_MODEL`, workspace setting, or managed setting.
227
+ For Ollama sessions, explicit environment precedence is `OLLAMA_MODEL`, then
228
+ `UR_MODEL`. Once selected, runtime requests use that provider backend; they do
229
+ not fall back to Ollama unless `ollama` is the selected provider.
227
230
 
228
231
  ### Legal Provider Auth
229
232
 
@@ -633,8 +636,9 @@ the permission boundary matters.
633
636
  otherwise pause for permission approval, while user-input dialogs still ask.
634
637
  - `--dangerously-skip-permissions` should only be used inside disposable
635
638
  sandboxes.
636
- - The verifier checks for false completion claims, repeated tool-call loops,
637
- empty assistant turns, and project gates.
639
+ - The verifier checks for false completion claims, immediate-action promises
640
+ that end without the matching tool call, repeated tool-call loops, empty
641
+ assistant turns, and project gates.
638
642
  - Project gates can be configured in `.ur/verify.json`.
639
643
  - `ur test-first install` writes detected compile/test/lint commands into
640
644
  `.ur/verify.json` so mutating turns have command evidence before completion.