ur-agent 1.19.0 → 1.20.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 +35 -0
- package/README.md +7 -0
- package/dist/cli.js +3849 -2297
- package/docs/AGENT_FEATURES.md +16 -0
- package/docs/AGENT_TRENDS.md +4 -0
- package/docs/AGENT_UPGRADE_1.20.0.md +42 -0
- package/docs/USAGE.md +4 -0
- package/documentation/app.js +14 -0
- package/documentation/index.html +14 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.20.0
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **ACP server (`ur acp`).** Added an HTTP+JSON-RPC Agent Communication
|
|
7
|
+
Protocol server for IDE extensions. Supports `initialize`, `tools/list`,
|
|
8
|
+
`tools/call`, `tasks/send`, `tasks/get`, `tasks/cancel`, and `shutdown`.
|
|
9
|
+
Runs on `127.0.0.1:8123` by default with optional bearer-token auth.
|
|
10
|
+
- **`ur exec` pool execution.** Added a non-interactive pool command that runs
|
|
11
|
+
one or more prompts with optional concurrency, worktrees, output capture,
|
|
12
|
+
and dry-run mode.
|
|
13
|
+
- **GitHub tool.** Added `GitHubTool` for PR/issue/repo operations via the
|
|
14
|
+
`gh` CLI.
|
|
15
|
+
- **API tool.** Added `ApiTool` for REST HTTP calls with JSON/text output.
|
|
16
|
+
- **Browser tool.** Added `BrowserTool` for headless browser automation
|
|
17
|
+
(fetch/goto/click/type/evaluate/screenshot). Disabled by default; enable
|
|
18
|
+
with `UR_BROWSER_TOOL=1`.
|
|
19
|
+
- **Docker tool.** Added `DockerTool` wrapping the `docker` CLI for container
|
|
20
|
+
and compose operations.
|
|
21
|
+
- **Test-runner tool.** Added `TestRunnerTool` that auto-detects the project
|
|
22
|
+
test command from `package.json` scripts, `Makefile`, `Cargo.toml`,
|
|
23
|
+
`pyproject.toml`, or `go.mod`.
|
|
24
|
+
- **Database tool.** Added `DatabaseTool` for SQL queries against SQLite,
|
|
25
|
+
Postgres, MySQL, and DuckDB.
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
- **Tool surface.** File-system and terminal tools (`FileRead`, `FileEdit`,
|
|
29
|
+
`FileWrite`, `Glob`, `Grep`, `Bash`, `PowerShell`) are now automatically
|
|
30
|
+
exposed through the existing MCP server and the new ACP server.
|
|
31
|
+
- **Version bump.** Updated from 1.19.0 to 1.20.0 across `package.json`,
|
|
32
|
+
`bunfig.toml`, the VS Code extension manifest, and the bundled CLI.
|
|
33
|
+
|
|
34
|
+
### Verified
|
|
35
|
+
- Added focused tests for the ACP server/client, `ur exec`, GitHub tool,
|
|
36
|
+
API tool, browser tool, Docker tool, test-runner tool, and database tool.
|
|
37
|
+
|
|
3
38
|
## 1.19.0
|
|
4
39
|
|
|
5
40
|
### Added
|
package/README.md
CHANGED
|
@@ -149,11 +149,15 @@ as first-class subcommands in the shipped CLI.
|
|
|
149
149
|
| `ur mcp` | Configure and manage Model Context Protocol servers. |
|
|
150
150
|
| `ur plugin` | Install, update, enable, disable, and validate UR plugins. |
|
|
151
151
|
| `ur role-mode` | Install built-in Architect, Code, Debug, and Ask role modes. |
|
|
152
|
+
| `ur acp` | Start/stop/status the Agent Communication Protocol server for IDE extensions. |
|
|
153
|
+
| `ur exec` | Run one or more prompts in non-interactive mode with optional concurrency. |
|
|
152
154
|
| `ur ide diff` | Capture editor-readable inline diff bundles. |
|
|
153
155
|
| `ur a2a card` | Print UR Agent Card metadata for agent interoperability. |
|
|
154
156
|
| `ur a2a serve` | Start an opt-in local A2A task server with bearer or delegation auth. |
|
|
155
157
|
| `ur sdk` | Show programmatic headless usage and scaffold SDK examples. |
|
|
156
158
|
|
|
159
|
+
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).
|
|
160
|
+
|
|
157
161
|
Examples:
|
|
158
162
|
|
|
159
163
|
```sh
|
|
@@ -176,6 +180,8 @@ ur repo-edit apply rename oldName --to newName --check "bun test"
|
|
|
176
180
|
ur code-index search "where is the rate limiter configured"
|
|
177
181
|
ur artifacts capture-tests --command "bun test"
|
|
178
182
|
ur agent-task pr --create --dry-run
|
|
183
|
+
ur acp serve --port 8123
|
|
184
|
+
ur exec "add tests for the parser" --concurrency 4 --json
|
|
179
185
|
```
|
|
180
186
|
|
|
181
187
|
## Project Context
|
|
@@ -285,6 +291,7 @@ CLI. Rebuild it after source, version, or macro changes.
|
|
|
285
291
|
- [Configuration](docs/CONFIGURATION.md)
|
|
286
292
|
- [Agent Feature Expansion](docs/AGENT_FEATURES.md)
|
|
287
293
|
- [Agent Trend Coverage](docs/AGENT_TRENDS.md)
|
|
294
|
+
- [1.20.0 Upgrade Notes](docs/AGENT_UPGRADE_1.20.0.md)
|
|
288
295
|
- [1.19.0 Upgrade Notes](docs/AGENT_UPGRADE_1.19.0.md)
|
|
289
296
|
- [1.18.0 Upgrade Notes](docs/AGENT_UPGRADE_1.18.0.md)
|
|
290
297
|
- [1.17.0 Upgrade Notes](docs/AGENT_UPGRADE_1.17.0.md)
|