Quick Start
Once installed, the plugin is available as OpenClaw tools automatically. No additional setup is needed.
Write a memory
js
memory_add("Wise GBP account ID is 149491167, profile ID is 83851805.")On write, the plugin:
- Checks for exact duplicates (hash dedup)
- Runs LLM note construction (keywords, tags, context, category)
- Retrieves candidate notes and generates bidirectional links
- Evaluates memory evolution on linked notes
Search memories
js
memory_search("Wise GBP details", limit=5)Returns up to limit memories ranked by hybrid RRF score (BM25 + vector cosine) with heat boost and 2-hop BFS graph expansion.
List memory count
js
memory_list()Returns the total active note count for the current agent namespace.
Manual consolidation
js
memory_consolidate()Triggers same-day semantic deduplication (cosine ≥ 0.80) grouped by category, with automatic link cascading.
Automatic consolidation
The plugin schedules daily consolidation automatically at 02:30 AM (in-process setTimeout). It:
- Groups notes by
category - Merges semantic duplicates (cosine ≥ 0.75) into unified knowledge notes
- Cascades all link references to preserve graph topology
No configuration required.
LLM CRUD gate
At agent conversation end (agent_end hook), the plugin:
- Analyses the full user-assistant dialogue
- Decides
NEW/UPDATE/DELETE/NONEper note - Executes changes automatically
This keeps the memory store clean without manual intervention.
