ur-agent 1.81.5 → 1.81.8

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,55 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.81.8
4
+
5
+ - Made reasoning effort provider- and model-accurate across the model picker,
6
+ `/effort`, the status bar, SDK, and outbound API requests. Up/Down now loads
7
+ the focused model's exact levels, Left/Right cycles only those levels, and
8
+ `max` resolves to the model's real `high`, `xhigh`, or `max` ceiling.
9
+ - Added model-scoped llama.cpp reasoning discovery through `/props`, preserved
10
+ rich OpenAI-compatible capability metadata, and stopped presenting invented
11
+ graded levels when a provider does not advertise them.
12
+ - Regenerated version-matched smoke and regression benchmark evidence (6/6 and
13
+ 20/20 passed) so the release-readiness gate rejects no stale prior-release
14
+ artifacts.
15
+
16
+ ## 1.81.7
17
+
18
+ - Made reasoning effort a real provider/model capability instead of a cosmetic
19
+ selector. UR now preserves exact `minimal`, `low`, `medium`, `high`, `xhigh`,
20
+ and `max` levels advertised by the provider and sends the selected value on
21
+ the provider request.
22
+ - Made `/effort max` resolve to the selected model's actual ceiling. A
23
+ high-only model receives `high`, an xhigh model receives `xhigh`, and a model
24
+ with native max support receives `max`; `/effort status` and the status bar
25
+ report that same applied value.
26
+ - Updated both model pickers so Up/Down refreshes the focused model's exact
27
+ effort list and Left/Right cycles only through supported levels. Models that
28
+ do not advertise graded reasoning no longer receive invented capabilities.
29
+ - Added model-scoped llama.cpp reasoning discovery through `/props`, retained
30
+ rich OpenAI-compatible model metadata, and cached the result per endpoint and
31
+ model so clustered local deployments use their real capabilities.
32
+ - Extended the CLI, SDK schemas, documentation, and regression coverage for
33
+ exact effort levels and provider wire serialization.
34
+
35
+ ## 1.81.6
36
+
37
+ - Restored the original clean welcome house without a shadow. The full adaptive
38
+ startup UI is now the default at every terminal size; its responsive stacking
39
+ and wordmark fallbacks handle resizing. The small-house condensed UI appears
40
+ only when explicitly requested with `UR_CODE_COMPACT_LOGO=1`.
41
+ - Replaced the large UR wordmark with the supplied 16-line letterform in UR's
42
+ existing theme-aware brand color. It responds to terminal width and height,
43
+ falling back to the prior compact mark and then plain `UR` so resized or
44
+ narrow windows never overflow.
45
+ - Kept OpenRouter catalog rows concise while showing the focused model's full,
46
+ untruncated provider/model ID immediately below the list on both picker
47
+ surfaces. Request routing continues to use that exact ID.
48
+ - Removed the blanket file-read system reminder that told models to refuse all
49
+ code improvements. Reading ordinary games, websites, applications, and tools
50
+ no longer blocks requested edits; UR's normal authorization, malware, secret,
51
+ sandbox, and destructive-action safeguards remain enforced where relevant.
52
+
3
53
  ## 1.81.5
4
54
 
5
55
  - Matched the UR welcome wordmark to the house and frame's bright, theme-aware
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
@@ -353,11 +359,17 @@ In the interactive app, `/model` is a two-step, provider-first picker:
353
359
  their curated model list because the official CLIs expose no models API. The
354
360
  generic `subscription` entry is an internal placeholder hidden from listings.
355
361
 
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
362
+ In the model catalog, use **Up/Down** to browse. The effort row updates to
363
+ the focused model's exact provider-advertised levels; use **Left/Right** to
364
+ cycle only those levels before pressing Enter. A generic `max` request is
365
+ resolved visibly to that model's actual `max`, `xhigh`, or `high` ceiling,
366
+ and the resolved value is the value sent to the provider. llama.cpp models
367
+ are checked lazily through their model-scoped `/props` capability while the
368
+ cursor moves. OpenRouter additionally
358
369
  shows compact model names, FREE/PAID tier, context size, tool/reasoning
359
- support, and the exact ID for the focused entry. Its catalog is fetched
360
- fresh every time it opens and never falls back to a stale cached list.
370
+ support, and the full untruncated ID immediately below the focused entry.
371
+ Its catalog is fetched fresh every time it opens and never falls back to a
372
+ stale cached list.
361
373
  API-key entry is masked, aligned on one row, and stored through the OS
362
374
  keychain flow.
363
375