ur-agent 1.44.7 → 1.44.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 +17 -0
- package/README.md +4 -0
- package/dist/cli.js +426 -163
- package/docs/CONFIGURATION.md +9 -0
- package/documentation/index.html +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.44.9
|
|
4
|
+
|
|
5
|
+
- Fix recurring "String to replace not found in file" Edit errors by adding
|
|
6
|
+
whitespace-tolerant matching (trailing whitespace, tab/space indentation).
|
|
7
|
+
- Fix AskUserQuestion "questions type expected as array" validation errors by
|
|
8
|
+
parsing stringified `questions`/`options` from small local models.
|
|
9
|
+
|
|
10
|
+
## 1.44.8
|
|
11
|
+
|
|
12
|
+
- Keep auto-memory and automatic learning on by default with explicit opt-outs.
|
|
13
|
+
Automatic learning can now be disabled with `automaticLearningEnabled: false`
|
|
14
|
+
or `UR_CODE_DISABLE_AUTO_LEARNING=1`.
|
|
15
|
+
- Make `/remember <text>` promote explicit notes into recallable auto-memory
|
|
16
|
+
topic files when auto-memory is enabled.
|
|
17
|
+
- Reduce recall token load by prefiltering memory candidates before the
|
|
18
|
+
selector model and surfacing fewer, smaller high-confidence memories.
|
|
19
|
+
|
|
3
20
|
## 1.44.7
|
|
4
21
|
|
|
5
22
|
- Add `autoApprove` permission mode for command/tool approval prompts. It
|
package/README.md
CHANGED
|
@@ -638,6 +638,10 @@ the permission boundary matters.
|
|
|
638
638
|
rules.
|
|
639
639
|
- `ur context-pack scan` writes a repo architecture manifest from package
|
|
640
640
|
scripts, instruction files, `.ur/verify.json`, and safety config.
|
|
641
|
+
- Auto-memory and automatic learning are enabled by default. Auto-memory can be
|
|
642
|
+
disabled with `autoMemoryEnabled: false`; automatic learning can be disabled
|
|
643
|
+
with `automaticLearningEnabled: false`. The automatic learning path writes
|
|
644
|
+
local JSON stats only and uses no model tokens.
|
|
641
645
|
- The deep verification subagent is available through `/verify` and can be
|
|
642
646
|
auto-enabled with `UR_VERIFIER_AUTO_SUBAGENT=1`.
|
|
643
647
|
- UR enforces permission and sandbox policy before running UR Bash/File
|