ur-agent 1.28.1 → 1.29.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/docs/USAGE.md CHANGED
@@ -246,7 +246,7 @@ Interactive sessions include a compact bottom status bar when stdout is a real
246
246
  terminal:
247
247
 
248
248
  ```text
249
- UR-AGENT v1.25.3 | Provider: Ollama | Auth: local | model: qwen3-coder:480b-cloud | mode: ask | branch: main | tasks: idle | Update: 1.25.2 -> 1.25.3 available
249
+ UR-AGENT v1.29.1 | Provider: Codex CLI | Auth: subscription | model: codex/gpt-5.5 | mode: ask | branch: main | tasks: idle | Update: 1.29.0 -> 1.29.1 available
250
250
  ```
251
251
 
252
252
  The bar is not rendered in non-interactive mode, CI, dumb terminals, or
package/docs/providers.md CHANGED
@@ -158,7 +158,7 @@ ur config set provider anthropic-api
158
158
 
159
159
  | Provider type | Model discovery | Source label |
160
160
  | --- | --- | --- |
161
- | Subscription CLI (codex-cli, claude-code-cli, gemini-cli, antigravity-cli) | Static list of provider-specific models | static |
161
+ | Subscription CLI (codex-cli, claude-code-cli, gemini-cli, antigravity-cli) | Static list of provider-scoped CLI model aliases/names | static |
162
162
  | API providers (openai-api, anthropic-api, gemini-api, openrouter) | Static list of provider-specific models | static |
163
163
  | Local/server providers (ollama, lmstudio, llama.cpp, vllm) | Dynamic discovery from the selected provider endpoint | live |
164
164
  | OpenAI-compatible | Dynamic discovery from configured endpoint | live |
@@ -211,6 +211,10 @@ Warning: Current model "gpt-5.5" is not available for provider "anthropic-api" a
211
211
  After changing provider, run /model or: ur config set model claude-sonnet-5
212
212
  ```
213
213
 
214
+ For subscription CLIs, UR stores scoped IDs such as `claude-code/sonnet` and
215
+ passes only the CLI model name (`sonnet`) to the official command. Stale scoped
216
+ IDs such as `claude-code/sonnet-5` are rejected before runtime dispatch.
217
+
214
218
  ### Troubleshooting
215
219
 
216
220
  **Check active provider and model:**
@@ -44,7 +44,7 @@
44
44
  <main id="content" class="content">
45
45
  <header class="topbar">
46
46
  <div>
47
- <p class="eyebrow">Version 1.25.3</p>
47
+ <p class="eyebrow">Version 1.29.1</p>
48
48
  <h1>UR-AGENT Documentation</h1>
49
49
  <p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-AGENT.</p>
50
50
  </div>
@@ -159,7 +159,7 @@ ur config set provider.fallback ollama</code></pre>
159
159
  </article>
160
160
  <article>
161
161
  <h3>Status bar and updates</h3>
162
- <pre><code>UR-AGENT v1.25.3 | Provider: Ollama | Auth: local | model: qwen3-coder:480b-cloud | mode: ask | branch: main | tasks: idle | Update: 1.25.2 -&gt; 1.25.3 available</code></pre>
162
+ <pre><code>UR-AGENT v1.29.1 | Provider: Codex CLI | Auth: subscription | model: codex/gpt-5.5 | mode: ask | branch: main | tasks: idle | Update: 1.29.0 -&gt; 1.29.1 available</code></pre>
163
163
  <p>The interactive status bar shows provider, auth mode, model, branch, task state, checks status when known, and update availability. It is hidden in CI, dumb terminals, and non-interactive mode.</p>
164
164
  </article>
165
165
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ur-agent",
3
- "version": "1.28.1",
3
+ "version": "1.29.1",
4
4
  "description": "UR-AGENT — autonomous engineering workflow engine (plan, execute, test, verify, document, benchmark, reproduce)",
5
5
  "type": "module",
6
6
  "packageManager": "bun@1.3.14",