agenr 0.9.42 → 0.9.45

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.
Files changed (46) hide show
  1. package/CHANGELOG.md +54 -0
  2. package/dist/chunk-3OYES62O.js +8525 -0
  3. package/dist/chunk-47PIRRGJ.js +8665 -0
  4. package/dist/chunk-4FCKWGRK.js +2835 -0
  5. package/dist/chunk-66YFVWW3.js +8750 -0
  6. package/dist/chunk-A46PT5PY.js +3310 -0
  7. package/dist/chunk-EDS73MZW.js +8246 -0
  8. package/dist/chunk-ERQT4ERH.js +8667 -0
  9. package/dist/chunk-FNJBBADY.js +8771 -0
  10. package/dist/chunk-FUSCYKSF.js +3255 -0
  11. package/dist/chunk-HC3NB6EU.js +3091 -0
  12. package/dist/chunk-IVAX2VDF.js +3337 -0
  13. package/dist/chunk-JTACPSV2.js +8526 -0
  14. package/dist/chunk-KTOU6LRU.js +8644 -0
  15. package/dist/chunk-PLH2R7WV.js +8580 -0
  16. package/dist/chunk-RPYLVUKC.js +9017 -0
  17. package/dist/chunk-RUPWSJO7.js +8812 -0
  18. package/dist/chunk-TE7W76T7.js +3013 -0
  19. package/dist/chunk-U7PGTM4S.js +8766 -0
  20. package/dist/chunk-UBBNTQKK.js +8793 -0
  21. package/dist/chunk-VEFUHFSO.js +8712 -0
  22. package/dist/chunk-VTCEVVCW.js +8467 -0
  23. package/dist/chunk-WAQQ467K.js +8666 -0
  24. package/dist/chunk-YOYOETHT.js +8468 -0
  25. package/dist/cli-main.d.ts +38 -0
  26. package/dist/cli-main.js +72 -14
  27. package/dist/maintain-27EIK3FW.js +3356 -0
  28. package/dist/maintain-3ZJK2DHH.js +3353 -0
  29. package/dist/maintain-4GAWAUTM.js +3353 -0
  30. package/dist/maintain-6AAHTGDH.js +3353 -0
  31. package/dist/maintain-CESESAHV.js +3356 -0
  32. package/dist/maintain-E4YHJNQM.js +3347 -0
  33. package/dist/maintain-FO2GQUK6.js +3353 -0
  34. package/dist/maintain-K7IDIXRG.js +3356 -0
  35. package/dist/maintain-KJ7UYFPQ.js +3353 -0
  36. package/dist/maintain-LJYFTEVC.js +3347 -0
  37. package/dist/maintain-LMEGXCOZ.js +3353 -0
  38. package/dist/maintain-NJZY5MUF.js +3347 -0
  39. package/dist/maintain-O4FNLTFI.js +3353 -0
  40. package/dist/maintain-OQKS3GUG.js +3353 -0
  41. package/dist/maintain-RIJDE7CU.js +3347 -0
  42. package/dist/maintain-S4L6AGHY.js +3353 -0
  43. package/dist/maintain-WYOAUABX.js +3356 -0
  44. package/dist/maintain-ZQOEF5Y7.js +3356 -0
  45. package/dist/openclaw-plugin/index.js +1 -1
  46. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,59 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.9.45 (2026-03-02)
4
+
5
+ ### Features
6
+
7
+ - Reduced default min cluster size from 3 to 2 for better pair clustering (#402)
8
+ - Added subject-match clustering phase for entries sharing exact subjects (#402)
9
+ - Lowered default cosine similarity threshold from 0.72 to 0.68 (#402)
10
+
11
+ ### Bug Fixes
12
+
13
+ - `maintain --full` now bypasses cluster freshness guard (#399)
14
+
15
+ ## 0.9.44 (2026-03-02)
16
+
17
+ ### Features
18
+
19
+ - Make recall scoring parameters configurable via `scoring.*` config keys (#392)
20
+ - Allows tuning recall weights, boosts, and thresholds without code changes
21
+ - Threads scoring config through recall and session-start recall paths
22
+ - Add graph recall config knobs: graphBonus, graphSeedCount, graphNeighborLimit, graphMinEdgeWeight, graphMinSeedVectorSim (#392)
23
+ - Suppress demoted source entries when their reflection is in recall results (#389)
24
+ - Prevents redundant results when both a reflection and its sources match a query
25
+ - Backfills results to maintain requested limit after suppression
26
+
27
+ ## 0.9.43 (2026-03-02)
28
+
29
+ ### Features
30
+
31
+ - Embedding-based clustering fallback for orphan entries (#387)
32
+ - Assigns orphans to nearest existing cluster by embedding similarity
33
+ - Forms new clusters from orphans with similar embeddings
34
+ - Configurable similarity threshold (default 0.72), max cluster size (default 50)
35
+ - New `method` column on clusters table (`co_recall` | `embedding`)
36
+ - Reports fallback stats in detectAndStoreClusters result
37
+
38
+ ### Bug Fixes
39
+
40
+ - Replace sigmoid scoring compression with sqrt for better score differentiation (#390)
41
+ - Old formula squashed all scores into 0.22-0.26 band (0.033 spread)
42
+ - New sqrt compression gives 0.50-0.67 range (0.17 spread, 5x improvement)
43
+ - FTS bonus moved from additive post-compression (0.15) to multiplicative pre-compression (1.3x)
44
+ - Importance/recall blend (70/30) replaces MAX - recall history now always contributes
45
+ - Apply --limit flag to reflection task cluster count (#385)
46
+ - Tighten extraction importance calibration to reduce inflation (#391)
47
+ - Added stronger downward pressure in calibration text
48
+ - Rebalanced examples: two 8s lowered to 7, added importance-6 example
49
+ - Production showed 30.7% of entries at 8+ vs 20% target
50
+
51
+ ### Tests
52
+
53
+ - 8 new tests for embedding fallback clustering
54
+ - 3 new tests for scoring (spread, FTS proportionality, recall contribution)
55
+ - 1 new test for reflection limit enforcement
56
+
3
57
  ## 0.9.42 (2026-03-02)
4
58
 
5
59
  ### Features