ur-agent 1.13.7 → 1.13.9
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 +50 -0
- package/README.md +11 -0
- package/dist/cli.js +2816 -1068
- package/docs/AGENT_FEATURES.md +30 -0
- package/docs/AGENT_TRENDS.md +28 -0
- package/docs/USAGE.md +16 -0
- package/docs/VALIDATION.md +21 -1
- package/documentation/app.js +88 -12
- package/documentation/index.html +71 -1
- package/examples/agent_features.md +14 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,55 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.13.9
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **Spec-driven development (`ur spec`).** Scaffolds `requirements.md ->
|
|
7
|
+
design.md -> tasks.md` plus a phase/approval `spec.json` under `.ur/specs/`,
|
|
8
|
+
then drives execution task-by-task through a headless agent, checking off each
|
|
9
|
+
task on a PASS verdict. Tasks use the GitHub Spec Kit / Kiro `- [ ] T1: ...`
|
|
10
|
+
checkbox format, so lists are drop-in portable. `generate` can model-fill a
|
|
11
|
+
phase; scaffolding and task parsing stay pure and offline.
|
|
12
|
+
- **In-loop model escalation / local Oracle (`ur escalate`).** Picks a fast tier
|
|
13
|
+
and a strong "oracle" tier from `ur model-doctor`, starts routine work on the
|
|
14
|
+
fast model, and auto-escalates hard reasoning/debug/review (or a failed cheap
|
|
15
|
+
attempt) to the oracle. `escalate oracle` gets a one-shot second opinion;
|
|
16
|
+
`escalate policy` pins tiers. Tier selection and difficulty scoring are
|
|
17
|
+
deterministic and testable.
|
|
18
|
+
- **Multi-agent best-of-N judging (`ur arena`).** Runs N agents on the same task
|
|
19
|
+
in isolated git worktrees, judges the resulting diffs with the deterministic
|
|
20
|
+
self-review gate plus verdict/diff-shape heuristics, surfaces the winner, and
|
|
21
|
+
can `--apply` it. Local-first take on parallel-agent judging.
|
|
22
|
+
- **Self-healing CI loop (`ur ci-loop`).** Runs a build/test command and, on
|
|
23
|
+
failure, summarizes the error, hands it to a fix agent, and re-runs with a
|
|
24
|
+
bounded retry budget; `--commit`/`--push` are gated by the self-review check so
|
|
25
|
+
a fix can never push secrets. `--from-log` seeds the first failure from a log.
|
|
26
|
+
- **Verifiable artifacts surface (`ur artifacts`).** Records reviewable
|
|
27
|
+
deliverables (plans, diffs, test runs, screenshots) under `.ur/artifacts/`
|
|
28
|
+
with pending/approved/rejected status and threaded feedback; `capture-diff`
|
|
29
|
+
and `capture-tests` snapshot the working tree and test output for audit.
|
|
30
|
+
|
|
31
|
+
### Verified
|
|
32
|
+
- Added focused unit suites for escalation, arena judging, the spec workflow,
|
|
33
|
+
the CI loop, and artifacts (26 tests); rebuilt `dist/cli.js` and verified
|
|
34
|
+
typecheck, the full test suite, release check, package check, secret scan,
|
|
35
|
+
version output, npm publish dry-run, and direct CLI smoke tests for
|
|
36
|
+
`ur spec`, `ur arena`, and `ur escalate`.
|
|
37
|
+
|
|
38
|
+
## 1.13.8
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
- **Image paste resize fallback.** Clipboard image paste now falls back to
|
|
42
|
+
macOS `sips` when the normal Sharp/native resize path cannot process an
|
|
43
|
+
oversized pasted image.
|
|
44
|
+
- **Under-limit image passthrough.** Images whose base64 payload is already
|
|
45
|
+
within the API limit now pass through even if local dimension downsampling
|
|
46
|
+
fails, avoiding unnecessary `Unable to resize image` paste failures.
|
|
47
|
+
|
|
48
|
+
### Verified
|
|
49
|
+
- Rebuilt `dist/cli.js` at 1.13.8 and verified focused image resize tests,
|
|
50
|
+
typecheck, full test suite, release check, package check, secret scan, and
|
|
51
|
+
npm publish dry-run.
|
|
52
|
+
|
|
3
53
|
## 1.13.7
|
|
4
54
|
|
|
5
55
|
### Added
|
package/README.md
CHANGED
|
@@ -99,6 +99,17 @@ ur mcp --help
|
|
|
99
99
|
ur plugin --help
|
|
100
100
|
```
|
|
101
101
|
|
|
102
|
+
Agent platform examples:
|
|
103
|
+
|
|
104
|
+
```sh
|
|
105
|
+
ur spec init demo --goal "1. add a utils.add function 2. add a test"
|
|
106
|
+
ur spec run demo --all --dry-run
|
|
107
|
+
ur arena "implement a debounce helper" --agents 2 --dry-run
|
|
108
|
+
ur escalate run "refactor the cache layer" --force-oracle --dry-run
|
|
109
|
+
ur ci-loop --command "bun test" --dry-run
|
|
110
|
+
ur artifacts capture-diff
|
|
111
|
+
```
|
|
112
|
+
|
|
102
113
|
## Documentation
|
|
103
114
|
|
|
104
115
|
- [Usage Guide](docs/USAGE.md)
|