ur-agent 1.25.1 → 1.25.3

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,23 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.25.3
4
+
5
+ - Add provider alias resolution so `ur config set provider claude`,
6
+ `ur config set provider "Claude Code"`, and `ur provider doctor agy`
7
+ resolve to canonical provider IDs.
8
+ - Detect the official Antigravity `agy` CLI command for auth and doctor checks.
9
+ - Update provider documentation and status-bar examples for the 1.25.3 release.
10
+
11
+ ## 1.25.2
12
+
13
+ - Refresh public documentation so README, docs, static site, validation runbook,
14
+ and code inventory all describe the current UR-AGENT feature set.
15
+ - Document the recent provider auth, status bar, bundled VS Code extension,
16
+ `ur upgrade`, and AskUserQuestion schema fixes as first-class release
17
+ behavior.
18
+ - Bump package, Bun macro, VS Code extension, and validation examples to the
19
+ 1.25.2 release line.
20
+
3
21
  ## 1.25.1
4
22
 
5
23
  - Fix VS Code extension installation to use the bundled UR-AGENT inline-diffs extension instead of the stale unpublished `urhq.ur` marketplace ID.
package/README.md CHANGED
@@ -163,11 +163,20 @@ ur auth claude
163
163
  ur auth gemini
164
164
  ur auth antigravity
165
165
  ur config set provider codex-cli
166
+ ur config set provider claude
167
+ ur config set provider "Claude Code"
168
+ ur config set provider antigravity
166
169
  ur config set model qwen3-coder:480b-cloud
167
170
  ur config set base_url http://localhost:11434
168
171
  ur config set provider.fallback ollama
169
172
  ```
170
173
 
174
+ Provider config accepts canonical IDs and common aliases. Examples:
175
+ `codex-cli`, `chatgpt`, `codex`, `claude-code-cli`, `claude`,
176
+ `Claude Code`, `gemini-cli`, `gemini`, `antigravity-cli`, `antigravity`,
177
+ `agy`, `ollama`, `lmstudio`, `LM Studio`, `llama.cpp`, and `vllm`.
178
+ Use quotes for shell values with spaces.
179
+
171
180
  | Provider | Access type | Legal path |
172
181
  | --- | --- | --- |
173
182
  | ChatGPT/Codex | subscription | official Codex CLI login |
@@ -204,7 +213,7 @@ as first-class subcommands in the shipped CLI.
204
213
  | `ur test-first` | Detect the project stack, run compile/test/lint commands, store failure traces, and install edit-time verify gates. |
205
214
  | `ur safety` | Inspect or initialize project shell safety policy and evaluate command risk before execution. |
206
215
  | `ur context-pack` | Write project architecture context, task memory, and compressed context under `.ur/`. Supports memory kinds `decision`, `constraint`, `command`, `diff`, `note`, `architecture`, `preference`, `attempt`, `accepted`, and `rejected`. |
207
- | `ur hooks` | Configure lifecycle hooks (`BeforeEdit`, `AfterEdit`, `BeforeCommand`, `AfterCommand`, `BeforeCommit`, `OnFailure`) via settings files. |
216
+ | `/hooks` | Inspect lifecycle hooks (`BeforeEdit`, `AfterEdit`, `BeforeCommand`, `AfterCommand`, `BeforeCommit`, `OnFailure`) configured via settings files. |
208
217
  | `ur bg` | Run and manage detached local background agents with optional worktrees and PR creation. |
209
218
  | `ur worktree` | List, inspect, and clean up UR agent worktrees. |
210
219
  | `ur automation` | Store and run project-local scheduled automation specs under `.ur/automations/`. |
@@ -250,12 +259,29 @@ viewer mode.
250
259
  Example:
251
260
 
252
261
  ```text
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
262
+ 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
254
263
  ```
255
264
 
256
265
  If a custom status-line hook is configured, UR-AGENT uses that hook output
257
266
  instead of the built-in bar.
258
267
 
268
+ ### IDE Integration
269
+
270
+ `ur ide diff` captures review bundles under `.ur/ide/diffs/` so editors can
271
+ show agent diffs without scraping terminal output. The shipped VS Code inline
272
+ diff extension is bundled inside this repository and packaged as a local VSIX
273
+ when installed from UR-AGENT; the public install path does not depend on an
274
+ unpublished marketplace extension ID.
275
+
276
+ ```sh
277
+ ur ide diff capture --title "Parser fix"
278
+ ur ide diff list
279
+ ur ide diff show <id>
280
+ ```
281
+
282
+ The extension is local-only. It reads and writes diff metadata inside the
283
+ current workspace and does not call model providers or network services.
284
+
259
285
  New slash skills run agentic work in isolated git worktrees with clean commits and PR output:
260
286
  `/debug-v2`, `/refactor`, `/paper-implementation`, `/benchmark`, `/security-review`, `/dockerize`, `/latex-paper`.
261
287
  Install matching agent templates with `ur agent-templates install`.
@@ -452,6 +478,7 @@ release until that GitHub run is green.
452
478
 
453
479
  - [Usage Guide](docs/USAGE.md)
454
480
  - [Configuration](docs/CONFIGURATION.md)
481
+ - [Provider Guide](docs/providers.md)
455
482
  - [Agent Feature Expansion](docs/AGENT_FEATURES.md)
456
483
  - [Agent Trend Coverage](docs/AGENT_TRENDS.md)
457
484
  - [1.22.0 Upgrade Notes](docs/AGENT_UPGRADE_1.22.0.md)
package/RELEASE.md CHANGED
@@ -31,6 +31,14 @@ npm whoami
31
31
  npm view ur-agent@$(node -p "require('./package.json').version") version
32
32
  ```
33
33
 
34
+ Before committing a release, verify the public docs match the current feature
35
+ set and version:
36
+
37
+ ```bash
38
+ rg -n "Version [0-9]|expected: [0-9]|UR-AGENT v[0-9]" README.md docs documentation
39
+ bun test test/docsCoverage.test.ts
40
+ ```
41
+
34
42
  If `npm whoami` fails, run:
35
43
 
36
44
  ```bash