ur-agent 1.45.2 → 1.45.3
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 +16 -0
- package/README.md +2 -2
- package/dist/cli.js +3402 -2092
- package/docs/AGENT_FEATURES.md +1 -1
- package/docs/TROUBLESHOOTING.md +7 -0
- package/docs/VALIDATION.md +1 -1
- package/documentation/index.html +1 -1
- package/extensions/jetbrains-ur/build.gradle.kts +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.45.3
|
|
4
|
+
|
|
5
|
+
- Made slash-command resolution deterministic across bundled skills, plugins,
|
|
6
|
+
project skills, workflows, and built-ins. Duplicate canonical tokens are
|
|
7
|
+
rejected by source priority and conflicting aliases are removed; registry
|
|
8
|
+
tests now verify every shipped command token, description, and lazy loader.
|
|
9
|
+
- Removed overlapping `/paper`, `/security`, `/audit`, `/skills`, and
|
|
10
|
+
`/sandbox` registrations. The single `/sandbox` command now provides both
|
|
11
|
+
interactive settings and `status`, `check`, `init`, `eval`, and `exclude`
|
|
12
|
+
subcommands.
|
|
13
|
+
- Added `/ci-loop --cwd <path>` and working-directory evidence. Test-runner
|
|
14
|
+
"No tests found" failures now stop after one attempt with actionable cwd
|
|
15
|
+
guidance instead of invoking a fix agent repeatedly.
|
|
16
|
+
- Serialized concurrent artifact-viewer startup so simultaneous callers share
|
|
17
|
+
one server and one reported URL.
|
|
18
|
+
|
|
3
19
|
## 1.45.2
|
|
4
20
|
|
|
5
21
|
Correctness and containment release completing the runtime audit.
|
package/README.md
CHANGED
|
@@ -362,7 +362,7 @@ as first-class subcommands in the shipped CLI.
|
|
|
362
362
|
| `ur spec` | Default spec-first workflow: create requirements, design, and task documents under `.ur/specs/`, run the task list, and verify with strict proof gates. |
|
|
363
363
|
| `ur escalate` | Plan or run work with fast and oracle model tiers selected from local model capabilities. |
|
|
364
364
|
| `ur arena` | Run multiple agents on the same task in isolated worktrees and surface the winning diff. |
|
|
365
|
-
| `ur ci-loop` | Run a build or test command, hand failures to a fix agent, and retry with a bounded budget. |
|
|
365
|
+
| `ur ci-loop` | Run a build or test command in an explicit working directory, hand failures to a fix agent, and retry with a bounded budget. |
|
|
366
366
|
| `ur test-first` | Detect the project stack, run compile/test/lint commands, store failure traces, and install edit-time verify gates. |
|
|
367
367
|
| `ur safety` | Inspect or initialize project shell safety policy and evaluate command risk before execution. |
|
|
368
368
|
| `ur sandbox` | Inspect and manage the sandbox/permission architecture: status, dependency check, policy init, and command approval levels. |
|
|
@@ -556,7 +556,7 @@ ur context-pack remember --accepted "Use p-map for bounded concurrency" --scope
|
|
|
556
556
|
ur context-pack remember --rejected "Switch to esbuild" --alternative-to "Keep bun bundle"
|
|
557
557
|
ur context-pack remember --attempt "Tried Deno runtime" --status superseded
|
|
558
558
|
ur context-pack compress
|
|
559
|
-
ur ci-loop --command "bun test" --max-attempts 3 --dry-run
|
|
559
|
+
ur ci-loop --command "bun test" --cwd . --max-attempts 3 --dry-run
|
|
560
560
|
ur bg run "fix the flaky parser test" --worktree --dry-run
|
|
561
561
|
ur automation create nightly --schedule "0 9 * * 1-5" --prompt "Review open tasks"
|
|
562
562
|
ur repo-edit preview rename oldName --to newName
|