ur-agent 1.30.6 → 1.32.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 +31 -0
- package/dist/cli.js +2015 -1623
- package/docs/providers.md +29 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.32.0
|
|
4
|
+
|
|
5
|
+
- `/model` now shows the subscription providers (Codex CLI, Claude Code, Gemini
|
|
6
|
+
CLI, Antigravity) again. They are enabled the moment you `ur connect` them
|
|
7
|
+
(persisted per-account opt-in) — no `UR_ENABLE_EXTERNAL_APP_PROVIDERS` env var
|
|
8
|
+
needed — and run via the official CLI. Not connected → clear connect prompt.
|
|
9
|
+
- API providers (OpenAI, Anthropic, Gemini, OpenRouter) now load their model
|
|
10
|
+
lists **live** from each provider's `/models` endpoint using your connected
|
|
11
|
+
key (OpenAI/Anthropic/OpenRouter `data[].id`; Gemini `models[]` filtered to
|
|
12
|
+
`generateContent`). No hardcoded model IDs; the curated list is only a
|
|
13
|
+
fallback shown before you connect. Subscription CLIs keep a curated list
|
|
14
|
+
because their official CLIs expose no models API.
|
|
15
|
+
- Live-discovered models validate against the discovered list (with cold-process
|
|
16
|
+
tolerance), so a saved API model keeps working across restarts.
|
|
17
|
+
|
|
18
|
+
## 1.31.0
|
|
19
|
+
|
|
20
|
+
- Add in-app provider connection: `ur connect` / `/connect` connects a provider
|
|
21
|
+
once and persists it. Subscription providers (Codex, Claude Code, Gemini,
|
|
22
|
+
Antigravity) launch their official CLI login using your own account; API
|
|
23
|
+
providers (OpenAI, Anthropic, Gemini, OpenRouter) store the key in the OS
|
|
24
|
+
keychain (with an encrypted file fallback) — the same secure store UR uses for
|
|
25
|
+
its own credentials.
|
|
26
|
+
- Runtime now reads a stored key first, then the environment variable, so a
|
|
27
|
+
once-connected API provider works in later sessions without re-entering the
|
|
28
|
+
key. `ur provider doctor` and the `/model` picker reflect stored-key
|
|
29
|
+
connections and, when not connected, show the exact `ur connect <provider>`
|
|
30
|
+
command instead of failing opaquely.
|
|
31
|
+
- `ur connect status` reports connection state for every provider; keys are read
|
|
32
|
+
from stdin (not argv/shell history) and never written to plaintext settings.
|
|
33
|
+
|
|
3
34
|
## 1.30.6
|
|
4
35
|
|
|
5
36
|
- Restore a visible `subscription` access entry in provider lists without
|