779★openclaw-persistent-memory – OpenClaw Skill
openclaw-persistent-memory is an OpenClaw Skills integration for data analytics workflows. Persistent memory system - automatic context capture and semantic search
Skill Snapshot
| name | openclaw-persistent-memory |
| description | Persistent memory system - automatic context capture and semantic search OpenClaw Skills integration. |
| owner | webdevtodayjason |
| repository | webdevtodayjason/openclaw-persistent-memory |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @webdevtodayjason/openclaw-persistent-memory |
| last updated | Feb 7, 2026 |
Maintainer

webdevtodayjason
Maintains openclaw-persistent-memory in the OpenClaw Skills directory.
View GitHub profilename: openclaw-persistent-memory version: 0.1.0 description: Persistent memory system - automatic context capture and semantic search author: Jason Brashear / Titanium Computing repository: https://github.com/webdevtodayjason/openclaw_memory metadata: openclaw: requires: bins: ["openclaw-persistent-memory"] install: - id: node kind: node package: openclaw-persistent-memory bins: ["openclaw-persistent-memory"] label: "Install OpenClaw Persistent Memory (npm)"
OpenClaw Persistent Memory
Persistent memory system that automatically captures context across sessions using SQLite + FTS5.
Features
- 🧠 Auto-capture - Important observations saved automatically after each response
- 🔍 Auto-recall - Relevant memories injected before each prompt
- 💾 SQLite + FTS5 - Fast full-text search across all memories
- 🛠️ Tools -
memory_search,memory_get,memory_store,memory_delete - 📊 Progressive disclosure - Token-efficient retrieval
Setup
-
Install the npm package:
npm install -g openclaw-persistent-memory -
Start the worker service:
openclaw-persistent-memory start -
Install the OpenClaw extension:
# Copy extension to OpenClaw extensions directory cp -r node_modules/openclaw-persistent-memory/extension ~/.openclaw/extensions/openclaw-mem cd ~/.openclaw/extensions/openclaw-mem && npm install -
Configure OpenClaw (in
~/.openclaw/openclaw.json):{ "plugins": { "slots": { "memory": "openclaw-mem" }, "allow": ["openclaw-mem"], "entries": { "openclaw-mem": { "enabled": true, "config": { "workerUrl": "http://127.0.0.1:37778", "autoCapture": true, "autoRecall": true } } } } } -
Restart OpenClaw gateway
Tools Provided
| Tool | Description |
|---|---|
memory_search | Search memories with natural language |
memory_get | Get a specific memory by ID |
memory_store | Save important information |
memory_delete | Delete a memory by ID |
API Endpoints
Worker runs on http://127.0.0.1:37778:
| Endpoint | Method | Description |
|---|---|---|
/api/health | GET | Health check |
/api/stats | GET | Database statistics |
/api/search | POST | Full-text search |
/api/observations | GET | List recent observations |
/api/observations/:id | GET | Get observation |
/api/observations/:id | DELETE | Delete observation |
/api/observations/:id | PATCH | Update observation |
Troubleshooting
Worker not running
curl http://127.0.0.1:37778/api/health
# If fails, restart:
openclaw-persistent-memory start
Auto-recall not working
- Check OpenClaw logs:
tail ~/.openclaw/logs/*.log | grep openclaw-mem - Verify
plugins.slots.memoryis set to"openclaw-mem" - Restart gateway after config changes
OpenClaw Persistent Memory Skill
Give your AI agent long-term memory with automatic context capture and recall.
Features
- 🧠 Auto-capture - Important observations saved automatically
- 🔍 Auto-recall - Relevant memories injected before each prompt
- 💾 SQLite + FTS5 - Fast full-text search
- 🛠️ Tools -
memory_search,memory_get,memory_store,memory_delete
Installation
Via ClawHub (Recommended)
clawhub install openclaw-persistent-memory
Via npm
npm install -g openclaw-persistent-memory
Then follow INSTALL.md for extension setup.
Quick Links
License
AGPL-3.0
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install openclaw-persistent-memory?
Run openclaw add @webdevtodayjason/openclaw-persistent-memory in your terminal. This installs openclaw-persistent-memory into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/webdevtodayjason/openclaw-persistent-memory. Review commits and README documentation before installing.
