🦀 ClawHub
Agent Memory Pro
by @aiwithabidi
Full AI agent memory stack — Mem0 unified memory engine with vector search (Qdrant) and knowledge graph (Neo4j), plus SQLite for structured data. Complete se...
⚡ When to Use
💡 Examples
Memory Engine (Mem0 — vectors + graph)
# Store a fact
python3 {baseDir}/scripts/memory_engine.py add "Abidi's business focuses on Voice AI"Semantic recall
python3 {baseDir}/scripts/memory_engine.py search "what does Abidi's business do"List all memories
python3 {baseDir}/scripts/memory_engine.py get-allTest connections (Qdrant, Neo4j, Langfuse)
python3 {baseDir}/scripts/memory_engine.py test
Structured Database (SQLite)
# List tables
python3 {baseDir}/scripts/structured_db.py tablesInsert data
python3 {baseDir}/scripts/structured_db.py insert projects '{"name":"MyProject","status":"active"}'Query
python3 {baseDir}/scripts/structured_db.py query "SELECT * FROM projects"
Setup & Seeding
# Install Python deps after container rebuild
bash {baseDir}/scripts/setup_brain.shBatch seed with key facts
python3 {baseDir}/scripts/seed_mem0.py
TERMINAL
clawhub install agent-memory-pro