memorine

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

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "memorine" with this command: npx skills add osvfelices/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.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

Workspace Init

Use this skill to initialize or update a multi-repo workspace created from dev-config-template. Invoke whenever the user wants to: set up a fresh workspace c...

Registry SourceRecently Updated
Coding

Google Seo Assistant

A client-facing SEO assistant grounded in Google's official SEO Starter Guide. Use this skill whenever a user mentions SEO, search rankings, Google visibilit...

Registry SourceRecently Updated
Coding

Version Drift

One command to check if your entire stack is up to date. SSHes into servers, queries APIs, and compares installed versions against latest — across every serv...

Registry SourceRecently Updated