triple-memoryComplete memory system combining LanceDB auto-recall, Git-Notes structured memory, and file-based workspace search. Use when setting up comprehensive agent memory, when you need persistent context across sessions, or when managing decisions/preferences/tasks with multiple memory backends working together.
Install via ClawdBot CLI:
clawdbot install ktpriyatham/triple-memoryA 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:
Generated Mar 1, 2026
An AI customer support agent uses Triple Memory to recall past interactions and user preferences automatically via LanceDB, store structured decisions like product recommendations in Git-Notes, and search internal knowledge bases with file search for troubleshooting guides. This ensures consistent, personalized support across sessions without manual context switching.
A development team employs Triple Memory to track architectural decisions and coding preferences per git branch using Git-Notes, auto-capture meeting notes and task assignments with LanceDB, and search project documentation via file search. This streamlines collaboration and maintains context across sprints and code reviews.
An individual uses Triple Memory to auto-recall daily habits and goals through LanceDB, store structured decisions like time management strategies in Git-Notes, and search personal notes and logs with file search. This enhances task prioritization and long-term planning without repetitive input.
A healthcare AI agent utilizes Triple Memory to auto-capture patient preferences and treatment decisions via LanceDB, store structured medical protocols and compliance notes in Git-Notes, and search electronic health records with file search. This improves care continuity and regulatory adherence across sessions.
An AI tutoring platform integrates Triple Memory to recall student learning progress and preferences automatically with LanceDB, store structured lesson plans and feedback in Git-Notes, and search educational resources via file search. This personalizes learning paths and adapts to student needs over time.
Offer Triple Memory as a premium feature in a monthly subscription plan for businesses using AI agents, charging based on memory storage volume and usage frequency. Revenue streams include tiered pricing for small teams to enterprise clients, with add-ons for advanced analytics and integration support.
Provide consulting services to help organizations implement and customize Triple Memory for specific use cases, such as customer support or project management. Revenue is generated through one-time setup fees, ongoing maintenance contracts, and training workshops for teams.
Distribute Triple Memory as open-source software with a free basic version, monetizing through paid enterprise features like enhanced security, priority support, and cloud hosting. Revenue comes from licensing fees for commercial use and partnerships with AI tool providers.
š¬ Integration Tip
Start by enabling LanceDB for auto-recall to capture conversation context, then integrate Git-Notes for structured decision storage, and finally set up file search for workspace documentation to maximize memory coverage without overwhelming users.
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Clau...
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Search and analyze your own session logs (older/parent conversations) using jq.
Typed knowledge graph for structured agent memory and composable skills. Use when creating/querying entities (Person, Project, Task, Event, Document), linking related objects, enforcing constraints, planning multi-step actions as graph transformations, or when skills need to share state. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", entity CRUD, or cross-skill data access.
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.
Headless browser automation CLI optimized for AI agents with accessibility tree snapshots and ref-based element selection