agenr 0.9.43 → 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 +55 -0
- package/dist/chunk-47PIRRGJ.js +8665 -0
- package/dist/chunk-66YFVWW3.js +8750 -0
- package/dist/chunk-A46PT5PY.js +3310 -0
- package/dist/chunk-ERQT4ERH.js +8667 -0
- package/dist/chunk-EXIGIZPC.js +9017 -0
- package/dist/chunk-FNJBBADY.js +8771 -0
- package/dist/chunk-FUSCYKSF.js +3255 -0
- package/dist/chunk-HC3NB6EU.js +3091 -0
- package/dist/chunk-IC57MIM7.js +3340 -0
- package/dist/chunk-IVAX2VDF.js +3337 -0
- package/dist/chunk-KTOU6LRU.js +8644 -0
- package/dist/chunk-M3LTEEVG.js +3340 -0
- package/dist/chunk-PLH2R7WV.js +8580 -0
- package/dist/chunk-RCAMOFHM.js +9017 -0
- package/dist/chunk-RPYLVUKC.js +9017 -0
- package/dist/chunk-RUPWSJO7.js +8812 -0
- package/dist/chunk-TE7W76T7.js +3013 -0
- package/dist/chunk-U7PGTM4S.js +8766 -0
- package/dist/chunk-UBBNTQKK.js +8793 -0
- package/dist/chunk-VEFUHFSO.js +8712 -0
- package/dist/chunk-WAQQ467K.js +8666 -0
- package/dist/cli-main.d.ts +39 -0
- package/dist/cli-main.js +48 -10
- package/dist/maintain-27EIK3FW.js +3356 -0
- package/dist/maintain-3ZJK2DHH.js +3353 -0
- package/dist/maintain-6AAHTGDH.js +3353 -0
- package/dist/maintain-CESESAHV.js +3356 -0
- package/dist/maintain-FO2GQUK6.js +3353 -0
- package/dist/maintain-K7IDIXRG.js +3356 -0
- package/dist/maintain-KJ7UYFPQ.js +3353 -0
- package/dist/maintain-LMEGXCOZ.js +3353 -0
- package/dist/maintain-LPPSE5T4.js +3402 -0
- package/dist/maintain-O4FNLTFI.js +3353 -0
- package/dist/maintain-OQKS3GUG.js +3353 -0
- package/dist/maintain-OVOMLVFT.js +3549 -0
- package/dist/maintain-WYOAUABX.js +3356 -0
- package/dist/maintain-XP45BIKO.js +3544 -0
- package/dist/maintain-ZQOEF5Y7.js +3356 -0
- package/dist/openclaw-plugin/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
|
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
|
+
|
|
25
|
+
## 0.9.45 (2026-03-02)
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
- Reduced default min cluster size from 3 to 2 for better pair clustering (#402)
|
|
30
|
+
- Added subject-match clustering phase for entries sharing exact subjects (#402)
|
|
31
|
+
- Lowered default cosine similarity threshold from 0.72 to 0.68 (#402)
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
- `maintain --full` now bypasses cluster freshness guard (#399)
|
|
37
|
+
|
|
38
|
+
## 0.9.44 (2026-03-02)
|
|
39
|
+
|
|
40
|
+
### Features
|
|
41
|
+
|
|
42
|
+
- Make recall scoring parameters configurable via `scoring.*` config keys (#392)
|
|
43
|
+
- Allows tuning recall weights, boosts, and thresholds without code changes
|
|
44
|
+
- Threads scoring config through recall and session-start recall paths
|
|
45
|
+
- Add graph recall config knobs: graphBonus, graphSeedCount, graphNeighborLimit, graphMinEdgeWeight, graphMinSeedVectorSim (#392)
|
|
46
|
+
- Suppress demoted source entries when their reflection is in recall results (#389)
|
|
47
|
+
- Prevents redundant results when both a reflection and its sources match a query
|
|
48
|
+
- Backfills results to maintain requested limit after suppression
|
|
49
|
+
|
|
3
50
|
## 0.9.43 (2026-03-02)
|
|
4
51
|
|
|
5
52
|
### Features
|
|
@@ -13,6 +60,7 @@
|
|
|
13
60
|
|
|
14
61
|
### Bug Fixes
|
|
15
62
|
|
|
63
|
+
|
|
16
64
|
- Replace sigmoid scoring compression with sqrt for better score differentiation (#390)
|
|
17
65
|
- Old formula squashed all scores into 0.22-0.26 band (0.033 spread)
|
|
18
66
|
- New sqrt compression gives 0.50-0.67 range (0.17 spread, 5x improvement)
|
|
@@ -48,6 +96,7 @@
|
|
|
48
96
|
- Re-synthesis guards: minimum cumulative importance threshold for changed entries
|
|
49
97
|
|
|
50
98
|
### Bug Fixes
|
|
99
|
+
|
|
51
100
|
- Fix parseSynthesisResponse bailing on first JSON candidate instead of trying alternatives
|
|
52
101
|
- Fix verification prompt missing explicit check instructions
|
|
53
102
|
- Fix demoteEntryImportance/retireReflectionEntry using wall clock instead of injected time
|
|
@@ -319,6 +368,7 @@
|
|
|
319
368
|
cluster storage. (#303)
|
|
320
369
|
|
|
321
370
|
### Bug Fixes
|
|
371
|
+
|
|
322
372
|
- Cluster-aware recall now batches cluster peer lookups into a single
|
|
323
373
|
fetch pass, avoiding per-peer N+1 entry queries. (#303)
|
|
324
374
|
- Cluster-aware recall now applies the cluster bonus symmetrically to
|
|
@@ -340,6 +390,7 @@
|
|
|
340
390
|
## 0.9.25 (2026-02-28)
|
|
341
391
|
|
|
342
392
|
### Bug Fixes
|
|
393
|
+
|
|
343
394
|
- Health command now reads conflict data from conflict_log table instead of
|
|
344
395
|
the never-incremented entries.contradictions column. Shows total conflicts,
|
|
345
396
|
breakdown by relation type, pending count, and auto-resolved count. (#334)
|
|
@@ -353,6 +404,7 @@
|
|
|
353
404
|
## 0.9.24 (2026-02-28)
|
|
354
405
|
|
|
355
406
|
### Bug Fixes
|
|
407
|
+
|
|
356
408
|
- Added storeNudge to openclaw.plugin.json configSchema so OpenClaw accepts
|
|
357
409
|
storeNudge config without validation errors
|
|
358
410
|
|
|
@@ -368,6 +420,7 @@
|
|
|
368
420
|
## 0.9.22 (2026-02-28)
|
|
369
421
|
|
|
370
422
|
### Bug Fixes
|
|
423
|
+
|
|
371
424
|
- OpenClaw plugin: added missing pronouns (You, She, They) to
|
|
372
425
|
FALSE_POSITIVE_NOUNS so short messages like "You there?" correctly
|
|
373
426
|
classify as trivial instead of triggering recall. (#329)
|
|
@@ -390,6 +443,7 @@
|
|
|
390
443
|
## 0.9.20 (2026-02-28)
|
|
391
444
|
|
|
392
445
|
### Bug Fixes
|
|
446
|
+
|
|
393
447
|
- OpenClaw plugin: mid-session recall query now uses the raw current
|
|
394
448
|
message instead of accumulating a sliding window with stop-word
|
|
395
449
|
stripping. Fixes garbled queries that returned irrelevant context.
|
|
@@ -422,6 +476,7 @@
|
|
|
422
476
|
midSessionRecall plugin config.
|
|
423
477
|
|
|
424
478
|
### Bug Fixes
|
|
479
|
+
|
|
425
480
|
- MCP: fix stdout corruption during store and contradiction checks.
|
|
426
481
|
Diagnostic logs in db/store.ts and db/contradiction.ts were writing to
|
|
427
482
|
stdout via console.log, corrupting MCP JSON-RPC framing. Routed all
|