Install
openclaw skills install chromadb-pluginIntegrates ChromaDB vector database with OpenClaw, enabling GPU-accelerated, zero-migration, multi-collection vector memory and hybrid search.
openclaw skills install chromadb-pluginRun the one-click installer:
# Windows
install.bat
# Linux/macOS
chmod +x install.sh && ./install.sh
Update config.yaml:
vector_store:
type: chromadb
path: "./chromadb"
model: "BAAI/bge-m3"
Run the migration script to import existing LanceDB data:
python migrate_lancedb.py --lancedb-path ./lancedb --chromadb-path ./chromadb
test_chromadb.py: Verify plugin installation and functionalitymigrate_lancedb.py: Migrate existing LanceDB data to ChromaDB