ur-agent 1.24.1 → 1.25.1

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,9 +1,15 @@
1
1
  # Changelog
2
2
 
3
- ## 1.24.1
3
+ ## 1.25.1
4
+
5
+ - Fix VS Code extension installation to use the bundled UR-AGENT inline-diffs extension instead of the stale unpublished `urhq.ur` marketplace ID.
6
+ - Harden AskUserQuestion normalization for description-only option objects and keep the eight-option schema in the production bundle.
7
+
8
+ ## 1.25.0
4
9
 
5
10
  - Add legal multi-provider auth/provider management for subscription CLI, API-key, and local runtime access paths.
6
11
  - Add provider doctor/status/config commands, provider-aware status bar display, and explicit no-token-scraping safety policy.
12
+ - Relax plan-mode clarification choices so professional redesign prompts do not fail when more than four options are supplied.
7
13
 
8
14
  ## 1.24.0
9
15
 
package/README.md CHANGED
@@ -21,9 +21,9 @@ multi-agent execution, test-first quality loops, CI repair loops, background
21
21
  agents, MCP servers, plugins, skills, memory, permission safety policy,
22
22
  project context packing, verification, and local model routing.
23
23
 
24
- UR sends model requests through the configured local Ollama app. That app can
25
- serve local models or Ollama Cloud-backed models, while UR itself stays out of
26
- provider API key management.
24
+ UR-AGENT integrates official model access paths only: subscription CLIs,
25
+ explicit API-key mode, and local OpenAI-compatible runtimes. It never scrapes
26
+ browser sessions, extracts OAuth tokens, or bypasses provider restrictions.
27
27
 
28
28
  ## Why UR
29
29
 
@@ -38,6 +38,10 @@ handing work off to other tools or agents when needed.
38
38
  `ur -p` for automation-friendly output.
39
39
  - **Local model runtime.** Use any model exposed by Ollama, set a specific host
40
40
  with `--ollama-host`, or discover LAN Ollama servers with `--discover-ollama`.
41
+ - **Legal provider routing.** Use `ur provider`, `ur auth chatgpt`,
42
+ `ur auth claude`, `ur auth gemini`, `ur auth antigravity`, and safe
43
+ `ur config set ...` commands to select official subscription, API, or local
44
+ providers without storing secrets in UR settings.
41
45
  - **Agent workflows.** Use `ur spec`, `ur arena`, `ur test-first`,
42
46
  `ur ci-loop`, `ur bg`, `ur workflow`, `ur crew`, and `ur automation` for
43
47
  structured work beyond a single chat turn.
@@ -143,6 +147,47 @@ Model selection precedence is `OLLAMA_MODEL`, then `UR_MODEL`, then the model
143
147
  router over the configured Ollama host. If model discovery fails, the built-in
144
148
  fallback is `qwen3-coder:480b-cloud`.
145
149
 
150
+ ### Legal Provider Auth
151
+
152
+ UR-AGENT stores only safe provider preferences: provider name, model name,
153
+ base URL, command path, fallback preference, and non-secret settings. API keys
154
+ must stay in environment variables and subscription providers must authenticate
155
+ through their official CLIs.
156
+
157
+ ```sh
158
+ ur provider list
159
+ ur provider status
160
+ ur provider doctor
161
+ ur auth chatgpt
162
+ ur auth claude
163
+ ur auth gemini
164
+ ur auth antigravity
165
+ ur config set provider codex-cli
166
+ ur config set model qwen3-coder:480b-cloud
167
+ ur config set base_url http://localhost:11434
168
+ ur config set provider.fallback ollama
169
+ ```
170
+
171
+ | Provider | Access type | Legal path |
172
+ | --- | --- | --- |
173
+ | ChatGPT/Codex | subscription | official Codex CLI login |
174
+ | Claude Code | subscription | official Claude Code login |
175
+ | Gemini CLI | subscription | official Gemini Code Assist login |
176
+ | Antigravity | subscription | official Antigravity login, where supported |
177
+ | OpenAI | API | `OPENAI_API_KEY` |
178
+ | Anthropic Claude | API | `ANTHROPIC_API_KEY` |
179
+ | Gemini | API | `GEMINI_API_KEY` |
180
+ | OpenRouter | API/router | `OPENROUTER_API_KEY` |
181
+ | Ollama | local | localhost Ollama runtime |
182
+ | LM Studio | local | local OpenAI-compatible server |
183
+ | llama.cpp | local | local OpenAI-compatible server |
184
+ | vLLM | local/server | OpenAI-compatible server |
185
+
186
+ Security policy: UR-AGENT never scrapes browser sessions, extracts OAuth
187
+ tokens, bypasses subscription/quota/region/organization restrictions, proxies a
188
+ consumer web session as an API, or claims support for a provider unless the
189
+ official CLI/API path works. See [Provider Guide](docs/providers.md).
190
+
146
191
  ## Command Surface
147
192
 
148
193
  Run `ur --help` for the complete CLI reference. These commands are implemented
@@ -180,6 +225,12 @@ as first-class subcommands in the shipped CLI.
180
225
  | `ur eval bench` | Import local SWE-bench, Terminal-Bench, or Aider Polyglot exports. |
181
226
  | `ur model-doctor` | Inspect Ollama models and report likely agent capabilities. |
182
227
  | `ur model-route` | Recommend a local model for a task by capability fit. |
228
+ | `ur provider` | List, check, and diagnose legal model provider adapters. |
229
+ | `ur auth chatgpt` | Launch the official Codex CLI login for ChatGPT subscription access. |
230
+ | `ur auth claude` | Launch the official Claude Code login flow. |
231
+ | `ur auth gemini` | Use the official Gemini CLI login flow where supported. |
232
+ | `ur auth antigravity` | Use the official Antigravity CLI login flow where supported. |
233
+ | `ur config set` | Persist safe non-secret provider settings such as provider, model, base URL, command path, and fallback. |
183
234
  | `ur mcp` | Configure and manage Model Context Protocol servers. |
184
235
  | `ur plugin` | Install, update, enable, disable, and validate UR plugins that can add MCP tools, skills, templates, validators, language adapters, LSP servers, agents, hooks, output styles, and commands. |
185
236
  | `ur role-mode` | Install built-in Architect, Code, Debug, and Ask role modes. |
@@ -199,7 +250,7 @@ viewer mode.
199
250
  Example:
200
251
 
201
252
  ```text
202
- UR-AGENT v1.24.0 | model: qwen3-coder:480b-cloud | mode: ask | branch: main | tasks: idle | Update: 1.23.3 -> 1.24.0 available
253
+ UR-AGENT v1.25.1 | Provider: Ollama | Auth: local | model: qwen3-coder:480b-cloud | mode: ask | branch: main | tasks: idle | Update: 1.25.0 -> 1.25.1 available
203
254
  ```
204
255
 
205
256
  If a custom status-line hook is configured, UR-AGENT uses that hook output