Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Ultimate AI agent memory system for Cursor, Claude, ChatGPT & Copilot. WAL protocol + vector search + git-notes + cloud backup. Never lose context again. Vibe-coding ready.
Ultimate AI agent memory system for Cursor, Claude, ChatGPT & Copilot. WAL protocol + vector search + git-notes + cloud backup. Never lose context again. Vibe-coding ready.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
The ultimate memory system for AI agents. Combines 6 proven approaches into one bulletproof architecture. Never lose context. Never forget decisions. Never repeat mistakes.
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ ELITE LONGTERM MEMORY โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ โ โ โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ โ โ โ HOT RAM โ โ WARM STORE โ โ COLD STORE โ โ โ โ โ โ โ โ โ โ โ โ SESSION- โ โ LanceDB โ โ Git-Notes โ โ โ โ STATE.md โ โ Vectors โ โ Knowledge โ โ โ โ โ โ โ โ Graph โ โ โ โ (survives โ โ (semantic โ โ (permanent โ โ โ โ compaction)โ โ search) โ โ decisions) โ โ โ โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ โ โ โ โ โ โ โ โโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโ โ โ โผ โ โ โโโโโโโโโโโโโโโ โ โ โ MEMORY.md โ โ Curated long-term โ โ โ + daily/ โ (human-readable) โ โ โโโโโโโโโโโโโโโ โ โ โ โ โ โผ โ โ โโโโโโโโโโโโโโโ โ โ โ SuperMemory โ โ Cloud backup (optional) โ โ โ API โ โ โ โโโโโโโโโโโโโโโ โ โ โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
From: lancedb-memory Semantic search across all memories. Auto-recall injects relevant context. # Auto-recall (happens automatically) memory_recall query="project status" limit=5 # Manual store memory_store text="User prefers dark mode" category="preference" importance=0.9
From: git-notes-memory Structured decisions, learnings, and context. Branch-aware. # Store a decision (SILENT - never announce) python3 memory.py -p $DIR remember '{"type":"decision","content":"Use React for frontend"}' -t tech -i h # Retrieve context python3 memory.py -p $DIR get "frontend"
From: OpenClaw native Human-readable long-term memory. Daily logs + distilled wisdom. workspace/ โโโ MEMORY.md # Curated long-term (the good stuff) โโโ memory/ โโโ 2026-01-30.md # Daily log โโโ 2026-01-29.md โโโ topics/ # Topic-specific files
From: supermemory Cross-device sync. Chat with your knowledge base. export SUPERMEMORY_API_KEY="your-key" supermemory add "Important context" supermemory search "what did we decide about..."
NEW: Automatic fact extraction Mem0 automatically extracts facts from conversations. 80% token reduction. npm install mem0ai export MEM0_API_KEY="your-key" const { MemoryClient } = require('mem0ai'); const client = new MemoryClient({ apiKey: process.env.MEM0_API_KEY }); // Conversations auto-extract facts await client.add(messages, { user_id: "user123" }); // Retrieve relevant memories const memories = await client.search(query, { user_id: "user123" }); Benefits: Auto-extracts preferences, decisions, facts Deduplicates and updates existing memories 80% reduction in tokens vs raw history Works across sessions automatically
In ~/.openclaw/openclaw.json: { "memorySearch": { "enabled": true, "provider": "openai", "sources": ["memory"], "minScore": 0.3, "maxResults": 10 }, "plugins": { "entries": { "memory-lancedb": { "enabled": true, "config": { "autoCapture": false, "autoRecall": true, "captureCategories": ["preference", "decision", "fact"], "minImportance": 0.7 } } } } }
cd ~/clawd git init # if not already python3 skills/git-notes-memory/memory.py -p . sync --start
# Ensure you have: # - MEMORY.md in workspace root # - memory/ folder for daily logs mkdir -p memory
export SUPERMEMORY_API_KEY="your-key" # Add to ~/.zshrc for persistence
Read SESSION-STATE.md โ this is your hot context Run memory_search for relevant prior context Check memory/YYYY-MM-DD.md for recent activity
User gives concrete detail? โ Write to SESSION-STATE.md BEFORE responding Important decision made? โ Store in Git-Notes (SILENTLY) Preference expressed? โ memory_store with importance=0.9
Update SESSION-STATE.md with final state Move significant items to MEMORY.md if worth keeping long-term Create/update daily log in memory/YYYY-MM-DD.md
Review SESSION-STATE.md โ archive completed tasks Check LanceDB for junk: memory_recall query="*" limit=50 Clear irrelevant vectors: memory_forget id=<id> Consolidate daily logs into MEMORY.md
Write-Ahead Log: Write state BEFORE responding, not after. TriggerActionUser states preferenceWrite to SESSION-STATE.md โ then respondUser makes decisionWrite to SESSION-STATE.md โ then respondUser gives deadlineWrite to SESSION-STATE.md โ then respondUser corrects youWrite to SESSION-STATE.md โ then respond Why? If you respond first and crash/compact before saving, context is lost. WAL ensures durability.
User: "Let's use Tailwind for this project, not vanilla CSS" Agent (internal): 1. Write to SESSION-STATE.md: "Decision: Use Tailwind, not vanilla CSS" 2. Store in Git-Notes: decision about CSS framework 3. memory_store: "User prefers Tailwind over vanilla CSS" importance=0.9 4. THEN respond: "Got it โ Tailwind it is..."
# Audit vector memory memory_recall query="*" limit=50 # Clear all vectors (nuclear option) rm -rf ~/.openclaw/memory/lancedb/ openclaw gateway restart # Export Git-Notes python3 memory.py -p . export --format json > memories.json # Check memory health du -sh ~/.openclaw/memory/ wc -l MEMORY.md ls -la memory/
Understanding the root causes helps you fix them: Failure ModeCauseFixForgets everythingmemory_search disabledEnable + add OpenAI keyFiles not loadedAgent skips reading memoryAdd to AGENTS.md rulesFacts not capturedNo auto-extractionUse Mem0 or manual loggingSub-agents isolatedDon't inherit contextPass context in task promptRepeats mistakesLessons not loggedWrite to memory/lessons.md
If you have an OpenAI key, enable semantic search: openclaw configure --section web This enables vector search over MEMORY.md + memory/*.md files.
Auto-extract facts from conversations. 80% token reduction. npm install mem0ai const { MemoryClient } = require('mem0ai'); const client = new MemoryClient({ apiKey: process.env.MEM0_API_KEY }); // Auto-extract and store await client.add([ { role: "user", content: "I prefer Tailwind over vanilla CSS" } ], { user_id: "ty" }); // Retrieve relevant memories const memories = await client.search("CSS preferences", { user_id: "ty" });
memory/ โโโ projects/ โ โโโ strykr.md โ โโโ taska.md โโโ people/ โ โโโ contacts.md โโโ decisions/ โ โโโ 2026-01.md โโโ lessons/ โ โโโ mistakes.md โโโ preferences.md Keep MEMORY.md as a summary (<5KB), link to detailed files.
ProblemFixForgets preferencesAdd ## Preferences section to MEMORY.mdRepeats mistakesLog every mistake to memory/lessons.mdSub-agents lack contextInclude key context in spawn task promptForgets recent workStrict daily file disciplineMemory search not workingCheck OPENAI_API_KEY is set
Agent keeps forgetting mid-conversation: โ SESSION-STATE.md not being updated. Check WAL protocol. Irrelevant memories injected: โ Disable autoCapture, increase minImportance threshold. Memory too large, slow recall: โ Run hygiene: clear old vectors, archive daily logs. Git-Notes not persisting: โ Run git notes push to sync with remote. memory_search returns nothing: โ Check OpenAI API key: echo $OPENAI_API_KEY โ Verify memorySearch enabled in openclaw.json
bulletproof-memory: https://clawdhub.com/skills/bulletproof-memory lancedb-memory: https://clawdhub.com/skills/lancedb-memory git-notes-memory: https://clawdhub.com/skills/git-notes-memory memory-hygiene: https://clawdhub.com/skills/memory-hygiene supermemory: https://clawdhub.com/skills/supermemory Built by @NextXFrontier โ Part of the Next Frontier AI toolkit
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.