@agenr/openclaw-plugin 0.12.0 → 0.12.1
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 +19 -0
- package/dist/index.js +8496 -8192
- package/package.json +3 -3
- package/skills/SKILL.md +22 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.12.1] - 2026-03-21
|
|
4
|
+
|
|
5
|
+
### Post-Ingest Quality Fixes
|
|
6
|
+
|
|
7
|
+
- **Active-only FTS index.** FTS triggers and rebuild helpers now scope to active entries only (`retired = 0, superseded_by IS NULL`). Retired entries no longer occupy FTS slots or get reindexed during maintenance.
|
|
8
|
+
- **Active-only vector index.** The `idx_entries_embedding_shadow` partial index now excludes retired entries. Vector `top_k` queries no longer waste slots on retired embeddings that get post-filtered. Rebuild and health-check paths updated to match.
|
|
9
|
+
- **Schema regression test.** Fresh `init`/`reset` must create active-only trigger and index definitions — validated by new schema test.
|
|
10
|
+
|
|
11
|
+
### Passthrough Dedup Fix
|
|
12
|
+
|
|
13
|
+
- **Normalized content hash dedup.** Passthrough now checks active `norm_content_hash` before insert, catching exact duplicates that survived because the previous `contentHash` included `source.file`. Identical content from different tool calls is now correctly deduplicated.
|
|
14
|
+
- **Within-batch norm-hash tracking.** Local batch dedup tracks both `contentHash` and `normContentHash`, preventing same-batch duplicates with different synthetic source files.
|
|
15
|
+
- **Granular skip tracking.** `stats.skipped` now counts by skipped candidates rather than matched set size.
|
|
16
|
+
|
|
17
|
+
### Store Guidance
|
|
18
|
+
|
|
19
|
+
- **Future-session test.** Updated `agenr_store` tool description, Memory Doctrine (`system-context.ts`), and SKILL.md with concrete store/don't-store guidance. Agents are now instructed to apply the "future-session test" before storing: will a fresh session need this to act differently, or is this just logging what happened?
|
|
20
|
+
- **Importance calibration.** Added "importance is not recency" guidance — shipping events are 5-6, recurring operational hazards are 7-8.
|
|
21
|
+
|
|
3
22
|
## [0.12.0] - 2026-03-20
|
|
4
23
|
|
|
5
24
|
### Ingestion Overhaul
|