ur-agent 1.45.6 → 1.46.0

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,36 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.46.0
4
+
5
+ - Added a stable, official-SDK ACP v1 stdio agent with resumable sessions,
6
+ client MCP transports and additional roots, streamed updates, native
7
+ permission requests, cancellation, and private persisted session identity.
8
+ - Added an official-SDK A2A v0.3 JSON-RPC binding and hardened the separate UR
9
+ HTTP compatibility APIs with scoped authorization, strict media/schema
10
+ validation, bounded requests/responses/state, durable task identity, and
11
+ fail-closed permission handling.
12
+ - Hardened OpenAI, Anthropic, and Gemini provider wire behavior, including
13
+ strict tool schemas, exact tool-call identity, Gemini thought signatures,
14
+ request correlation, bounded stdin secrets, and protocol regression tests.
15
+ - Completed background-task management in the VS Code Actions panel and made
16
+ JetBrains prompt cancellation reach the running server task. Modernized and
17
+ verified both IDE extension builds against their supported platforms;
18
+ JetBrains bytecode no longer emits compatibility bridges to internal APIs.
19
+ - Made background manifests cross-process safe, atomic, private, bounded, and
20
+ traversal-resistant; added bounded CLI/log handling and explicit isolated or
21
+ offline task-launch choices without implicit publishing or permission bypass.
22
+ - Updated dependencies and supply-chain automation, pinned CI actions, added
23
+ multi-ecosystem Dependabot coverage, synchronized every release surface, and
24
+ expanded release, packaging, security, protocol, and integration checks.
25
+ - Made source archives Git-ignore-aware, private-state-safe, and replacement-
26
+ safe; provider smoke tests now isolate their JSON reports instead of
27
+ rewriting the tracked diagnostic snapshot, and secret scanning covers new
28
+ non-ignored release files before they are committed.
29
+ - Re-audited the agent roadmap against primary sources after the version bump;
30
+ corrected stale provider and dense-memory claims and recorded dated gaps for
31
+ A2A v1, ACP lifecycle methods, MCP Tasks/Apps, provider-native durable
32
+ inference, Agent Skills governance, GenAI telemetry, and memory integrity.
33
+
3
34
  ## 1.45.6
4
35
 
5
36
  - Deduplicated project verification approval so compile/test/lint commands are
package/QUALITY.md CHANGED
@@ -15,6 +15,7 @@ bun test
15
15
  bun run bundle
16
16
  bun run smoke
17
17
  bun run secrets:scan
18
+ bun run dependencies:audit
18
19
  bun run release:check
19
20
  bun run package:check
20
21
  npm publish --dry-run
@@ -30,8 +31,11 @@ sandbox posture, and secret exfiltration denial. `ur context-pack scan` records
30
31
  the repo architecture and manifest-derived command set; `ur context-pack
31
32
  compress` preserves task decisions, constraints, commands, and diffs.
32
33
 
33
- `bun run release:check` is also wired into `prepack`, so stale bundles and
34
- version drift fail before packaging. The GitHub workflow must keep production
34
+ `bun run dependencies:audit` checks the committed `bun.lock`, including
35
+ development dependencies that are compiled into `dist/cli.js`. `bun run
36
+ release:check` repeats that audit and is also wired into `prepack`, so known
37
+ dependency advisories, stale bundles, and version drift fail before packaging.
38
+ The GitHub workflow must keep production
35
39
  bundle, release, package, and global-install checks after the Bun test step;
36
40
  do not tag or publish until that workflow is green.
37
41
 
@@ -80,7 +84,8 @@ Public feature releases should update the full documentation set:
80
84
  - Deep verification through the verification subagent is manual by default and
81
85
  can be enabled with `UR_VERIFIER_AUTO_SUBAGENT=1`.
82
86
  - Secrets must stay in environment variables, secure storage, or local ignored
83
- settings files; tracked files are scanned by `bun run secrets:scan`.
87
+ settings files; tracked and untracked non-ignored release-candidate files are
88
+ scanned by `bun run secrets:scan`.
84
89
 
85
90
  ## Known Limits
86
91
 
package/README.md CHANGED
@@ -402,14 +402,14 @@ as first-class subcommands in the shipped CLI.
402
402
  | `ur auth gemini` | Use the official Gemini CLI login flow where supported. |
403
403
  | `ur auth antigravity` | Use the official Antigravity CLI login flow where supported. |
404
404
  | `ur config set` | Persist safe non-secret provider settings such as provider, model, base URL, command path, and fallback. |
405
- | `ur mcp` | Configure and manage Model Context Protocol servers. |
405
+ | `ur mcp` | Configure MCP servers or expose fail-closed, schema-validated built-in tools over stdio. |
406
406
  | `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. |
407
407
  | `ur role-mode` | Install built-in Architect, Code, Debug, and Ask role modes. |
408
- | `ur acp` | Start/stop/status the Agent Communication Protocol server for IDE extensions. |
408
+ | `ur acp` | Run official-SDK ACP v1 over stdio, or manage the separate UR HTTP JSON-RPC server. |
409
409
  | `ur exec` | Run one or more prompts in non-interactive mode with optional concurrency. |
410
410
  | `ur ide diff` | Capture editor-readable inline diff bundles. |
411
- | `ur a2a card` | Print UR Card metadata for agent interoperability. |
412
- | `ur a2a serve` | Start an opt-in local A2A task server with bearer or delegation auth. |
411
+ | `ur a2a card` | Print an A2A Agent Card preview. |
412
+ | `ur a2a serve` | Start the opt-in official-SDK A2A v0.3 JSON-RPC binding and UR compatibility task API. |
413
413
  | `ur sdk` | Show programmatic headless usage and scaffold SDK examples. |
414
414
  | `ur trigger` | Parse a GitHub/Slack webhook payload and optionally launch a headless UR run. |
415
415
  | `ur agent-templates` | List or install reusable project agent templates. |
@@ -468,7 +468,7 @@ contract — see the [IDE Guide](docs/IDE.md) for the full feature list.
468
468
  Inspect and configure integration per editor:
469
469
 
470
470
  ```sh
