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/docs/CONFIGURATION.md
CHANGED
|
@@ -270,6 +270,15 @@ Recommended Git behavior:
|
|
|
270
270
|
- Do not commit generated `.ur/index/`, `.ur/memory/`, `.ur/cache/`, `.ur/tmp/`, or `.ur/logs/`.
|
|
271
271
|
- Do not commit `UR.local.md`.
|
|
272
272
|
|
|
273
|
+
Memory and learning defaults:
|
|
274
|
+
|
|
275
|
+
- Auto-memory is enabled by default. Disable with `autoMemoryEnabled: false`,
|
|
276
|
+
`UR_CODE_DISABLE_AUTO_MEMORY=1`, or `--bare`.
|
|
277
|
+
- Automatic learning is enabled by default. Disable with
|
|
278
|
+
`automaticLearningEnabled: false` or `UR_CODE_DISABLE_AUTO_LEARNING=1`.
|
|
279
|
+
- Automatic learning folds local outcome stats only; it does not call a model
|
|
280
|
+
unless you explicitly run `/learn run --reflect`.
|
|
281
|
+
|
|
273
282
|
## Verifier
|
|
274
283
|
|
|
275
284
|
UR runs a lightweight verifier in the agent loop (L1) to catch false "task
|
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.44.
|
|
47
|
+
<p class="eyebrow">Version 1.44.9</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.44.
|
|
5
|
+
"version": "1.44.9",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED