ur-agent 1.20.0 → 1.21.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,34 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.21.0
4
+
5
+ ### Added
6
+ - **Agent skill runner (`agentSkillRunner.ts`).** Reusable helper that wraps
7
+ `startBackgroundTask({ worktree: true, pr: true })`, polls the background
8
+ manifest to completion, and returns a PR-style summary with branch, commits,
9
+ PR URL, and diff summary.
10
+ - **New slash skills for agent worktrees.** Added `/debug-v2`, `/refactor`,
11
+ `/paper-implementation`, `/benchmark`, `/security-review`, `/dockerize`, and
12
+ `/latex-paper` bundled slash skills. Each expands into a prompt that instructs
13
+ the model to work in an isolated git worktree and produce a clean branch,
14
+ commits, and PR.
15
+ - **Matching agent templates.** Added `debug-v2`, `refactor`, `paper-implementation`,
16
+ `benchmark`, `security-review`, `dockerize`, and `latex-paper` templates to
17
+ `AGENT_TEMPLATES`; install them with `ur agent-templates install`.
18
+ - **`ur worktree` command.** Added `ur worktree list|status|clean` to inspect
19
+ and clean up UR agent worktrees created by background runs.
20
+
21
+ ### Changed
22
+ - **Background runner exports.** Exported `commitIfNeeded` and `createPullRequest`
23
+ from `backgroundRunner.ts` so the agent skill runner can inspect and finalize
24
+ PR state.
25
+ - **Version bump.** Updated from 1.20.0 to 1.21.0 across `package.json`,
26
+ `bunfig.toml`, the VS Code extension manifest, and the bundled CLI.
27
+
28
+ ### Verified
29
+ - Added tests for the agent skill runner, each new bundled skill, and the new
30
+ `ur worktree` command.
31
+
3
32
  ## 1.20.0
4
33
 
5
34
  ### Added
package/README.md CHANGED
@@ -132,6 +132,7 @@ as first-class subcommands in the shipped CLI.
132
132
  | `ur safety` | Inspect or initialize project shell safety policy and evaluate command risk before execution. |
133
133
  | `ur context-pack` | Write project architecture context, task memory, and compressed context under `.ur/`. |
134
134
  | `ur bg` | Run and manage detached local background agents with optional worktrees and PR creation. |
135
+ | `ur worktree` | List, inspect, and clean up UR agent worktrees. |
135
136
  | `ur automation` | Store and run project-local scheduled automation specs under `.ur/automations/`. |
136
137
  | `ur workflow` | Define, validate, graph, run, and resume declarative agent workflows. |
137
138
  | `ur crew` | Run a lead and worker subagent crew over a shared task board. |
@@ -156,6 +157,10 @@ as first-class subcommands in the shipped CLI.
156
157
  | `ur a2a serve` | Start an opt-in local A2A task server with bearer or delegation auth. |
157
158
  | `ur sdk` | Show programmatic headless usage and scaffold SDK examples. |
158
159
 
160
+ New slash skills run agentic work in isolated git worktrees with clean commits and PR output:
161
+ `/debug-v2`, `/refactor`, `/paper-implementation`, `/benchmark`, `/security-review`, `/dockerize`, `/latex-paper`.
162
+ Install matching agent templates with `ur agent-templates install`.
163
+
159
164
  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
165
 
161
166
  Examples: