agenr 0.9.46 → 0.9.49
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-BFRCZZ5G.js +3351 -0
- package/dist/chunk-BQREIUHR.js +3351 -0
- package/dist/chunk-KCCTUCDT.js +9024 -0
- package/dist/chunk-KSNO73HC.js +9013 -0
- package/dist/chunk-N7N4BL3I.js +9026 -0
- package/dist/chunk-PO2B2SU3.js +9029 -0
- package/dist/chunk-WOIIXACJ.js +9025 -0
- package/dist/cli-main.d.ts +1 -0
- package/dist/cli-main.js +5 -4
- package/dist/maintain-5ATL764S.js +3591 -0
- package/dist/maintain-5PSIWVHK.js +3720 -0
- package/dist/maintain-FWV6RL7K.js +3591 -0
- package/dist/maintain-MVVFTTCZ.js +3592 -0
- package/dist/maintain-RW4QXQSL.js +3591 -0
- package/dist/maintain-UJZF46ZE.js +3591 -0
- package/dist/maintain-YCIUTA53.js +3544 -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.49 (2026-03-02)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- Stale reflection detection and invalidation during maintain (#418)
|
|
8
|
+
- New `stale-reflections` maintain task runs before reflection synthesis
|
|
9
|
+
- Detects reflections with >50% retired or updated source entries
|
|
10
|
+
- Retires stale reflections automatically, freeing clusters for re-synthesis
|
|
11
|
+
- Pure DB queries (no LLM required), respects --dry-run and --apply flags
|
|
12
|
+
- New DB helpers: getActiveReflections, getSourceEntryStalenessCounts
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- Stronger reflection demotion in recall scoring (#410)
|
|
17
|
+
- Default REFLECTION_DEMOTION lowered from 0.85 to 0.70
|
|
18
|
+
- Cluster bonus no longer applied to reflection entries (breaks circular boost)
|
|
19
|
+
- Reflection entries excluded from cluster peer expansion
|
|
20
|
+
- Break recall scoring feedback loop (#414)
|
|
21
|
+
- recallStrength capped at 0.5 (was 1.0) to prevent recall from dominating scores
|
|
22
|
+
- Removed RECALL_MILESTONES automatic importance promotion (counts 3, 10, 25)
|
|
23
|
+
- Importance now only changes via explicit updates or re-extraction
|
|
24
|
+
|
|
25
|
+
### Tests
|
|
26
|
+
|
|
27
|
+
- 5 new stale-reflections task tests (retired/updated majority, healthy, dry-run, no sources)
|
|
28
|
+
- 3 new DB-layer tests for staleness detection helpers
|
|
29
|
+
- 2 new cluster bonus tests for reflection skip behavior
|
|
30
|
+
- Updated recall scoring tests for new defaults and removed milestones
|
|
31
|
+
- Updated maintain task ordering tests for new stale-reflections task
|
|
32
|
+
|
|
33
|
+
## 0.9.48 (2026-03-02)
|
|
34
|
+
|
|
35
|
+
### Features
|
|
36
|
+
|
|
37
|
+
- Reflections now inherit and synthesize tags from their source entries (#388)
|
|
38
|
+
- Tags appearing on 2+ source entries are included (all tags for small clusters)
|
|
39
|
+
- "reflection" tag always prepended for identifiability
|
|
40
|
+
- Capped at 10 tags per reflection, sorted by frequency
|
|
41
|
+
- Fixes FTS/tag-based recall blindness for all reflection entries
|
|
42
|
+
|
|
43
|
+
### Bug Fixes
|
|
44
|
+
|
|
45
|
+
- Cap freshness bonus at 1.0 for reflection entries to prevent synthesized
|
|
46
|
+
summaries from crowding out raw entries in recall results (#410)
|
|
47
|
+
|
|
48
|
+
### Tests
|
|
49
|
+
|
|
50
|
+
- 8 new tests for reflection tag inheritance (DB queries + task integration)
|
|
51
|
+
|
|
52
|
+
## 0.9.47 (2026-03-02)
|
|
53
|
+
|
|
54
|
+
### Bug Fixes
|
|
55
|
+
|
|
56
|
+
- Added reflection type demotion in recall scoring (default 0.85x) to prevent reflections from crowding out specific raw entries in recall results
|
|
57
|
+
- Added `scoring.reflectionDemotion` config knob (range 0-1) with normalization and recall score breakdown visibility
|
|
58
|
+
|
|
3
59
|
## 0.9.46 (2026-03-02)
|
|
4
60
|
|
|
5
61
|
### Improvements
|