agenr 0.9.61 → 0.9.62
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 +24 -0
- package/dist/chunk-7WQIR64I.js +9453 -0
- package/dist/chunk-BCJ4JHZF.js +9452 -0
- package/dist/chunk-GGKBIM7E.js +9432 -0
- package/dist/chunk-LONV7HGV.js +3749 -0
- package/dist/chunk-OEWKOAEH.js +214 -0
- package/dist/chunk-TPKFTCM2.js +9453 -0
- package/dist/chunk-Z7MN65K2.js +336 -0
- package/dist/cli-main.d.ts +0 -2
- package/dist/cli-main.js +70 -49
- package/dist/co-recall-MOA5R4D6.js +18 -0
- package/dist/maintain-FZ7QHEFA.js +4129 -0
- package/dist/maintain-NO25QZTE.js +4129 -0
- package/dist/maintain-UXGRJKOO.js +4129 -0
- package/dist/maintain-Z7YQSGJR.js +4130 -0
- package/dist/openclaw-plugin/index.js +15 -8
- package/package.json +8 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.62] - 2026-03-03
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Restored deleted integration and scoring coverage in `tests/db/recall.test.ts` after the Phase 4 field-removal rewrite.
|
|
8
|
+
- Updated restored recall tests to the `recall_events` model: removed legacy `StoredEntry` recall fields, replaced metadata assertions with `recall_events` checks, and removed `useRecallEvents` and `recallStrength` legacy-path tests.
|
|
9
|
+
- Restored `warmStartThreshold` and `syntheticFloor` coverage in `tests/db/recall-score-metrics.test.ts` and removed legacy compatibility assertions tied to deleted scoring paths.
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- **BREAKING**: Recall scoring now exclusively uses `recall_events` table; legacy entry-level `recall_count`, `last_recalled_at`, and `recall_intervals` fields are no longer read or written
|
|
14
|
+
- `computeSpacingFactor` simplified to use only `maxGapDays` from RecallMetrics
|
|
15
|
+
- `scoreEntry` / `scoreEntryWithBreakdown` now require `metricsMap` parameter (no longer optional)
|
|
16
|
+
- Retirement, health, consolidation, maintenance, and `forgettingScore` queries derive recall activity from `recall_events` table
|
|
17
|
+
- Removed legacy `recallStrength` function (replaced by `recallStrengthFromMetrics`)
|
|
18
|
+
|
|
19
|
+
### Removed
|
|
20
|
+
|
|
21
|
+
- `scoring.useRecallEvents` feature flag - recall_events is now the sole scoring path
|
|
22
|
+
- `recall_count`, `last_recalled_at`, `recall_intervals` from `StoredEntry` type
|
|
23
|
+
- Dual-write of entry-level recall columns in `updateRecallMetadata`
|
|
24
|
+
- Legacy interval-parsing and imputation in `computeSpacingFactor`
|
|
25
|
+
- In-memory recall_count mutation in CLI recall and MCP server handlers
|
|
26
|
+
|
|
3
27
|
## [0.9.61] - 2026-03-03
|
|
4
28
|
|
|
5
29
|
### Added
|