From sundial-org-awesome-openclaw-skills-4
Combines LanceDB auto-recall, Git-Notes structured memory, and file-based workspace search for persistent agent context across sessions. Use for managing decisions, preferences, and tasks with multiple memory backends.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:triple-memoryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A comprehensive memory architecture combining three complementary systems for maximum context retention across sessions.
A comprehensive memory architecture combining three complementary systems for maximum context retention across sessions.
User Message
↓
[LanceDB auto-recall] → injects relevant conversation memories
↓
Agent responds (using all 3 systems)
↓
[LanceDB auto-capture] → stores preferences/decisions automatically
↓
[Git-Notes] → structured decisions with entity extraction
↓
[File updates] → persistent workspace docs
memory_recall, memory_store, memory_forgetscripts/file-search.sh{
"plugins": {
"slots": { "memory": "memory-lancedb" },
"entries": {
"memory-lancedb": {
"enabled": true,
"config": {
"embedding": { "apiKey": "${OPENAI_API_KEY}", "model": "text-embedding-3-small" },
"autoRecall": true,
"autoCapture": true
}
}
}
}
}
clawdhub install git-notes-memory
Copy scripts/file-search.sh to your workspace.
python3 skills/git-notes-memory/memory.py -p $WORKSPACE sync --start
python3 skills/git-notes-memory/memory.py -p $WORKSPACE remember \
'{"decision": "Use PostgreSQL", "reason": "Team expertise"}' \
-t architecture,database -i h
./scripts/file-search.sh "database config" 5
LanceDB handles this automatically. Manual tools:
memory_recall "query" - search conversation memorymemory_store "text" - manually store somethingmemory_forget - delete memories (GDPR)| Flag | Level | When to Use |
|---|---|---|
-i c | Critical | "always remember", explicit preferences |
-i h | High | Decisions, corrections, preferences |
-i n | Normal | General information |
-i l | Low | Temporary notes |
| System | Use For |
|---|---|
| LanceDB | Conversation context, auto-retrieval |
| Git-Notes | Structured decisions, searchable by entity/tag |
| File Search | Workspace docs, daily logs, MEMORY.md |
workspace/
├── MEMORY.md # Long-term curated memory
├── memory/
│ ├── active-context.md # Current session state
│ └── YYYY-MM-DD.md # Daily logs
├── scripts/
│ └── file-search.sh # Workspace search
└── skills/
└── git-notes-memory/ # Structured memory
Never announce memory operations to users. Just do it:
npx claudepluginhub sundial-org/awesome-openclaw-skillsCombines LanceDB auto-recall, Git-Notes structured memory, and workspace file search for persistent agent memory across sessions.
Persists AI agent context across sessions using WAL protocol, LanceDB vector search, git-notes, and optional cloud backup. Activates on memory-related queries or context loss.
Multi-layer AI agent memory system combining session state, vector search (LanceDB), git-based knowledge graphs, and cloud backup. Prevents context loss across sessions.