agenr 0.9.45 → 0.9.46
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 +31 -0
- package/dist/chunk-EXIGIZPC.js +9017 -0
- package/dist/chunk-IC57MIM7.js +3340 -0
- package/dist/chunk-M3LTEEVG.js +3340 -0
- package/dist/chunk-RCAMOFHM.js +9017 -0
- package/dist/cli-main.d.ts +1 -0
- package/dist/cli-main.js +4 -4
- package/dist/maintain-LPPSE5T4.js +3402 -0
- package/dist/maintain-OVOMLVFT.js +3549 -0
- package/dist/maintain-XP45BIKO.js +3544 -0
- package/dist/openclaw-plugin/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.9.46 (2026-03-02)
|
|
4
|
+
|
|
5
|
+
### Improvements
|
|
6
|
+
|
|
7
|
+
- Rewrote reflection verification prompt to evaluate synthesis quality instead of completeness (#411)
|
|
8
|
+
- Replaces fact-checker framing with synthesis quality reviewer
|
|
9
|
+
- Checks accuracy (misrepresentation) separately from theme coverage
|
|
10
|
+
- Omissions are expected and no longer penalized
|
|
11
|
+
- Lowered default reflection coverage threshold from 0.7 to 0.5
|
|
12
|
+
- Added parse error retry with JSON-only nudge and permissive fallback
|
|
13
|
+
- Parallelized reflection cluster processing in configurable batches to reduce maintain runtime overhead (#409)
|
|
14
|
+
- Adds `maintain.reflectionConcurrency` (default `5`) for batch size control
|
|
15
|
+
- Moves per-cluster work into a standalone `processCluster` flow
|
|
16
|
+
- Adds per-batch progress logging with estimated minutes remaining
|
|
17
|
+
- Adds SQLITE_BUSY retry/backoff for reflection write transactions under concurrent load
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- Bumped OpenClaw plugin store timeout from 10s to 30s to prevent agenr_store timeouts with larger brains (#412)
|
|
22
|
+
|
|
23
|
+
- Eliminated ~25% false negative verification failures caused by prompt bias
|
|
24
|
+
|
|
3
25
|
## 0.9.45 (2026-03-02)
|
|
4
26
|
|
|
5
27
|
### Features
|
|
@@ -10,6 +32,7 @@
|
|
|
10
32
|
|
|
11
33
|
### Bug Fixes
|
|
12
34
|
|
|
35
|
+
|
|
13
36
|
- `maintain --full` now bypasses cluster freshness guard (#399)
|
|
14
37
|
|
|
15
38
|
## 0.9.44 (2026-03-02)
|
|
@@ -37,6 +60,7 @@
|
|
|
37
60
|
|
|
38
61
|
### Bug Fixes
|
|
39
62
|
|
|
63
|
+
|
|
40
64
|
- Replace sigmoid scoring compression with sqrt for better score differentiation (#390)
|
|
41
65
|
- Old formula squashed all scores into 0.22-0.26 band (0.033 spread)
|
|
42
66
|
- New sqrt compression gives 0.50-0.67 range (0.17 spread, 5x improvement)
|
|
@@ -72,6 +96,7 @@
|
|
|
72
96
|
- Re-synthesis guards: minimum cumulative importance threshold for changed entries
|
|
73
97
|
|
|
74
98
|
### Bug Fixes
|
|
99
|
+
|
|
75
100
|
- Fix parseSynthesisResponse bailing on first JSON candidate instead of trying alternatives
|
|
76
101
|
- Fix verification prompt missing explicit check instructions
|
|
77
102
|
- Fix demoteEntryImportance/retireReflectionEntry using wall clock instead of injected time
|
|
@@ -343,6 +368,7 @@
|
|
|
343
368
|
cluster storage. (#303)
|
|
344
369
|
|
|
345
370
|
### Bug Fixes
|
|
371
|
+
|
|
346
372
|
- Cluster-aware recall now batches cluster peer lookups into a single
|
|
347
373
|
fetch pass, avoiding per-peer N+1 entry queries. (#303)
|
|
348
374
|
- Cluster-aware recall now applies the cluster bonus symmetrically to
|
|
@@ -364,6 +390,7 @@
|
|
|
364
390
|
## 0.9.25 (2026-02-28)
|
|
365
391
|
|
|
366
392
|
### Bug Fixes
|
|
393
|
+
|
|
367
394
|
- Health command now reads conflict data from conflict_log table instead of
|
|
368
395
|
the never-incremented entries.contradictions column. Shows total conflicts,
|
|
369
396
|
breakdown by relation type, pending count, and auto-resolved count. (#334)
|
|
@@ -377,6 +404,7 @@
|
|
|
377
404
|
## 0.9.24 (2026-02-28)
|
|
378
405
|
|
|
379
406
|
### Bug Fixes
|
|
407
|
+
|
|
380
408
|
- Added storeNudge to openclaw.plugin.json configSchema so OpenClaw accepts
|
|
381
409
|
storeNudge config without validation errors
|
|
382
410
|
|
|
@@ -392,6 +420,7 @@
|
|
|
392
420
|
## 0.9.22 (2026-02-28)
|
|
393
421
|
|
|
394
422
|
### Bug Fixes
|
|
423
|
+
|
|
395
424
|
- OpenClaw plugin: added missing pronouns (You, She, They) to
|
|
396
425
|
FALSE_POSITIVE_NOUNS so short messages like "You there?" correctly
|
|
397
426
|
classify as trivial instead of triggering recall. (#329)
|
|
@@ -414,6 +443,7 @@
|
|
|
414
443
|
## 0.9.20 (2026-02-28)
|
|
415
444
|
|
|
416
445
|
### Bug Fixes
|
|
446
|
+
|
|
417
447
|
- OpenClaw plugin: mid-session recall query now uses the raw current
|
|
418
448
|
message instead of accumulating a sliding window with stop-word
|
|
419
449
|
stripping. Fixes garbled queries that returned irrelevant context.
|
|
@@ -446,6 +476,7 @@
|
|
|
446
476
|
midSessionRecall plugin config.
|
|
447
477
|
|
|
448
478
|
### Bug Fixes
|
|
479
|
+
|
|
449
480
|
- MCP: fix stdout corruption during store and contradiction checks.
|
|
450
481
|
Diagnostic logs in db/store.ts and db/contradiction.ts were writing to
|
|
451
482
|
stdout via console.log, corrupting MCP JSON-RPC framing. Routed all
|