471
- ur ide status # workspace, ACP server, provider/model, sandbox/verifier mode, plugin count
471
+ ur ide status # workspace, UR HTTP server, provider/model, sandbox/verifier mode, plugin count
472
472
  ur ide doctor # pass/warn/fail checks; reports missing config clearly
473
473
  ur ide config zed # print the .zed/settings.json ACP block
474
474
  ur ide config vscode # VS Code / Cursor / Windsurf setup
@@ -478,7 +478,7 @@ VS Code, Cursor, and Windsurf connect through the UR Inline Diffs extension;
478
478
  Zed and ACP-capable Neovim clients connect through the stdio Agent Client
479
479
  Protocol. The experimental bundled JetBrains plugin under
480
480
  `extensions/jetbrains-ur` uses project-scoped JSON-RPC sessions over the
481
- loopback HTTP ACP endpoint and is installable from its Gradle `buildPlugin`
481
+ loopback UR HTTP compatibility endpoint and is installable from its Gradle `buildPlugin`
482
482
  zip. Start an ACP surface with:
483
483
 
484
484
  ```sh
@@ -496,7 +496,7 @@ commit, push, or create PRs unless explicitly requested:
496
496
  `/debug-v2`, `/refactor`, `/paper-implementation`, `/benchmark`, `/security-review`, `/dockerize`, `/latex-paper`.
497
497
  Install matching agent templates with `ur agent-templates install`.
498
498
 
499
- New built-in tools (exposed through MCP and the ACP server): GitHub, API, Browser, Docker, TestRunner, Database. File-system and terminal tools are already built in (FileRead, FileEdit, FileWrite, Glob, Grep, Bash, PowerShell).
499
+ New built-in tools (exposed through MCP and the UR HTTP compatibility API): GitHub, API, Browser, Docker, TestRunner, Database. File-system and terminal tools are already built in (FileRead, FileEdit, FileWrite, Glob, Grep, Bash, PowerShell).
500
500
 
501
501
  ### Plugin Marketplace
502
502
 
@@ -746,6 +746,7 @@ release until that GitHub run is green.
746
746
  - [Development Guide](docs/DEVELOPMENT.md)
747
747
  - [IDE Guide](docs/IDE.md)
748
748
  - [ACP Guide](docs/ACP.md)
749
+ - [A2A Guide](docs/A2A.md)
749
750
  - [Plugin Guide](docs/plugins.md)
750
751
  - [Validation Runbook](docs/VALIDATION.md)
751
752
  - [Release Runbook](RELEASE.md)
package/RELEASE.md CHANGED
@@ -11,11 +11,13 @@ Release target:
11
11
  Run from the repository root:
12
12
 
13
13
  ```bash
14
- bun install
14
+ bun ci
15
+ bun run dependencies:audit
15
16
  bun test
16
17
  bun run typecheck
17
18
  bun run lint
18
19
  bun run build
20
+ bun run release:check
19
21
  node ./bin/ur.js --version
20
22
  node ./bin/ur.js --help
21
23
  node ./bin/ur.js upgrade
@@ -28,7 +30,7 @@ before release:
28
30
 
29
31
  ```bash
30
32
  bun run release:create-source-zip
31
- bun run release:check-source-zip -- artifacts/source/ur-agent-$(node -p "require('./package.json').version")-source.zip
33
+ bun run release:check-source-zip -- artifacts/source/ur-nexus-$(node -p "require('./package.json').version")-source.zip
32
34
  ```
33
35
 
34
36
  The source zip must contain source inputs such as `package.json`, `bun.lock`,
@@ -52,14 +54,15 @@ rg -n "Version [0-9]|expected: [0-9]|UR-Nexus v[0-9]" README.md docs documentati
52
54
  bun test test/docsCoverage.test.ts test/docsCommands.test.ts
53
55
  ```
54
56
 
55
- Version bump checklist (all three must move together):
57
+ Version bump checklist (all versioned release surfaces must move together):
56
58
 
57
59
  1. `package.json` `version`
58
60
  2. `bunfig.toml` `MACRO.VERSION`
59
61
  3. `documentation/index.html` version eyebrow
60
- 4. `extensions/vscode-ur-inline-diffs/package.json` `version` (the VSIX test
61
- requires it to match the root package version)
62
- 5. Add a `CHANGELOG.md` entry, then run `bun run build` so `dist/cli.js`
62
+ 4. `extensions/vscode-ur-inline-diffs/package.json` and its lockfile version
63
+ fields (the VSIX test requires them to match the root package version)
64
+ 5. `extensions/jetbrains-ur/build.gradle.kts` `version`
65
+ 6. Add a `CHANGELOG.md` entry, then run `bun run build` so `dist/cli.js`
63
66
  embeds the new version (`bun run release:check` verifies all of this).
64
67
 
65
68
  If `npm whoami` fails, run: