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/docs/AGENT_FEATURES.md
CHANGED
|
@@ -273,7 +273,7 @@ runners, so the core logic is deterministic and unit-tested offline.
|
|
|
273
273
|
| Spec-driven development | `ur spec init\|generate\|approve\|run\|status` + `.ur/specs/` | requirements -> design -> tasks documents and a phase/approval record; executes the Spec Kit / Kiro `- [ ] T1: ...` task list one task at a time, checking off each PASS |
|
|
274
274
|
| In-loop model escalation | `ur escalate plan\|run\|oracle\|policy` + `.ur/escalation.json` | capability-aware fast/oracle tiers from `model-doctor`; routine work runs fast and auto-escalates hard/failed work to the strong model; `oracle` is a one-shot second opinion |
|
|
275
275
|
| Best-of-N judging | `ur arena "<task>" [--agents N] [--apply]` | runs N agents on one task in isolated worktrees, scores diffs with the self-review gate + verdict/diff heuristics, surfaces (optionally applies) the winner |
|
|
276
|
-
| Self-healing CI loop | `ur ci-loop [--command ...] [--commit] [--push]` | run -> on failure summarize -> fix agent -> re-run, bounded by retries; commits/pushes are self-review gated; `--from-log` seeds the first failure |
|
|
276
|
+
| Self-healing CI loop | `ur ci-loop [--command ...] [--cwd ...] [--commit] [--push]` | run -> on failure summarize -> fix agent -> re-run, bounded by retries; no-test failures stop immediately with cwd guidance; commits/pushes are self-review gated; `--from-log` seeds the first failure |
|
|
277
277
|
| Verifiable artifacts | `ur artifacts add\|capture-diff\|capture-tests\|approve\|reject` + `.ur/artifacts/` | reviewable deliverables with pending/approved/rejected status and threaded feedback; threads into the provenance stack (`claim-ledger`, `trace`, `evidence`) |
|
|
278
278
|
|
|
279
279
|
### Commands
|
package/docs/TROUBLESHOOTING.md
CHANGED
|
@@ -186,6 +186,13 @@ ur ci-loop --command "bun test" --max-attempts 3
|
|
|
186
186
|
ur test-first detect
|
|
187
187
|
```
|
|
188
188
|
|
|
189
|
+
If the runner says "No tests found", check the working directory printed by
|
|
190
|
+
the result and run from the test root or pass it explicitly:
|
|
191
|
+
|
|
192
|
+
```sh
|
|
193
|
+
ur ci-loop --command "bun test" --cwd ./packages/app --max-attempts 3
|
|
194
|
+
```
|
|
195
|
+
|
|
189
196
|
## Integrations
|
|
190
197
|
|
|
191
198
|
### Plugin fails to load
|
package/docs/VALIDATION.md
CHANGED
|
@@ -287,7 +287,7 @@ ur escalate run "refactor the cache layer" --force-oracle --dry-run
|
|
|
287
287
|
ur test-first --dry-run
|
|
288
288
|
ur safety check --command "rm -rf build"
|
|
289
289
|
ur context-pack scan
|
|
290
|
-
ur ci-loop --command "bun test" --dry-run
|
|
290
|
+
ur ci-loop --command "bun test" --cwd . --dry-run
|
|
291
291
|
ur artifacts capture-tests --command "bun test"
|
|
292
292
|
```
|
|
293
293
|
|
package/documentation/index.html
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
<main id="content" class="content">
|
|
45
45
|
<header class="topbar">
|
|
46
46
|
<div>
|
|
47
|
-
<p class="eyebrow">Version 1.45.
|
|
47
|
+
<p class="eyebrow">Version 1.45.3</p>
|
|
48
48
|
<h1>UR-Nexus Documentation</h1>
|
|
49
49
|
<p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-Nexus.</p>
|
|
50
50
|
</div>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ur-inline-diffs",
|
|
3
3
|
"displayName": "UR Inline Diffs",
|
|
4
4
|
"description": "Review, apply, and reject UR inline diff bundles from .ur/ide/diffs inside VS Code.",
|
|
5
|
-
"version": "1.45.
|
|
5
|
+
"version": "1.45.3",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED