agent-memory
Installation
SKILL.md
Agent Memory
Persistent memory system for AI agents. Remember facts, learn from experience, and track entities across sessions using a local SQLite database at ~/.agent-memory/memory.db.
Setup
clawdhub install agent-memory
Or install directly from the skill's source:
from src.memory import AgentMemory
mem = AgentMemory() # default: ~/.agent-memory/memory.db
mem = AgentMemory(db_path="/custom/path") # custom location