ur-agent 1.81.4 → 1.81.6
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 +35 -0
- package/README.md +12 -3
- package/dist/cli.js +236 -148
- package/docs/AGENT_FEATURES.md +17 -0
- package/docs/CONFIGURATION.md +3 -1
- package/docs/VALIDATION.md +1 -1
- package/docs/providers.md +9 -3
- 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,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.81.6
|
|
4
|
+
|
|
5
|
+
- Restored the original clean welcome house without a shadow. The full adaptive
|
|
6
|
+
startup UI is now the default at every terminal size; its responsive stacking
|
|
7
|
+
and wordmark fallbacks handle resizing. The small-house condensed UI appears
|
|
8
|
+
only when explicitly requested with `UR_CODE_COMPACT_LOGO=1`.
|
|
9
|
+
- Replaced the large UR wordmark with the supplied 16-line letterform in UR's
|
|
10
|
+
existing theme-aware brand color. It responds to terminal width and height,
|
|
11
|
+
falling back to the prior compact mark and then plain `UR` so resized or
|
|
12
|
+
narrow windows never overflow.
|
|
13
|
+
- Kept OpenRouter catalog rows concise while showing the focused model's full,
|
|
14
|
+
untruncated provider/model ID immediately below the list on both picker
|
|
15
|
+
surfaces. Request routing continues to use that exact ID.
|
|
16
|
+
- Removed the blanket file-read system reminder that told models to refuse all
|
|
17
|
+
code improvements. Reading ordinary games, websites, applications, and tools
|
|
18
|
+
no longer blocks requested edits; UR's normal authorization, malware, secret,
|
|
19
|
+
sandbox, and destructive-action safeguards remain enforced where relevant.
|
|
20
|
+
|
|
21
|
+
## 1.81.5
|
|
22
|
+
|
|
23
|
+
- Matched the UR welcome wordmark to the house and frame's bright, theme-aware
|
|
24
|
+
accent by applying the brand color directly to each rendered row. Added a
|
|
25
|
+
restrained dim drop shadow around the large house without changing its
|
|
26
|
+
established geometry or screen-reader output.
|
|
27
|
+
- Made OpenRouter model discovery fresh-only whenever the model catalog opens.
|
|
28
|
+
UR now fetches the current catalog on every visit and reports refresh errors
|
|
29
|
+
instead of silently showing stale cached entries.
|
|
30
|
+
- Shortened OpenRouter model labels and startup model chrome to their useful
|
|
31
|
+
model names while preserving the complete provider/model ID for requests and
|
|
32
|
+
showing it on the focused catalog entry. Duplicate short names retain a clear
|
|
33
|
+
vendor suffix.
|
|
34
|
+
- Stabilized the production-shell recovery regression under concurrent test
|
|
35
|
+
execution while continuing to verify that reclaimed task-output directories
|
|
36
|
+
are recreated without restarting UR.
|
|
37
|
+
|
|
3
38
|
## 1.81.4
|
|
4
39
|
|
|
5
40
|
- Unified the welcome-screen UR wordmark, outlined depth, decorative marks,
|
package/README.md
CHANGED
|
@@ -114,6 +114,12 @@ available, and the approval decision in task evidence. Security-research prompts
|
|
|
114
114
|
need scoped targets and authorization confirmation; local/lab/test targets are
|
|
115
115
|
preferred unless the user confirms authorized external scope.
|
|
116
116
|
|
|
117
|
+
Reading source code does not attach a blanket modification refusal. UR evaluates
|
|
118
|
+
the actual behavior and requested intent, so ordinary games, websites, apps,
|
|
119
|
+
and developer tools can be analyzed and improved normally. Genuine malicious
|
|
120
|
+
or unauthorized activity remains subject to UR's security and operational
|
|
121
|
+
boundaries.
|
|
122
|
+
|
|
117
123
|
Authorized researchers can explicitly activate `/mode redteam`. The first use
|
|
118
124
|
shows a mandatory risk warning; `/mode redteam --accept-risk` acknowledges it
|
|
119
125
|
and enables UR's unrestricted security-research prompt policy for the current
|
|
@@ -355,9 +361,12 @@ In the interactive app, `/model` is a two-step, provider-first picker:
|
|
|
355
361
|
|
|
356
362
|
In the model catalog, use **Up/Down** to browse and **Left/Right** to change
|
|
357
363
|
the focused model's effort before pressing Enter. OpenRouter additionally
|
|
358
|
-
shows FREE/PAID tier, context size, tool/reasoning
|
|
359
|
-
|
|
360
|
-
|
|
364
|
+
shows compact model names, FREE/PAID tier, context size, tool/reasoning
|
|
365
|
+
support, and the full untruncated ID immediately below the focused entry.
|
|
366
|
+
Its catalog is fetched fresh every time it opens and never falls back to a
|
|
367
|
+
stale cached list.
|
|
368
|
+
API-key entry is masked, aligned on one row, and stored through the OS
|
|
369
|
+
keychain flow.
|
|
361
370
|
|
|
362
371
|
Model lists never cross providers: OpenAI API, Claude API, Gemini API,
|
|
363
372
|
OpenRouter, Ollama, and OpenAI-compatible local/server endpoints are separate
|