Skip to main content
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:
ToolWhat it does
memory_recallHybrid (BM25 + vector) search over long-term memory, fused with reciprocal-rank fusion
memory_storeSave a memory (embedded on write)
memory_forgetDelete by id, or find-and-delete by query

Install

npm install @infino-ai/memory-infino
Find it on ClawHub and enable it as a memory plugin in your OpenClaw configuration. See the OpenClaw docs for wiring a memory plugin into an agent. Memory lives on a local path or object storage (S3 / GCS / Azure).

Why Infino for agent memory

  • Hybrid recall in one engine. memory_recall fuses 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.

Build it yourself

Not on OpenClaw, or want memory tailored to your own stack? Build the same pattern directly on the Infino Node binding. See the agent-memory tutorial and the Quickstart.

See also

Last modified on June 29, 2026