Install
openclaw skills install @yxjsxy/memory-agentmemoOpenClaw external memory plugin for AgentMemo. Enables semantic memory search and auto-capture via a self-hosted AgentMemo server. Install to use AgentMemo as your memory backend instead of the default file-based memory.
openclaw skills install @yxjsxy/memory-agentmemoExternal memory plugin for OpenClaw that delegates semantic memory storage and retrieval to a self-hosted AgentMemo server.
openclaw install @openclaw/memory-agentmemo
Or via ClawHub:
clawhub install memory-agentmemo
In your openclaw.json, add the plugin config:
{
"plugins": {
"memory-agentmemo": {
"serverUrl": "http://localhost:8000",
"apiKey": "your-api-key",
"userId": "karl"
}
}
}
| Field | Required | Description |
|---|---|---|
serverUrl | ✅ | AgentMemo HTTP server URL |
apiKey | ❌ | API key if your server requires auth |
userId | ❌ | User ID for memory namespacing |
autoCapture | ❌ | Auto-capture memories from conversations (default: false) |
autoRecall | ❌ | Auto-inject relevant memories into context (default: true) |
Run your own AgentMemo server: https://github.com/agentmemo/agentmemo
pip install agentmemo
agentmemo server --port 8000