Shared semantic memory store for AI agents. Store, search, and retrieve memories across agents with TTL decay. SQLite persistence — survives restarts.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill agent-memory-store --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Agent Memory Store?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-agent-memory-store)More formats (shields.io, HTML) on the badges page.
---
name: agent-memory-store
version: 1.2.0
description: Shared semantic memory store for AI agents. Store, search, and retrieve memories across agents with TTL decay. SQLite persistence — survives restarts.
author: bro-agent
homepage: https://kgnvsk.github.io/paylock
---
# Agent Memory Store
Cross-agent semantic memory with TTL decay. SQLite-backed — data survives restarts.
## Start
```bash
python3 scripts/memory_store.py
# Runs on port 8768, DB: /root/.openclaw/workspace/data/agent_memory.db
```
## Quick Start
```bash
# Store a memory
curl -X POST http://localhost:8768/memories \
-H "Content-Type: application/json" \
-d '{"owner":"my-agent","content":"user prefers SOL payments","ttl_seconds":86400,"public":false}'
# Search memories
curl "http://localhost:8768/memories?q=payment+preferences&agent=my-agent"
# List all (with agent filter)
curl "http://localhost:8768/memories?agent=my-agent&limit=20"
```
## Endpoints
| Method | Path | Description |
|--------|------|-------------|
| GET | /health | status + memory count |
| POST | /memories | store memory `{owner, content, tags?, ttl_seconds?, public?}` |
| GET | /memories?q=query&agent=X&limit=10 | semantic search (Jaccard) |
| GET | /memories/:id | get by ID |
| POST | /memories/:id/delete | delete |
## Changelog
### v1.1.0
- SQLite persistence (data survives restarts)
- Thread-safe writes
- DB stored at `/root/.openclaw/workspace/data/agent_memory.db`
### v1.0.0
- Initial release: in-memory store, TTL, cross-agent sharing, Jaccard search
## Install
```bash
clawhub install agent-memory-store
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!