π¦ ClawHub
memory-core-plus
by @zhoulf1006
Enhances OpenClaw memory by auto-recalling relevant past data before each turn and auto-capturing key info after each run for persistent context.
βοΈ Configuration
{
"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 |
TERMINAL
clawhub install memory-core-plus