ur-agent 1.50.4 → 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,54 @@
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
+
38
+ ## 1.50.5
39
+
40
+ - Added `.github/workflows/release.yml`. The repository had only a test
41
+ workflow, so tags never became production releases: 18 tags existed with no
42
+ GitHub Release and no automated publish. Pushing a `v*` tag now runs the full
43
+ gate (typecheck, lint, tests, build, `release:check`, CLI smoke test),
44
+ publishes a GitHub Release whose notes are the matching `CHANGELOG.md`
45
+ section, and pushes the verified tarball to npm.
46
+ - The tag is not trusted on its own. The run fails if it disagrees with
47
+ `package.json` or if `CHANGELOG.md` has no section for that version, and the
48
+ artifact published to npm is the same one the gate verified rather than a
49
+ fresh pack. Publishing is skipped, not failed, when the version is already on
50
+ npm or when `NPM_TOKEN` is absent.
51
+
3
52
  ## 1.50.4
4
53
 
5
54
  - Removed the `/install-github-app` command and its GitHub App setup flow,