@memwyre/openclaw-plugin
v2.0.13
Published
OpenClaw plugin for MemWyre persistent memory.
Downloads
2,393
Maintainers
Readme

OpenClaw MemWyre Plugin
This plugin enables the OpenClaw autonomous agent to seamlessly use MemWyre as its persistent memory and context engine. It provides the agent with first-class tools to save notes and retrieve context from the MemWyre Vault.
Installation
Assuming you have OpenClaw installed, you can link or copy this directory into your OpenClaw plugins directory, or install it via the OpenClaw CLI using the local path.
Ensure dependencies are installed in this plugin folder:
cd openclaw-plugin npm installRegister the plugin with OpenClaw:
openclaw plugins install /path/to/openclaw-plugin
Configuration
You must configure the plugin in your OpenClaw settings (usually ~/.openclaw/config.json or via OpenClaw's plugin management CLI) with your MemWyre API key.
"plugins": {
"entries": {
"openclaw-plugin": {
"enabled": true,
"config": {
"apiKey": "bv_sk_your_api_key_here",
"hostUrl": "https://server.memwyre.tech"
}
}
}
}apiKey: Generate this from the MemWyre web interface under Settings > API Keys.hostUrl: The URL where your MemWyre backend is running. Defaults tohttps://server.memwyre.tech.
Tools Provided
Once configured, the OpenClaw agent will have access to the following tools:
save_memory(text, tags): Saves a new memory/note directly into your MemWyre Inbox.search_memwyre(query): Performs semantic search across your MemWyre Vault to retrieve past context.
