agenr 0.9.67 → 0.9.69

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 CHANGED
@@ -1,5 +1,38 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.69] - 2026-03-05
4
+
5
+ ### Fixed
6
+
7
+ - OpenClaw session-start memory injection now renders `expiry: "core"` entries in a dedicated `### Core Context` section before the normal recall sections, instead of flattening them into generic memory groups.
8
+ - Session-start memory formatting now preserves the shared memory budget while preventing core entries from being duplicated in the non-core sections.
9
+
10
+ ## [0.9.68] - 2026-03-05
11
+
12
+ ### Added
13
+
14
+ - Added standalone `agenr synthetic` command to generate synthetic recall signals against existing database entries without re-running ingest.
15
+ - Added `agenr synthetic` options for source-file scoping, similarity/session/event thresholds, dry-run mode, JSON output, and optional post-pass quality seeding.
16
+ - Added command coverage for standalone synthetic execution, dry-run no-write behavior, source-file scoping, and quality seeding flow.
17
+
18
+ ### Changed
19
+
20
+ - `agenr backfill-claims` now runs claim extraction in parallel with a configurable `--concurrency` limit (default `5`), significantly reducing wall-clock time for large databases. The default `--batch-size` also increased from `10` to `50`.
21
+
22
+ ### Fixed
23
+
24
+ - `agenr ingest` now runs synthetic recall generation by default after successful ingest; use `--no-synthetic` to disable the post-ingest synthetic pass.
25
+ - Updated synthetic ingest documentation and tests for the default-on behavior, including explicit `--no-synthetic` disable coverage.
26
+ - Claim extraction during ingest is now disabled by default for better ingest throughput; use `--claims` to opt in, or run `agenr backfill-claims` for bulk claim extraction.
27
+ - Added `agenr ingest --contradiction` to explicitly enable contradiction checks during ingest regardless of config.
28
+ - Clarified and tested ingest contradiction defaults: contradiction checks remain disabled by default unless `config.contradiction.enableDuringIngest === true` or `--contradiction` is passed.
29
+ - OpenClaw plugin `agenr_store` now defaults `platform` to `openclaw` when the tool call omits `platform`, while preserving explicitly passed platform values.
30
+ - Added OpenClaw tool registration tests covering `agenr_store` default platform injection and explicit platform pass-through.
31
+ - Fixed OpenClaw session-start dedupe persistence: `hasSeenSession`/`markSessionSeen` now use a durable `seen_sessions` SQLite table with in-memory map fast-path caching.
32
+ - Added OpenClaw session dedupe diagnostics (`hasSeenSession key=... found=... mapSize=...`) to detect map resets and repeated `isFirst=true` triggers.
33
+ - Added seen-session cleanup and limits for OpenClaw dedupe state (evict rows older than 24 hours and cap persisted rows to `AGENR_OPENCLAW_MAX_SEEN_SESSIONS`).
34
+ - Added OpenClaw regression tests for first/second-hit dedupe behavior, persistence across simulated module reload, stale-row cleanup, and max-row capping.
35
+
3
36
  ## [0.9.67] - 2026-03-05
4
37
 
5
38
  ### Added
package/README.md CHANGED
@@ -244,6 +244,7 @@ This exposes four tools: `agenr_recall`, `agenr_store`, `agenr_extract`, `agenr_
244
244
  | `agenr config` | Show and update agenr configuration |
245
245
  | `agenr auth` | Authentication status and diagnostics |
246
246
  | `agenr ingest <paths...>` | Bulk-ingest files and directories |
247
+ | `agenr synthetic` | Generate synthetic recall signals from existing DB entries (no re-ingest required) |
247
248
  | `agenr extract <files...>` | Extract knowledge entries from text files |
248
249
  | `agenr store [files...]` | Store entries with semantic dedup |
249
250
  | `agenr recall [query]` | Semantic + memory-aware recall. Use `--since`/`--until` for date ranges, `--around` for target-date ranking, `--browse` for temporal mode. |