ur-agent 1.22.4 → 1.22.5

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/dist/cli.js +1615 -1049
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -30,6 +30,21 @@
30
30
  repo file classification, symbol/call/test/doc/config extraction, and index
31
31
  round-trips.
32
32
 
33
+ ## 1.22.5
34
+
35
+ ### Added
36
+ - **Real sandbox core architecture (`ur sandbox`).** New first-class command to inspect sandbox status, run dependency checks, initialize `.ur/safety-policy.json`, and evaluate shell-command approval levels.
37
+ - **Worktree-per-task (`ur task`).** New command surface to start, run, list, and hand off agent tasks in isolated git branches/worktrees: `task start <name> [--worktree]`, `task run <id>`, `task pr <id> [--create]`, `task list`, `task status <id>`.
38
+ - **PR-quality output formatter (`src/services/agents/prSummary.ts`).** Every task/PR result includes summary, changed files, tests to run, risks, rollback command, and remaining TODOs.
39
+ - **Failure memory (`src/services/agents/failureMemory.ts`).** Failed shell commands are recorded in project memory via `BashTool.tsx`, and similar previous failures are surfaced as hints in subsequent errors.
40
+
41
+ ### Changed
42
+ - Registered `sandbox` and `task` commands in `src/commands.ts` and `src/main.tsx`.
43
+ - Failure path in `src/tools/BashTool/BashTool.tsx` now records failures and prepends historical hints.
44
+
45
+ ### Verified
46
+ - `bun run typecheck`, `bun run lint`, `bun run test` (500 pass), `bun run bundle`, and `bun run smoke` all pass.
47
+
33
48
  ## 1.22.4
34
49
 
35
50
  ### Added