ur-agent 1.27.3 → 1.27.5
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 +10 -0
- package/README.md +11 -6
- package/dist/cli.js +746 -384
- package/docs/CONFIGURATION.md +7 -1
- package/docs/USAGE.md +5 -0
- package/docs/providers.md +27 -28
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.27.5
|
|
4
|
+
|
|
5
|
+
- Make `/model` provider-first and provider-scoped, with clear subscription,
|
|
6
|
+
API-key, local runtime, and OpenAI-compatible server labels.
|
|
7
|
+
- Keep model discovery, validation, fallback, and saved config scoped to the
|
|
8
|
+
selected provider so CLI, API, and local model lists do not leak into each
|
|
9
|
+
other.
|
|
10
|
+
- Update provider documentation and tests for the provider/model selection
|
|
11
|
+
flow.
|
|
12
|
+
|
|
3
13
|
## 1.25.3
|
|
4
14
|
|
|
5
15
|
- Add provider alias resolution so `ur config set provider claude`,
|
package/README.md
CHANGED
|
@@ -179,19 +179,24 @@ Use quotes for shell values with spaces.
|
|
|
179
179
|
|
|
180
180
|
| Provider | Access type | Legal path |
|
|
181
181
|
| --- | --- | --- |
|
|
182
|
-
|
|
|
182
|
+
| Codex CLI | subscription | official Codex CLI login |
|
|
183
183
|
| Claude Code | subscription | official Claude Code login |
|
|
184
184
|
| Gemini CLI | subscription | official Gemini Code Assist login |
|
|
185
185
|
| Antigravity | subscription | official Antigravity login, where supported |
|
|
186
|
-
| OpenAI | API | `OPENAI_API_KEY` |
|
|
187
|
-
|
|
|
188
|
-
| Gemini | API | `GEMINI_API_KEY` |
|
|
186
|
+
| OpenAI API | API key | `OPENAI_API_KEY` |
|
|
187
|
+
| Claude API | API key | `ANTHROPIC_API_KEY` |
|
|
188
|
+
| Gemini API | API key | `GEMINI_API_KEY` |
|
|
189
189
|
| OpenRouter | API/router | `OPENROUTER_API_KEY` |
|
|
190
190
|
| Ollama | local | localhost Ollama runtime |
|
|
191
|
-
| LM Studio | local | local OpenAI-compatible server |
|
|
192
|
-
| llama.cpp | local | local OpenAI-compatible server |
|
|
191
|
+
| LM Studio | local/server | local OpenAI-compatible server |
|
|
192
|
+
| llama.cpp | local/server | local OpenAI-compatible server |
|
|
193
193
|
| vLLM | local/server | OpenAI-compatible server |
|
|
194
194
|
|
|
195
|
+
In the interactive app, `/model` shows providers first and then shows only the
|
|
196
|
+
selected provider's models. OpenAI API and Codex CLI, Claude API and Claude
|
|
197
|
+
Code, and Gemini API and Gemini CLI are separate access paths; subscription
|
|
198
|
+
logins and API keys are not interchangeable.
|
|
199
|
+
|
|
195
200
|
Security policy: UR-AGENT never scrapes browser sessions, extracts OAuth
|
|
196
201
|
tokens, bypasses subscription/quota/region/organization restrictions, proxies a
|
|
197
202
|
consumer web session as an API, or claims support for a provider unless the
|