ur-agent 1.81.2 → 1.81.4
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 +25 -0
- package/README.md +6 -0
- package/dist/cli.js +357 -182
- package/docs/CONFIGURATION.md +6 -0
- package/docs/VALIDATION.md +23 -1
- package/docs/providers.md +21 -1
- package/documentation/index.html +1 -1
- package/extensions/jetbrains-ur/build.gradle.kts +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +1 -1
package/docs/CONFIGURATION.md
CHANGED
|
@@ -143,6 +143,12 @@ incompatible saved model instead of silently carrying it across providers. The
|
|
|
143
143
|
saved provider/model pair controls the runtime backend for the next agent
|
|
144
144
|
request; Ollama is only used when `ollama` is the selected provider.
|
|
145
145
|
|
|
146
|
+
In the model step, Up/Down browses, Left/Right changes the focused model's
|
|
147
|
+
supported effort level, Enter confirms, Ctrl+R refreshes the catalog, and Esc
|
|
148
|
+
returns to providers. OpenRouter entries show pricing tier, context size,
|
|
149
|
+
tool/reasoning capability, and live/cache catalog status. API-provider secret
|
|
150
|
+
entry stays on one masked row and stores the value through the keychain flow.
|
|
151
|
+
|
|
146
152
|
The same provider-first picker is mandatory on the first interactive run in a
|
|
147
153
|
workspace with no model in `.ur/settings.json` or `.ur/settings.local.json`.
|
|
148
154
|
The result is validated and written to the gitignored local settings file.
|
package/docs/VALIDATION.md
CHANGED
|
@@ -19,7 +19,7 @@ You need:
|
|
|
19
19
|
|
|
20
20
|
```sh
|
|
21
21
|
ur --version
|
|
22
|
-
# expected for this release: "1.81.
|
|
22
|
+
# expected for this release: "1.81.4 (UR-Nexus)"
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
### 0.0 Redteam mode and Reverse Skills (1.81.0)
|
|
@@ -72,6 +72,28 @@ changes must remain blocked. The deterministic regressions are:
|
|
|
72
72
|
bun test test/taskListGate.test.ts test/toolExecutionFinalInput.test.ts
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
+
### 0.0.0 OpenRouter research routing and provider UI (1.81.3)
|
|
76
|
+
|
|
77
|
+
Connect OpenRouter, run `/model`, select OpenRouter, and verify that its model
|
|
78
|
+
step shows catalog freshness plus pricing/context/tool/reasoning details. Focus
|
|
79
|
+
a reasoning model and press Left/Right; the displayed effort must change and
|
|
80
|
+
the confirmed value must match the status line. Open the OpenAI API or Claude
|
|
81
|
+
API connection flow and verify the masked `API key` label and entry remain on
|
|
82
|
+
one horizontal row.
|
|
83
|
+
|
|
84
|
+
Then ask UR to research a current topic with WebSearch and WebFetch. Expected:
|
|
85
|
+
the auxiliary request stays on the active OpenRouter model, no `modelH` error
|
|
86
|
+
appears, a real provider search count is shown, and a response that did not
|
|
87
|
+
perform a search fails clearly instead of saying `Did 0 searches`.
|
|
88
|
+
|
|
89
|
+
Deterministic coverage:
|
|
90
|
+
|
|
91
|
+
```sh
|
|
92
|
+
bun test test/providerPickerPresentation.test.ts \
|
|
93
|
+
test/secondaryModelFallback.test.ts test/providerToolCalls.test.ts \
|
|
94
|
+
test/usageAccounting.test.ts test/providerRouting.test.ts
|
|
95
|
+
```
|
|
96
|
+
|
|
75
97
|
### 0.0.1 Unavailable Ollama tools recover (1.80.7)
|
|
76
98
|
|
|
77
99
|
With an Ollama model, ask for research that mentions WebSearch. If WebSearch is
|
package/docs/providers.md
CHANGED
|
@@ -163,6 +163,24 @@ and active-work spinner all show the same applied UR effort level. Providers
|
|
|
163
163
|
that cannot apply a requested level report the actual downgraded level instead
|
|
164
164
|
of confirming a value they did not use.
|
|
165
165
|
|
|
166
|
+
The provider-first `/model` picker supports the same control directly: use
|
|
167
|
+
Left/Right to move through the effort levels advertised by the focused model,
|
|
168
|
+
then Enter to apply the model and effort together. OpenRouter's live catalog
|
|
169
|
+
shows pricing tier, context size, tool capability, reasoning capability, and
|
|
170
|
+
whether the list came from the live endpoint or cache. API-key entry for
|
|
171
|
+
OpenAI, Claude, Gemini, and OpenRouter is a single aligned masked row; the key
|
|
172
|
+
is stored in the OS keychain flow and is never written to settings.
|
|
173
|
+
|
|
174
|
+
### Provider-aware research calls
|
|
175
|
+
|
|
176
|
+
WebFetch summarization and WebSearch use the active session provider/model pair
|
|
177
|
+
unless `URHQ_SMALL_FAST_MODEL` explicitly selects a secondary model. This
|
|
178
|
+
prevents an OpenRouter session from dispatching auxiliary research through an
|
|
179
|
+
unavailable internal alias or a stale Ollama model. On OpenRouter, WebSearch is
|
|
180
|
+
sent as the native `openrouter:web_search` server tool and the provider's
|
|
181
|
+
reported search count is preserved. A response that performs no search is an
|
|
182
|
+
error, not a successful `Did 0 searches` result.
|
|
183
|
+
|
|
166
184
|
## Runtime provider routing
|
|
167
185
|
|
|
168
186
|
When you select a UR-native provider and model, every agent request is routed
|
|
@@ -210,8 +228,10 @@ You see all configured providers with:
|
|
|
210
228
|
|
|
211
229
|
After selecting a provider:
|
|
212
230
|
- Only models from that provider are shown
|
|
213
|
-
- Each model shows its
|
|
231
|
+
- Each model shows its concise capabilities; OpenRouter includes pricing,
|
|
232
|
+
context size, tool support, and reasoning support
|
|
214
233
|
- Model source is displayed: `live` (dynamic discovery), `cache` (fallback), or `static` (predefined)
|
|
234
|
+
- Left/Right changes effort for the focused model; Up/Down browses and Enter confirms
|
|
215
235
|
- Press Esc to go back and change provider
|
|
216
236
|
|
|
217
237
|
**Confirmation**
|
package/documentation/index.html
CHANGED
|
@@ -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.
|
|
48
|
+
<p class="eyebrow">Version 1.81.4</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>
|
|
@@ -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.
|
|
5
|
+
"version": "1.81.4",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED