ur-agent 1.81.1 → 1.81.3
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 +34 -0
- package/README.md +6 -0
- package/dist/cli.js +902 -530
- package/docs/CONFIGURATION.md +6 -0
- package/docs/VALIDATION.md +23 -1
- package/docs/providers.md +38 -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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.81.3
|
|
4
|
+
|
|
5
|
+
- Brightened the welcome-screen UR wordmark with a polished three-tone finish:
|
|
6
|
+
luminous faces, top-left specular highlights, dimensional orange edges, and
|
|
7
|
+
a fully illuminated tagline. The screen-reader rendering remains unchanged.
|
|
8
|
+
- Rebuilt the OpenRouter `/model` experience around its live catalog: concise
|
|
9
|
+
FREE/PAID, context, tool, and reasoning badges; visible live/cache status;
|
|
10
|
+
professional navigation hints; and working Left/Right effort controls in the
|
|
11
|
+
provider-first picker that UR actually opens.
|
|
12
|
+
- Kept Claude, OpenAI, Gemini, and OpenRouter API-key entry on one aligned,
|
|
13
|
+
responsive row. Secrets remain masked and are still stored through UR's OS
|
|
14
|
+
keychain flow rather than settings files.
|
|
15
|
+
- Fixed WebFetch and WebSearch auxiliary requests selecting the internal
|
|
16
|
+
`modelH` placeholder instead of the active external-provider model. OpenRouter
|
|
17
|
+
WebSearch now uses its native server-tool contract, preserves provider search
|
|
18
|
+
usage, rejects false zero-search successes, and reports large model catalogs
|
|
19
|
+
concisely instead of flooding the terminal.
|
|
20
|
+
|
|
21
|
+
## 1.81.2
|
|
22
|
+
|
|
23
|
+
- Fixed `/effort max` being acknowledged as `max` while OpenRouter requests,
|
|
24
|
+
the spinner, and the status indicator still used `high`. UR now preserves
|
|
25
|
+
provider reasoning metadata, treats `max` as the model's highest capability,
|
|
26
|
+
and translates it to the correct OpenRouter wire value (including `xhigh`).
|
|
27
|
+
- Made the live provider/model selection authoritative for the next request and
|
|
28
|
+
removed the duplicate `/model` settings write, preventing a newly selected
|
|
29
|
+
OpenRouter model from being dispatched through stale Ollama settings.
|
|
30
|
+
- Bounded deterministic duplicate Edit, Write, and NotebookEdit failures. After
|
|
31
|
+
two unchanged failures UR tells the model to reread the target and rebuild a
|
|
32
|
+
unique edit; continued identical calls stop the turn instead of looping.
|
|
33
|
+
- Replaced the sparse welcome-screen block mark with a balanced outlined UR
|
|
34
|
+
wordmark and branded tagline, while keeping a concise plain-text rendering in
|
|
35
|
+
screen-reader mode.
|
|
36
|
+
|
|
3
37
|
## 1.81.1
|
|
4
38
|
|
|
5
39
|
- Preflighted UR task tracking in `/reverse-skills:start` and every bundled
|
package/README.md
CHANGED
|
@@ -353,6 +353,12 @@ In the interactive app, `/model` is a two-step, provider-first picker:
|
|
|
353
353
|
their curated model list because the official CLIs expose no models API. The
|
|
354
354
|
generic `subscription` entry is an internal placeholder hidden from listings.
|
|
355
355
|
|
|
356
|
+
In the model catalog, use **Up/Down** to browse and **Left/Right** to change
|
|
357
|
+
the focused model's effort before pressing Enter. OpenRouter additionally
|
|
358
|
+
shows FREE/PAID tier, context size, tool/reasoning support, and whether its
|
|
359
|
+
catalog is live or cached. API-key entry is masked, aligned on one row, and
|
|
360
|
+
stored through the OS keychain flow.
|
|
361
|
+
|
|
356
362
|
Model lists never cross providers: OpenAI API, Claude API, Gemini API,
|
|
357
363
|
OpenRouter, Ollama, and OpenAI-compatible local/server endpoints are separate
|
|
358
364
|
access paths. API keys, local runtimes, and subscription logins are not
|