Install
openclaw skills install @zhoulf1006/memory-core-plusEnhances OpenClaw memory by auto-recalling relevant past data before each turn and auto-capturing key info after each run for persistent context.
openclaw skills install @zhoulf1006/memory-core-plusEnhanced workspace memory with auto-recall and auto-capture for OpenClaw.
memory-core-plus is an OpenClaw plugin that extends the built-in memory-core with two automated hooks:
Together they form a closed-loop memory system: information captured from past conversations is automatically surfaced when contextually relevant in future interactions.
openclaw plugins install memory-core-plus
openclaw gateway restart
Auto-Recall and Auto-Capture are both enabled by default.
{
"plugins": {
"entries": {
"memory-core-plus": {
"enabled": true,
"config": {
"autoRecall": true,
"autoCapture": true
}
}
},
"slots": {
"memory": "memory-core-plus"
}
}
}
| Key | Type | Default | Description |
|---|---|---|---|
autoRecall | boolean | true | Enable automatic memory recall before each agent turn |
autoRecallMaxResults | number | 5 | Maximum memories to inject per turn |
autoRecallMinPromptLength | number | 5 | Minimum prompt length (chars) to trigger recall |
autoCapture | boolean | true | Enable automatic memory capture after each agent run |
autoCaptureMaxMessages | number | 10 | Maximum recent messages to analyze for capture |
openclaw plugins uninstall memory-core-plus
openclaw gateway restart
The gateway automatically falls back to the built-in memory-core.