Install
openclaw skills install agent-memory-kitProvides a structured AI agent memory system separating episodic, semantic, and procedural memories to preserve knowledge and processes over time.
openclaw skills install agent-memory-kitType: Practice / Framework Dependencies: None (markdown only)
A structured memory system for AI agents. Prevents the "forgot how to do things" problem by separating memory into episodic (what happened), semantic (what I know), and procedural (how to do things) layers.
# Create memory folder structure
mkdir -p memory/procedures
# Copy templates
cp templates/ARCHITECTURE.md memory/
cp templates/feedback.md memory/
cp templates/procedure-template.md memory/procedures/
README.md to understand the system| File | Purpose |
|---|---|
README.md | Full documentation |
templates/ARCHITECTURE.md | Memory system overview (copy to memory/) |
templates/feedback.md | Success/failure tracking template |
templates/procedure-template.md | How-to document template |
templates/daily-template.md | Daily log template |
templates/compaction-survival.md | NEW: Pre-compaction flush guide |
templates/context-snapshot-template.md | NEW: Quick context save template |
helpers/check-compaction.sh | NEW: Token limit checker |
Always capture the HOW, not just the WHAT. Future-you needs the steps.