ur-agent 1.13.0 → 1.13.2
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 +47 -1
- package/dist/cli.js +3081 -1672
- package/docs/AGENT_FEATURES.md +23 -0
- package/docs/AGENT_TRENDS.md +7 -1
- package/docs/VALIDATION.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,52 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 1.13.
|
|
3
|
+
## 1.13.2
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **Top-level code-index and role-mode commands.** `ur code-index` and
|
|
7
|
+
`ur role-mode` are now registered in the main CLI, matching the shipped
|
|
8
|
+
command modules and help output.
|
|
9
|
+
- **Agent-task review controls.** `ur agent-task` now exposes `--force` and
|
|
10
|
+
`--no-review` so PR creation can either override or skip the self-review gate
|
|
11
|
+
intentionally.
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- **Self-review PR diff coverage.** The pre-PR self-review now resolves a real
|
|
15
|
+
base ref across local and remote branch names, includes committed branch
|
|
16
|
+
changes, tracked working-tree changes, and untracked files.
|
|
17
|
+
- **macOS image paste reliability.** Clipboard image detection now recognizes
|
|
18
|
+
TIFF-only pasteboard images, converts TIFF/BMP payloads to PNG before upload,
|
|
19
|
+
and surfaces real image-read failures instead of reporting "no image found."
|
|
20
|
+
|
|
21
|
+
### Verified
|
|
22
|
+
- Rebuilt `dist/cli.js` at 1.13.2 and verified npm package metadata resolves
|
|
23
|
+
to `ur-agent@1.13.2`.
|
|
24
|
+
|
|
25
|
+
## 1.13.1
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
- **AGENTS.md as runtime context.** UR now loads `AGENTS.md` (the cross-tool
|
|
29
|
+
standard) from project roots at runtime, alongside `UR.md` and `.ur/rules/`.
|
|
30
|
+
It is loaded *before* `UR.md` so a repo's native `UR.md` keeps higher
|
|
31
|
+
priority when both exist — drop-in compatibility with repos already using
|
|
32
|
+
the standard, with zero setup.
|
|
33
|
+
- **Semantic code index + CodeSearch.** New local, embedding-based code search.
|
|
34
|
+
`ur code-index build|search|status` builds an incremental vector index of the
|
|
35
|
+
repository using the local Ollama app (embedding model configurable via
|
|
36
|
+
`UR_CODE_INDEX_EMBED_MODEL`, default `nomic-embed-text`). When `UR_CODE_INDEX`
|
|
37
|
+
is set, an opt-in read-only `CodeSearch` tool lets the agent find code by
|
|
38
|
+
meaning alongside Grep/Glob. Fully local-first; no extra provider config.
|
|
39
|
+
- **OS-level execution sandbox.** UR's sandbox now actually enforces on macOS
|
|
40
|
+
(Seatbelt via `sandbox-exec`) and Linux/WSL (bubblewrap), confining writes to
|
|
41
|
+
the workspace + temp dirs. Enable with `sandbox.enabled: true`; block network
|
|
42
|
+
egress with `UR_SANDBOX_BLOCK_NETWORK`. Reads remain unrestricted.
|
|
43
|
+
- **Self-review gate before PRs.** `ur agent-task pr --create` now runs a
|
|
44
|
+
deterministic self-review of the diff first and blocks PR creation on
|
|
45
|
+
high-severity findings (merge-conflict markers, hardcoded secrets, focused
|
|
46
|
+
tests). Override with `--force`, or skip with `--no-review`.
|
|
47
|
+
- **Named role modes.** `ur role-mode list|show|install` ships Architect, Code,
|
|
48
|
+
Debug, and Ask roles with scoped toolsets and role prompts, installable as
|
|
49
|
+
`.ur/agents/*.md` so they work with the existing Agent tool and `/agents`.
|
|
4
50
|
|
|
5
51
|
### Fixed
|
|
6
52
|
- **Image paste hint.** When the clipboard holds no image, the image paste
|