agenr 0.9.63 → 0.9.65
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-2WDSDJOC.js +9479 -0
- package/dist/chunk-4EYRVBRM.js +3749 -0
- package/dist/chunk-CHGBBIW7.js +214 -0
- package/dist/chunk-UGIJJOPV.js +343 -0
- package/dist/cli-main.js +110 -12
- package/dist/co-recall-VWYTWS7P.js +18 -0
- package/dist/maintain-DCGUKFHK.js +4129 -0
- package/dist/openclaw-plugin/index.js +324 -81
- package/openclaw.plugin.json +6 -1
- package/package.json +8 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.65] - 2026-03-04
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Added `agenr memory-index --json [--db <path>]` to return a compact project memory index (`project`, `count`, `lastTouched`).
|
|
8
|
+
- Added `--universal-only` to `agenr recall` to filter recall results to NULL-project entries.
|
|
9
|
+
- Added OpenClaw plugin config `sessionStartBudgetChars` (default `12000`) to cap total session-start injected context.
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Refactored OpenClaw session-start injection to lean mode: handoff context, universal browse recall only (`project IS NULL`, importance >= 7, limit 10), and memory index summary.
|
|
14
|
+
- Removed session-start semantic seed recall and Phase 2 dedup assembly from `before_prompt_build`.
|
|
15
|
+
- Added a strict session-start hard cap with truncation notice so injected context cannot exceed the configured budget.
|
|
16
|
+
|
|
17
|
+
## [0.9.64] - 2026-03-04
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Truncated OpenClaw session-start recall entry content to 500 chars by default, with configurable per-entry limits and a total formatted output cap (`maxChars`, default 10000).
|
|
22
|
+
- Truncated OpenClaw mid-session recall entry content to 500 chars by default, with configurable per-entry limits and a total formatted output cap (`maxChars`, default 4000).
|
|
23
|
+
- Reduced OpenClaw session-start browse recall limit from 20 to 12 entries to lower prompt injection size.
|
|
24
|
+
- Wired formatter options through `before-prompt-build` so recall injection limits are explicitly passable for future config overrides.
|
|
25
|
+
- Removed misplaced/dead `[System Message]` handling in `mid-session-recall.ts`: fixed `normalizeBufferedMessage` truncation path and updated `buildQuery` to return an empty query for system-message-prefixed inputs.
|
|
26
|
+
|
|
3
27
|
## [0.9.63] - 2026-03-03
|
|
4
28
|
|
|
5
29
|
### Added
|