agenr 0.9.41 → 0.9.43
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 +56 -0
- package/dist/chunk-3OYES62O.js +8525 -0
- package/dist/chunk-4FCKWGRK.js +2835 -0
- package/dist/chunk-AQFKDFU4.js +2829 -0
- package/dist/chunk-EDS73MZW.js +8246 -0
- package/dist/chunk-HXOU34YO.js +8245 -0
- package/dist/chunk-JTACPSV2.js +8526 -0
- package/dist/chunk-VTCEVVCW.js +8467 -0
- package/dist/chunk-YOYOETHT.js +8468 -0
- package/dist/cli-main.d.ts +9 -1
- package/dist/cli-main.js +30 -10
- package/dist/maintain-4GAWAUTM.js +3353 -0
- package/dist/maintain-B7EC5ZPM.js +3348 -0
- package/dist/maintain-E4YHJNQM.js +3347 -0
- package/dist/maintain-HYTXTVF2.js +3334 -0
- package/dist/maintain-LJYFTEVC.js +3347 -0
- package/dist/maintain-NJZY5MUF.js +3347 -0
- package/dist/maintain-RIJDE7CU.js +3347 -0
- package/dist/maintain-S4L6AGHY.js +3353 -0
- package/dist/maintain-XMDTXQKY.js +3348 -0
- package/dist/maintain-YUBUZN42.js +3347 -0
- package/dist/openclaw-plugin/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,61 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.9.43 (2026-03-02)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- Embedding-based clustering fallback for orphan entries (#387)
|
|
8
|
+
- Assigns orphans to nearest existing cluster by embedding similarity
|
|
9
|
+
- Forms new clusters from orphans with similar embeddings
|
|
10
|
+
- Configurable similarity threshold (default 0.72), max cluster size (default 50)
|
|
11
|
+
- New `method` column on clusters table (`co_recall` | `embedding`)
|
|
12
|
+
- Reports fallback stats in detectAndStoreClusters result
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- Replace sigmoid scoring compression with sqrt for better score differentiation (#390)
|
|
17
|
+
- Old formula squashed all scores into 0.22-0.26 band (0.033 spread)
|
|
18
|
+
- New sqrt compression gives 0.50-0.67 range (0.17 spread, 5x improvement)
|
|
19
|
+
- FTS bonus moved from additive post-compression (0.15) to multiplicative pre-compression (1.3x)
|
|
20
|
+
- Importance/recall blend (70/30) replaces MAX - recall history now always contributes
|
|
21
|
+
- Apply --limit flag to reflection task cluster count (#385)
|
|
22
|
+
- Tighten extraction importance calibration to reduce inflation (#391)
|
|
23
|
+
- Added stronger downward pressure in calibration text
|
|
24
|
+
- Rebalanced examples: two 8s lowered to 7, added importance-6 example
|
|
25
|
+
- Production showed 30.7% of entries at 8+ vs 20% target
|
|
26
|
+
|
|
27
|
+
### Tests
|
|
28
|
+
|
|
29
|
+
- 8 new tests for embedding fallback clustering
|
|
30
|
+
- 3 new tests for scoring (spread, FTS proportionality, recall contribution)
|
|
31
|
+
- 1 new test for reflection limit enforcement
|
|
32
|
+
|
|
33
|
+
## 0.9.42 (2026-03-02)
|
|
34
|
+
|
|
35
|
+
### Features
|
|
36
|
+
- **Periodic reflection and synthesis** (#269): New `reflection` maintain task that
|
|
37
|
+
synthesizes clusters of related entries into higher-level reflections using
|
|
38
|
+
two-step LLM prompting (question generation + synthesis) with a verification pass.
|
|
39
|
+
Source entries are importance-demoted (not retired) so raw knowledge remains
|
|
40
|
+
accessible. Co-recall edges are transferred to reflection entries for graph
|
|
41
|
+
continuity.
|
|
42
|
+
- New entry type: `reflection` for synthesized knowledge
|
|
43
|
+
- New `reflections` table for process metadata
|
|
44
|
+
- Extended `entry_sources` with `action` column for unified provenance tracking
|
|
45
|
+
- New `--full` flag for full-brain reflection (ignores change detection)
|
|
46
|
+
- Configurable: reflection model, verification model, coverage threshold, demotion
|
|
47
|
+
amount, importance threshold, cluster size minimum
|
|
48
|
+
- Re-synthesis guards: minimum cumulative importance threshold for changed entries
|
|
49
|
+
|
|
50
|
+
### Bug Fixes
|
|
51
|
+
- Fix parseSynthesisResponse bailing on first JSON candidate instead of trying alternatives
|
|
52
|
+
- Fix verification prompt missing explicit check instructions
|
|
53
|
+
- Fix demoteEntryImportance/retireReflectionEntry using wall clock instead of injected time
|
|
54
|
+
- Fix transferCoRecallEdges silently dropping stronger edges (now uses MAX weight)
|
|
55
|
+
- Fix verification ignoring the verified boolean (only checked coverage_score)
|
|
56
|
+
- Extract shared JSON parsing utilities to reduce duplication
|
|
57
|
+
- Add cluster churn detection for re-synthesis safety
|
|
58
|
+
|
|
3
59
|
## 0.9.41 - 2026-03-01
|
|
4
60
|
|
|
5
61
|
### Fixed
|