Hindsight memory plugin for OpenClaw - biomimetic long-term memory with fact extraction
npm install @vectorize-io/hindsight-openclawBiomimetic long-term memory for OpenClaw using Hindsight. Automatically captures conversations and intelligently recalls relevant context.
``bash1. Configure your LLM provider for memory extraction
Option A: OpenAI
export OPENAI_API_KEY="sk-your-key"
That's it! The plugin will automatically start capturing and recalling memories.
Documentation
For full documentation, configuration options, troubleshooting, and development guide, see:
OpenClaw Integration Documentation
Development
To test local changes to the Hindsight package before publishing:
1. Add
embedPackagePath to your plugin config in ~/.openclaw/openclaw.json:
`json
{
"plugins": {
"entries": {
"hindsight-openclaw": {
"enabled": true,
"config": {
"embedPackagePath": "/path/to/hindsight-wt3/hindsight-embed"
}
}
}
}
}
`2. The plugin will use
uv run --directory instead of uvx hindsight-embed@latest3. To use a specific profile for testing:
`bash
Check daemon status
uvx hindsight-embed@latest -p openclaw daemon statusView logs
tail -f ~/.hindsight/profiles/openclaw.logList profiles
uvx hindsight-embed@latest profile list
``- Hindsight Documentation
- OpenClaw Documentation
- GitHub Repository
MIT