OpenClaw Plugin
OpenClaw Alchemyst Integration gives OpenClaw CLI agents perfect memory and context recall powered by Alchemyst AI.Features
- Auto-Recall β automatically injects relevant context before AI turns
- Auto-Capture β stores conversations automatically after AI responses
- 5 AI tools for manual memory management
- Slash commands β
/rememberand/recallfor in-chat use - CLI commands β search, profile, and wipe memories from terminal
Installation
1. Add API keys
Add your keys to~/.openclaw/.env:
2. Install the plugin
alchemyst-memory.
3. Enable in ~/.openclaw/openclaw.json
Do not add a config block β OpenClawβs schema will reject it.
4. Verify
How It Works
- Before each AI turn: the recall hook searches Alchemyst for relevant past context and prepends it to the prompt automatically.
- After each AI turn: the capture hook stores user and assistant messages under the session
openclaw-default.
Configuration
| Option | Type | Default | Description |
|---|---|---|---|
ALCHEMYST_API_KEY | env | required | Alchemyst API key |
withMemory | boolean | true | Enable auto-recall |
similarityThreshold | number | 0.7 | Context retrieval threshold |
minimumSimilarityThreshold | number | 0.5 | Fallback threshold |
maxMemories | number | 10 | Max memories per turn |
debug | boolean | false | Enable debug logging |
Commands
| Command | Description |
|---|---|
/remember <text> | Manually store something |
/recall <query> | Search stored memories |
openclaw alchemyst-search <query> | CLI memory search |
openclaw alchemyst-profile | View configuration |
openclaw alchemyst-wipe | Delete all memories |

