Install
openclaw skills install humanlike-memory-pluginLong-term memory plugin for OpenClaw: automatic recall, storage, and agent tools
openclaw skills install humanlike-memory-pluginLong-term memory plugin for OpenClaw. Gives your agent the ability to remember past conversations, user preferences, and important context across sessions.
memory_search and memory_storekind: "memory")Visit plugin.human-like.me → Register → Copy your mp_xxx key
openclaw plugins install @humanlikememory/human-like-mem
# Set API key (required)
openclaw config set plugins.entries.human-like-mem.config.apiKey "mp_your_key_here"
# Set as the active memory engine
openclaw config set plugins.slots.memory human-like-mem
# Enable memory search for the agent
openclaw config set agents.defaults.memorySearch '{"enabled":true}' --strict-json
openclaw restart
openclaw status
You should see:
Memory │ 0 files · 0 chunks · sources remote-api · plugin human-like-mem · vector ready
All options via openclaw config set plugins.entries.human-like-mem.config.<key> <value>:
| Key | Type | Default | Description |
|---|---|---|---|
apiKey | string | (required) | Your API key from plugin.human-like.me |
baseUrl | string | https://plugin.human-like.me | API endpoint |
userId | string | openclaw-user | User identifier |
agentId | string | auto-detected | Agent identifier |
recallEnabled | boolean | true | Enable automatic memory recall |
addEnabled | boolean | true | Enable automatic memory storage |
memoryLimitNumber | number | 6 | Max memories to recall per turn |
minScore | number | 0.1 | Minimum relevance score (0-1) |
minTurnsToStore | number | 5 | Store after N conversation turns |
stripPlatformMetadata | boolean | true | Do not send Feishu/Discord platform IDs unless explicitly enabled |
Once installed, your agent can actively use memory:
memory_search — Search past conversations and stored knowledgememory_store — Save important information for future recall| Problem | Solution |
|---|---|
| "API key not configured" | openclaw config set plugins.entries.human-like-mem.config.apiKey "mp_xxx" |
| "unavailable" in status | Set plugins.slots.memory to human-like-mem |
| Check logs | openclaw logs | grep "Memory Plugin" |
Apache-2.0