ur-agent 1.50.5 → 1.51.0

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,58 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.51.0
4
+
5
+ - Added named permission profiles. `settings.permissions.profiles` holds named
6
+ rule sets (allow/deny/ask plus a description) and
7
+ `settings.permissions.activeProfile` selects one; its rules are appended to
8
+ the base lists from the same settings source. A misnamed profile contributes
9
+ nothing rather than failing open, and deny still beats allow downstream, so
10
+ a profile can only narrow or extend.
11
+ - Added `/import-session <path>` for session portability. It validates a
12
+ transcript exported from another machine line by line — all-or-nothing, so a
13
+ corrupt file can never half-import — caps size at the resume reader's limit,
14
+ and lands it under a fresh session id so imports never collide with local
15
+ history. The result prints the `ur -r <id>` command to resume it.
16
+ - Background agent completion and failure now fire the user's Notification
17
+ hooks with types `agent_completed` and `agent_failed`, so external tooling
18
+ (desktop notifiers, pagers, dashboards) can react to background work
19
+ finishing without polling. The in-app toast behavior is unchanged.
20
+
21
+ ## 1.50.6
22
+
23
+ - Implemented `--effort` on Ollama. The support predicate compared
24
+ `getAPIProvider()` against `'firstParty'` — a value it can never return — so
25
+ the advertised flag was silently dropped everywhere. Effort is now advertised
26
+ on Ollama runtimes and mapped onto the wire's `think` parameter: graded
27
+ levels for families that accept them (`max` clamps to `high`), otherwise any
28
+ requested effort enables reasoning. The adapter still probes `/api/show`
29
+ first, so models without thinking support never receive the parameter.
30
+ - Fixed `/fast` misreporting. The same impossible comparison made fast mode
31
+ permanently unavailable while blaming "Bedrock, Vertex, or Foundry"
32
+ regardless of the actual provider. The command is now reachable and reports
33
+ the honest reason: fast mode is a serving tier of the hosted URHQ service,
34
+ which this build does not use.
35
+ - Added `isFirstPartyRuntime()` and replaced the misleading dead comparisons in
36
+ the model-option builders (12 sites) and fast mode with it. Remaining
37
+ `'firstParty'` comparisons in request shaping (beta headers, caching flags)
38
+ are correctly dead and were left with their existing semantics.
39
+ - Ungated `/chrome`, `/desktop`, `/install-slack-app`, `/remote-setup`,
40
+ `/upgrade`, `/usage`, and `/voice`. Their `ur-ai` availability requirement
41
+ was unsatisfiable: it requires the `subscription` provider, which the
42
+ provider registry itself blocks as an internal placeholder, so no user could
43
+ ever see these commands.
44
+ - Removed 18 stub commands from the registry (`autofix-pr`,
45
+ `backfill-sessions`, `good-ur`, `issue`, `ctx_viz`, `break-cache`,
46
+ `onboarding`, `share`, `teleport`, `bughunter`, `mock-limits`, `summary`,
47
+ `reset-limits`, `ant-trace`, `perf-issue`, `env`, `oauth-refresh`,
48
+ `debug-tool-call`). Each was a one-line disabled placeholder named "stub"
49
+ with no TypeScript source.
50
+ - Replaced every dead `ur.com`-family URL. `ur.com`, `platform.ur.com`,
51
+ `docs.ur.com`, and `support.ur.com` have no DNS records; user-facing strings
52
+ now point at the repository, developer comments at the equivalent live
53
+ upstream documentation pages, and the nonexistent domain was dropped from the
54
+ preapproved fetch host list.
55
+
3
56
  ## 1.50.5
4
57
 
5
58
  - Added `.github/workflows/release.yml`. The repository had only a test