Agent Memory
Persistent memory for AI agents to store facts, learn from actions, recall information, and track entities across sessions.
Persistent memory for AI agents to store facts, learn from actions, recall information, and track entities across sessions.
Real data. Real impact.
Emerging
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
Persistent memory system for AI agents. Remember facts, learn from experience, and track entities across sessions.
clawdhub install agent-memory
from src.memory import AgentMemorymem = AgentMemory()
Remember facts
mem.remember("Important information", tags=["category"])
Learn from experience
mem.learn( action="What was done", context="situation", outcome="positive", # or "negative" insight="What was learned" )
Recall memories
facts = mem.recall("search query") lessons = mem.get_lessons(context="topic")
Track entities
mem.track_entity("Name", "person", {"role": "engineer"})
Add to your AGENTS.md or HEARTBEAT.md:
## Memory ProtocolOn session start:
- Load recent lessons:
mem.get_lessons(limit=5)- Check entity context for current task
- Recall relevant facts
On session end:
- Extract durable facts from conversation
- Record any lessons learned
Update entity information
Default:
~/.agent-memory/memory.db
Custom:
AgentMemory(db_path="/path/to/memory.db")No automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions4,600+ AI skills, agents & workflows. Install in 60 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.