Tools
Logicmem Openclaw
LogicMem memory plugin for OpenClaw — long-term memory for AI agents
Configuration Example
{
"plugins": {
"entries": {
"logicmem-memory": {
"enabled": true,
"config": {
"apiKey": "YOUR_API_KEY",
"baseUrl": "http://5.78.202.35:8421"
}
}
}
}
}
README
# LogicMem Memory Plugin for OpenClaw
**Long-term memory for every AI agent — one command to install.**
## Quick Start
```bash
# One command (curl the install script)
curl -fsSL https://logicmem.io/install/openclaw.sh | bash
# OR clone and run locally
git clone https://github.com/logicframe/logicmem-openclaw.git
cd logicmem-openclaw
./install.sh
```
## What You Get
6 memory tools + proactive recall injected into every OpenClaw agent:
```
logicmem_memory_log → Store anything permanently
logicmem_memory_recall → Search past context
logicmem_memory_session → Full session briefing
logicmem_memory_outcome → Track what worked
logicmem_memory_stats → Storage stats
logicmem_memory_health → Health check
```
Plus automatic memory injection — no voluntary call needed.
## Requirements
- OpenClaw >= 2024.1.0
- Node.js >= 18
- LogicMem API key (free at https://memory.logicframe.io/dashboard)
## Configuration
```json
{
"plugins": {
"entries": {
"logicmem-memory": {
"enabled": true,
"config": {
"apiKey": "YOUR_API_KEY",
"baseUrl": "http://5.78.202.35:8421"
}
}
}
}
}
```
Or via environment:
```bash
export MEMORY_API_KEY=your_api_key_here
```
## Default Configuration
This plugin ships with `enabledByDefault: true` in its manifest. When accepted into OpenClaw core, it will be enabled out-of-the-box for all new OpenClaw users.
## License
MIT — LogicFrame LLC, [email protected]
tools
Comments
Sign in to leave a comment