ur-agent 1.12.3 → 1.13.1

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 CHANGED
@@ -1,5 +1,38 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.13.1
4
+
5
+ ### Added
6
+ - **AGENTS.md as runtime context.** UR now loads `AGENTS.md` (the cross-tool
7
+ standard) from project roots at runtime, alongside `UR.md` and `.ur/rules/`.
8
+ It is loaded *before* `UR.md` so a repo's native `UR.md` keeps higher
9
+ priority when both exist — drop-in compatibility with repos already using
10
+ the standard, with zero setup.
11
+ - **Semantic code index + CodeSearch.** New local, embedding-based code search.
12
+ `ur code-index build|search|status` builds an incremental vector index of the
13
+ repository using the local Ollama app (embedding model configurable via
14
+ `UR_CODE_INDEX_EMBED_MODEL`, default `nomic-embed-text`). When `UR_CODE_INDEX`
15
+ is set, an opt-in read-only `CodeSearch` tool lets the agent find code by
16
+ meaning alongside Grep/Glob. Fully local-first; no extra provider config.
17
+ - **OS-level execution sandbox.** UR's sandbox now actually enforces on macOS
18
+ (Seatbelt via `sandbox-exec`) and Linux/WSL (bubblewrap), confining writes to
19
+ the workspace + temp dirs. Enable with `sandbox.enabled: true`; block network
20
+ egress with `UR_SANDBOX_BLOCK_NETWORK`. Reads remain unrestricted.
21
+ - **Self-review gate before PRs.** `ur agent-task pr --create` now runs a
22
+ deterministic self-review of the diff first and blocks PR creation on
23
+ high-severity findings (merge-conflict markers, hardcoded secrets, focused
24
+ tests). Override with `--force`, or skip with `--no-review`.
25
+ - **Named role modes.** `ur role-mode list|show|install` ships Architect, Code,
26
+ Debug, and Ask roles with scoped toolsets and role prompts, installable as
27
+ `.ur/agents/*.md` so they work with the existing Agent tool and `/agents`.
28
+
29
+ ### Fixed
30
+ - **Image paste hint.** When the clipboard holds no image, the image paste
31
+ shortcut (`ctrl+v`, `alt+v` on Windows) no longer shows a circular "use
32
+ ctrl+v to paste images" message — the very key that was just pressed. It now
33
+ tells you to copy an image (e.g. a screenshot) first, then press the shortcut
34
+ to paste it. SSH sessions keep the existing `scp` hint.
35
+
3
36
  ## 1.12.3
4
37
 
5
38
  ### Added