ur-agent 1.50.5 → 1.50.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
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.50.6
|
|
4
|
+
|
|
5
|
+
- Implemented `--effort` on Ollama. The support predicate compared
|
|
6
|
+
`getAPIProvider()` against `'firstParty'` — a value it can never return — so
|
|
7
|
+
the advertised flag was silently dropped everywhere. Effort is now advertised
|
|
8
|
+
on Ollama runtimes and mapped onto the wire's `think` parameter: graded
|
|
9
|
+
levels for families that accept them (`max` clamps to `high`), otherwise any
|
|
10
|
+
requested effort enables reasoning. The adapter still probes `/api/show`
|
|
11
|
+
first, so models without thinking support never receive the parameter.
|
|
12
|
+
- Fixed `/fast` misreporting. The same impossible comparison made fast mode
|
|
13
|
+
permanently unavailable while blaming "Bedrock, Vertex, or Foundry"
|
|
14
|
+
regardless of the actual provider. The command is now reachable and reports
|
|
15
|
+
the honest reason: fast mode is a serving tier of the hosted URHQ service,
|
|
16
|
+
which this build does not use.
|
|
17
|
+
- Added `isFirstPartyRuntime()` and replaced the misleading dead comparisons in
|
|
18
|
+
the model-option builders (12 sites) and fast mode with it. Remaining
|
|
19
|
+
`'firstParty'` comparisons in request shaping (beta headers, caching flags)
|
|
20
|
+
are correctly dead and were left with their existing semantics.
|
|
21
|
+
- Ungated `/chrome`, `/desktop`, `/install-slack-app`, `/remote-setup`,
|
|
22
|
+
`/upgrade`, `/usage`, and `/voice`. Their `ur-ai` availability requirement
|
|
23
|
+
was unsatisfiable: it requires the `subscription` provider, which the
|
|
24
|
+
provider registry itself blocks as an internal placeholder, so no user could
|
|
25
|
+
ever see these commands.
|
|
26
|
+
- Removed 18 stub commands from the registry (`autofix-pr`,
|
|
27
|
+
`backfill-sessions`, `good-ur`, `issue`, `ctx_viz`, `break-cache`,
|
|
28
|
+
`onboarding`, `share`, `teleport`, `bughunter`, `mock-limits`, `summary`,
|
|
29
|
+
`reset-limits`, `ant-trace`, `perf-issue`, `env`, `oauth-refresh`,
|
|
30
|
+
`debug-tool-call`). Each was a one-line disabled placeholder named "stub"
|
|
31
|
+
with no TypeScript source.
|
|
32
|
+
- Replaced every dead `ur.com`-family URL. `ur.com`, `platform.ur.com`,
|
|
33
|
+
`docs.ur.com`, and `support.ur.com` have no DNS records; user-facing strings
|
|
34
|
+
now point at the repository, developer comments at the equivalent live
|
|
35
|
+
upstream documentation pages, and the nonexistent domain was dropped from the
|
|
36
|
+
preapproved fetch host list.
|
|
37
|
+
|
|
3
38
|
## 1.50.5
|
|
4
39
|
|
|
5
40
|
- Added `.github/workflows/release.yml`. The repository had only a test
|