Memorine

v0.1.0

Human-like memory for AI agents. Facts, events, procedures, contradiction detection, forgetting curve, and cross-agent sharing. Pure Python + SQLite.

1· 283· 1 versions· 2 current· 2 all-time· Updated 9h ago· MIT-0

Install

openclaw skills install memorine

Memorine

Persistent memory for OpenClaw agents. No APIs, no Docker, no external services. Just Python and SQLite.

What it does

  • Facts -- store, recall, and search with full-text search (FTS5). Near-duplicates are reinforced, contradictions are flagged automatically.
  • Forgetting curve -- memories decay over time if not accessed, just like human memory. Old garbage cleans itself up.
  • Events -- log what happened with causal chains (this caused that, which caused this other thing).
  • Procedures -- track multi-step workflows, learn which steps tend to fail, anticipate what you will need before starting a task.
  • Cross-agent sharing -- agents share facts with each other or the whole team through the same database.
  • Semantic search (optional) -- install memorine[embeddings] to add meaning-based search on top of keyword search.

14 MCP tools

Once installed, your agents get access to:

ToolWhat it does
memorine_learnStore a fact. Detects contradictions.
memorine_learn_batchBatch-learn multiple facts at once.
memorine_recallSearch memory by query. Ranked by importance and recency.
memorine_log_eventRecord an event. Supports causal chains.
memorine_eventsSearch past events by text or tags.
memorine_shareShare a fact with another agent or the team.
memorine_team_knowledgeGet collective knowledge across agents.
memorine_profileFull cognitive profile of what an agent knows.
memorine_anticipatePredict what you need for a task before starting.
memorine_procedure_startStart tracking a procedure.
memorine_procedure_stepLog a step result in a running procedure.
memorine_procedure_completeMark a procedure as done.
memorine_correctFix a fact that turned out to be wrong.
memorine_statsDatabase stats: facts, events, procedures, db size.

Setup

Install Memorine:

pip install memorine

Add the MCP server to your OpenClaw config (openclaw.json):

{
  "mcpServers": {
    "memorine": {
      "command": "python3",
      "args": ["-m", "memorine.mcp_server"]
    }
  }
}

Allow the tools for your agents:

{
  "tools": {
    "allow": [
      "memorine_learn",
      "memorine_recall",
      "memorine_log_event",
      "memorine_events",
      "memorine_share",
      "memorine_team_knowledge",
      "memorine_profile",
      "memorine_anticipate",
      "memorine_procedure_start",
      "memorine_procedure_step",
      "memorine_procedure_complete",
      "memorine_correct",
      "memorine_stats",
      "memorine_learn_batch"
    ]
  }
}

Optional semantic search (adds meaning-based matching on top of keyword search):

pip install memorine[embeddings]

Security

Each agent can only modify its own data. Forget, correct, link, and procedure operations all validate ownership. No agent can touch another agent's memories.

How it works

Everything lives in a single SQLite file at ~/.memorine/memorine.db. FTS5 handles keyword search, triggers keep indexes in sync, and WAL mode allows concurrent reads. The forgetting curve uses retention = e^(-days / stability) where stability grows each time a memory is accessed. No LLM needed for any of this.

Version tags

latestvk976h93a9q5j17005de4ys83ks82k1sd

Runtime requirements

Binspython3

Install

uv
Bins: memorine
uv tool install memorine