| name | vector-memory |
| description | Smart memory search with automatic vector fallback. Uses semantic embeddings when available, falls back to built-in search otherwise. Zero configuration - works immediately after ClawHub install. No setup required - just install and memory_search works immediately, gets better after optional sync. |
Vector Memory
Smart memory search that automatically selects the best method:
- Vector search (semantic, high quality) when synced
- Built-in search (keyword, fast) as fallback
Zero configuration required. Works immediately after install.
Quick Start
Install from ClawHub
npx clawhub install vector-memory
Done! memory_search now works with automatic method selection.
Optional: Sync for Better Results
node vector-memory/smart_memory.js --sync
After sync, searches use neural embeddings for semantic understanding.
How It Works
Smart Selection
memory_search("James principles values")
Behavior Flow
- Check: Is vector index ready?
- Yes: Use semantic search (synonyms, concepts)
- No: Use built-in search (keywords)
- Vector fails: Automatically fall back