agenr 0.9.49 → 0.9.51
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 +25 -0
- package/dist/chunk-R33ELQFQ.js +9014 -0
- package/dist/cli-main.js +273 -6
- package/dist/maintain-47H3AGPB.js +3859 -0
- package/dist/openclaw-plugin/index.js +108 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.9.51 (2026-03-03)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- Fix runTraceTool passing unrecognized --json flag to trace CLI (#426)
|
|
8
|
+
|
|
9
|
+
### Performance
|
|
10
|
+
|
|
11
|
+
- Consolidation now skips entirely when no entries changed since last successful run (#427)
|
|
12
|
+
- Uses watermark pattern (same as edge-decay) to detect entry changes
|
|
13
|
+
- Reduces cron consolidation from ~10 minutes to <1 second when brain is stable
|
|
14
|
+
- Checkpoint-aware: always resumes interrupted runs regardless of watermark
|
|
15
|
+
|
|
16
|
+
## 0.9.50 (2026-03-02)
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
- agenr_trace tool for entry provenance (#386)
|
|
21
|
+
- New `agenr trace <entry_id>` CLI command
|
|
22
|
+
- New `agenr_trace` OpenClaw plugin tool
|
|
23
|
+
- Traces reflections back to source entries, and entries forward to reflections
|
|
24
|
+
- Also shows merge provenance from consolidation
|
|
25
|
+
- Supports lookup by entry_id, subject match, or --last flag
|
|
26
|
+
- New `src/db/provenance.ts` module with `getEntryProvenance()` and `findEntryBySubject()`
|
|
27
|
+
|
|
3
28
|
## 0.9.49 (2026-03-02)
|
|
4
29
|
|
|
5
30
|
### Features
|