Persistent memory system for AI agents. Remember facts, learn from experience, and track entities across sessions.
Quality Overview
This visitor-facing snapshot helps you judge whether the Skill is clear, executable, and ready to reference or download.
SAFE-3
80+ strong · 60+ usablePersistent memory system for AI agents. Remember facts, learn from experience, and track entities across sessions.
clawdhub install agent-memoryfrom src.memory import AgentMemory
mem = 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 Protocol
On session start:
1. Load recent lessons: `mem.get_lessons(limit=5)`
2. Check entity context for current task
3. Recall relevant facts
On session end:
1. Extract durable facts from conversation
2. Record any lessons learned
3. Update entity informationDefault: ~/.agent-memory/memory.db
Custom: AgentMemory(db_path="/path/to/memory.db")
Read more
[More in Agents](/skills?category=agents)
Downloads
Security audit [Pass](/dennis-da-menace/skills/agent-memory/security-audit)
Last updated 1mo ago
Current version v1.0.0
License MIT-0
Report
import: clawhub https://clawhub.ai/dennis-da-menace/agent-memory
Notes
Read-only mode. Sign in to comment.
No comments yet.
Personas
Transform into 20 specialized AI personalities on demand. Switch mid-conversation and load only the active persona.
Fluid Memory
基于艾宾浩斯遗忘曲线和访问频率的衰减模型设计的遗忘和归档机制,完全依赖openclaw原生记忆系统的拟人化流体记忆系统
Evolver
A self-evolution engine for AI agents. Analyzes runtime history to identify improvements and applies protocol-constrained evolution. Communicates with EvoMap...
Evolver
A self-evolution engine for AI agents. Analyzes runtime history to identify improvements and applies protocol-constrained evolution. Communicates with EvoMap...
Capability Evolver
Meta-skill for AI agent self-improvement. Analyzes runtime logs to detect error patterns, regressions, and inefficiencies, then generates structured improvem...
Memory Evolver
记忆系统优化器 - 结合三层记忆与知识图谱的持续自我进化系统。自动诊断、优化、记录记忆系统状态,实现记忆的持续进化。