ur-agent 1.29.1 → 1.30.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,5 +1,32 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.30.1
4
+
5
+ - Fix Codex CLI runtime dispatch by ignoring stdin when UR already passes the
6
+ prompt as a command argument. This prevents `codex exec` from treating UR's
7
+ closed pipe as extra stdin and exiting after `Reading additional input from
8
+ stdin...`.
9
+
10
+ ## 1.30.0
11
+
12
+ - IDE integration commands: `ur ide status`, `ur ide doctor`, and `ur ide config
13
+ <editor>` for VS Code, Cursor, Windsurf, Zed, JetBrains, Neovim, and generic
14
+ ACP clients. Status shows workspace, ACP server, provider/model, plugin count,
15
+ and warnings; config generation states each editor's integration mechanism
16
+ honestly (native extension, stdio ACP, or manual).
17
+ - ACP server completion: `initialize` now advertises capabilities and the
18
+ workspace root; added `session/new`, `session/prompt`, and `session/cancel`;
19
+ `shutdown` actually stops the server; added `--debug` request logging.
20
+ - New stdio Agent Client Protocol agent (`ur acp stdio`) so Zed and ACP-capable
21
+ Neovim clients can launch UR natively, with `session/update` streaming.
22
+ - `ur plugin doctor` validates installed, project, and bundled plugin manifests
23
+ and reports declared components and the capability surface; a broken plugin is
24
+ reported without crashing the scan.
25
+ - VS Code Inline Diffs extension: explicit Apply (confirmed `git apply`) and
26
+ Reject actions plus a status command; no silent writes.
27
+ - New docs: `docs/IDE.md`, `docs/ACP.md`, expanded `docs/plugins.md` (manifest
28
+ reference, doctor, hooks, permissions, troubleshooting), and README quickstarts.
29
+
3
30
  ## 1.29.1
4
31
 
5
32
  - Replace fabricated Claude Code and Gemini CLI static model names with
package/README.md CHANGED
@@ -304,7 +304,7 @@ viewer mode.
304
304
  Example:
305
305
 
306
306
  ```text
307
- UR-AGENT v1.29.1 | Provider: Codex CLI | Auth: subscription | model: codex/gpt-5.5 | mode: ask | branch: main | tasks: idle
307
+ UR-AGENT v1.30.1 | Provider: Codex CLI | Auth: subscription | model: codex/gpt-5.5 | mode: ask | branch: main | tasks: idle
308
308
  ```
309
309
 
310
310
  The bar reflects the active in-session provider/model immediately after a
@@ -327,7 +327,31 @@ ur ide diff show <id>
327
327
  ```
328
328
 
329
329
  The extension is local-only. It reads and writes diff metadata inside the
330
- current workspace and does not call model providers or network services.
330
+ current workspace and does not call model providers or network services. In the
331
+ UR Inline Diffs view you can preview a bundle, **Apply** it (a confirmed
332
+ `git apply`, never a silent write), **Reject** it, or run **UR: Show Status**.
333
+
334
+ Inspect and configure integration per editor:
335
+
336
+ ```sh
337
+ ur ide status # workspace, ACP server, provider/model, plugin count
338
+ ur ide doctor # pass/warn/fail checks; reports missing config clearly
339
+ ur ide config zed # print the .zed/settings.json ACP block
340
+ ur ide config vscode # VS Code / Cursor / Windsurf setup
341
+ ```
342
+
343
+ Editors connect either through the native UR extension/plugin (VS Code family,
344
+ JetBrains) or the stdio Agent Client Protocol (Zed, ACP Neovim, generic ACP
345
+ clients). Start an ACP surface with:
346
+
347
+ ```sh
348
+ ur acp stdio # stdio ACP agent for editors (Zed, Neovim)
349
+ ur acp serve --port 8123 [--debug] # HTTP JSON-RPC server for scripts/clients
350
+ ur acp status
351
+ ```
352
+
353
+ See the [IDE Guide](docs/IDE.md) and [ACP Guide](docs/ACP.md) for per-editor
354
+ setup, supported features, and limitations.
331
355
 
332
356
  New slash skills run agentic work in isolated git worktrees with clean commits and PR output:
333
357
  `/debug-v2`, `/refactor`, `/paper-implementation`, `/benchmark`, `/security-review`, `/dockerize`, `/latex-paper`.
@@ -347,12 +371,17 @@ validator, and Markdown language-adapter metadata.
347
371
 
348
372
  ```sh
349
373
  ur plugin list
374
+ ur plugin doctor
350
375
  ur plugin install engineering-discipline@ur-plugins-official
351
376
  ur plugin install hello@ur-plugins-official
352
377
  ur plugin update <plugin>
353
378
  ur plugin disable <plugin>
354
379
  ```
355
380
 
381
+ `ur plugin doctor` validates every installed, project, and bundled plugin
382
+ manifest and reports its declared components and capability surface, so you can
383
+ review what a plugin touches before enabling it.
384
+
356
385
  The npm package includes `README.md`, `QUALITY.md`, `docs/`, `documentation/`,
357
386
  and `plugins/`, so the npm package page and installed artifact both carry the
358
387
  marketplace documentation, core plugins, community staging directory, and
@@ -534,6 +563,8 @@ release until that GitHub run is green.
534
563
  - [1.18.0 Upgrade Notes](docs/AGENT_UPGRADE_1.18.0.md)
535
564
  - [1.17.0 Upgrade Notes](docs/AGENT_UPGRADE_1.17.0.md)
536
565
  - [Development Guide](docs/DEVELOPMENT.md)
566
+ - [IDE Guide](docs/IDE.md)
567
+ - [ACP Guide](docs/ACP.md)
537
568
  - [Plugin Guide](docs/plugins.md)
538
569
  - [Validation Runbook](docs/VALIDATION.md)
539
570
  - [Release Runbook](RELEASE.md)