Memory Pro System

OpenClaw Gateway plugin — enhanced AI memory with vector store, document-level MSA, knowledge graph, collision engine, and executable skills.

Install

openclaw plugins install clawhub:openclaw-plugin-memory-pro

openclaw-plugin-memory-pro

OpenClaw Gateway plugin that adds an enhanced AI memory system — vector store (Memora), document-level MSA, knowledge graph, 7-strategy collision engine, and executable skills with closed-loop evolution.

Installation

openclaw plugins install openclaw-plugin-memory-pro

Configuration

Add to your openclaw.json:

{
  "plugins": {
    "entries": {
      "memory-pro": {
        "enabled": true,
        "config": {
          "pythonPath": "python3",
          "memoryServerPort": 18790,
          "workspacePath": "/path/to/memory-pro-workspace",
          "autoStart": true,
          "contextInjection": true,
          "contextMaxTokens": 2000
        }
      }
    }
  }
}

Config Options

OptionTypeDefaultDescription
pythonPathstring"python3"Path to the Python 3 interpreter
memoryServerPortnumber18790Port the memory server listens on
workspacePathstring""Path to the memory-pro workspace (auto-detected if empty)
autoStartbooleantrueAuto-start the memory server on gateway load
contextInjectionbooleantrueInject recalled memory into agent prompts
contextMaxTokensnumber2000Max tokens for injected memory context

Agent Tools

The plugin registers 5 agent tools:

ToolDescription
memory_rememberStore information with automatic routing to Memora, MSA, and Chronos
memory_recallThree-layer assembled retrieval with token budget control
memory_deep_recallLLM-powered multi-hop deep recall
memory_collide7-strategy attention-aware inspiration collision
memory_skillsList active skills with utility stats and executable prompts

Context Injection

When contextInjection is enabled, the plugin hooks into before_prompt_build to automatically recall relevant memories and prepend them to the agent's context.

HTTP Routes

RouteAuthDescription
GET /memory-pro/healthgatewayPlugin + memory server health
GET /memory-pro/statusgatewayFull memory system status

Prerequisites

  • Python 3.9+
  • The memory-pro workspace cloned and set up
  • An LLM API key (OpenRouter preferred, xAI fallback)

License

MIT