agenr 0.7.0 → 0.7.2
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/cli-main.js +580 -140
- package/dist/openclaw-plugin/index.js +0 -54
- package/package.json +8 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.2] - 2026-02-20
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- fix(store): within-batch deduplication - entries with the same subject+type+source file in a single storeEntries() call are now deduplicated before processing, preventing same-batch signal duplicates (entries from different source files with the same subject are kept as distinct)
|
|
7
|
+
- fix(store): re-extraction guard - entries with the same subject+type+source_file extracted within 24 hours now increment confirmations instead of adding a new entry
|
|
8
|
+
- fix(mcp): append-only MCP access log at ~/.agenr/mcp-access.log for observability of agenr_recall and agenr_store tool calls
|
|
9
|
+
|
|
10
|
+
## [0.7.1] - 2026-02-20
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- feat(init): new `agenr init` command to auto-wire project instructions, MCP config, and `.agenr/config.json` with project slug/platform/projectDir
|
|
14
|
+
- feat(init): `--depends-on` support for dependency-aware project recall scope in `.agenr/config.json`
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- feat(mcp): default `agenr_recall` scope now reads `AGENR_PROJECT_DIR` + `.agenr/config.json` per call and auto-includes direct dependencies when `project` is omitted
|
|
18
|
+
- feat(mcp): `project="*"` now bypasses configured project scope, while explicit `project` values stay strict (no dependency expansion)
|
|
19
|
+
- feat(mcp): default `agenr_store` project now comes from configured project scope when caller omits `project`
|
|
20
|
+
- docs: corrected setup guidance in `docs/guides/scenarios.md` and aligned MCP examples in `docs/MCP.md` with current init output
|
|
21
|
+
|
|
22
|
+
### Removed
|
|
23
|
+
- perf(mcp): removed public `since_seq` parameter/handler from `agenr_recall`
|
|
24
|
+
- perf(plugin): removed redundant OpenClaw `writeAgenrMd` write path (session-start context is still injected via `prependContext`)
|
|
25
|
+
- perf(signals): removed extra `agenr_recall` footer from signal notifications for lower token overhead
|
|
26
|
+
|
|
3
27
|
## [0.7.0] - 2026-02-19
|
|
4
28
|
|
|
5
29
|
### Added
|