ur-agent 1.81.1 → 1.81.2

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.
@@ -19,7 +19,7 @@ You need:
19
19
 
20
20
  ```sh
21
21
  ur --version
22
- # expected for this release: "1.81.1 (UR-Nexus)"
22
+ # expected for this release: "1.81.2 (UR-Nexus)"
23
23
  ```
24
24
 
25
25
  ### 0.0 Redteam mode and Reverse Skills (1.81.0)
package/docs/providers.md CHANGED
@@ -146,6 +146,23 @@ OpenAI-compatible, OpenRouter, local, or subscription-CLI providers.
146
146
 
147
147
  UR-Nexus shows providers first, then only models available for the selected provider. This prevents incompatible model/provider pairs and keeps API-key, local/server, subscription, and external app bridge model lists separate. The generic `subscription` entry has no models unless a real independent subscription runtime is configured; UR does not list fake subscription models.
148
148
 
149
+ The interactive selection is also the authority for the current session: the
150
+ next main, compact, or web-search request uses the provider/model pair captured
151
+ in live app state while the same validated pair is persisted once to local
152
+ settings. A stale settings snapshot cannot combine a newly selected model with
153
+ the previous provider.
154
+
155
+ ### Reasoning effort
156
+
157
+ Use `/effort low|medium|high|max|auto` inside UR. `max` is provider-neutral and
158
+ means the selected model's highest reasoning capability. For OpenRouter, UR
159
+ preserves the live `/models` reasoning metadata and sends the unified
160
+ `reasoning.effort` request, translating `max` to the model's advertised wire
161
+ value such as `xhigh` or `high`. The command confirmation, status indicator,
162
+ and active-work spinner all show the same applied UR effort level. Providers
163
+ that cannot apply a requested level report the actual downgraded level instead
164
+ of confirming a value they did not use.
165
+
149
166
  ## Runtime provider routing
150
167
 
151
168
  When you select a UR-native provider and model, every agent request is routed
@@ -45,7 +45,7 @@
45
45
  <main id="content" class="content">
46
46
  <header class="topbar">
47
47
  <div>
48
- <p class="eyebrow">Version 1.81.1</p>
48
+ <p class="eyebrow">Version 1.81.2</p>
49
49
  <h1>UR-Nexus Documentation</h1>
50
50
  <p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-Nexus.</p>
51
51
  </div>
@@ -7,7 +7,7 @@ plugins {
7
7
  }
8
8
 
9
9
  group = "dev.urnexus"
10
- version = "1.81.1"
10
+ version = "1.81.2"
11
11
 
12
12
  repositories {
13
13
  mavenCentral()
@@ -2,7 +2,7 @@
2
2
  "name": "ur-inline-diffs",
3
3
  "displayName": "UR Inline Diffs",
4
4
  "description": "Review, apply, and reject UR inline diff bundles from .ur/ide/diffs inside VS Code.",
5
- "version": "1.81.1",
5
+ "version": "1.81.2",
6
6
  "publisher": "ur-nexus",
7
7
  "engines": {
8
8
  "vscode": "^1.92.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ur-agent",
3
- "version": "1.81.1",
3
+ "version": "1.81.2",
4
4
  "description": "UR-Nexus — autonomous engineering workflow engine (plan, execute, test, verify, document, benchmark, reproduce)",
5
5
  "type": "module",
6
6
  "packageManager": "bun@1.3.14",