memory-infino is a drop-in
memory plugin for OpenClaw agents, built on Infino. An agent
stores what it sees and recalls the relevant pieces later, searched by keyword and by
meaning together. It’s all queryable with SQL and kept on object storage.
The memory-infino plugin
memory-infino implements OpenClaw’s
memory-plugin contract with three tools:
| Tool | What it does |
|---|---|
memory_recall | Hybrid (BM25 + vector) search over long-term memory, fused with reciprocal-rank fusion |
memory_store | Save a memory (embedded on write) |
memory_forget | Delete by id, or find-and-delete by query |
Install
Why Infino for agent memory
- Hybrid recall in one engine.
memory_recallfuses keyword (BM25) and semantic (vector) matches, so an agent finds memories by exact terms and by meaning at once, with no separate keyword index or rerank service. - Object-storage-native. Memory is stored as Apache Parquet on a local path or object storage; it scales with the agent’s history rather than a fixed cluster.
- SQL over memory. The same store answers structured and time-based questions over an agent’s history.
