Integrations
QMD Integration
qmd setup and operational usage for ClawVault search and context workflows.
ClawVault uses qmd for search and semantic retrieval.
Install qmd
# npm
npm install -g qmd
# or bun
bun install -g qmd
qmd --versionRegister Vault Collection
qmd collection add /path/to/vault --name clawvault-memory --mask "**/*.md"
qmd update
qmd embedUse with ClawVault
# BM25 keyword search
clawvault search "database decision"
# Semantic search
clawvault vsearch "what did we decide about storage"
# Graph-aware retrieval
clawvault context "auth migration plan" --profile planningKeep Index Fresh
qmd update
qmd embedRun these after major vault edits/imports.
Troubleshooting
qmd not found
qmd --versionIf missing, reinstall qmd and ensure global bin path is on PATH.
collection not found
qmd collection list
qmd collection add /path/to/vault --name clawvault-memory --mask "**/*.md"
qmd update
qmd embedslow semantic search
- Re-run
qmd embedto refresh embeddings. - Reduce indexed scope with a tighter mask/exclude strategy in qmd collection config.
Important
Avoid relying on undocumented ClawVault config keys for qmd behavior; prefer direct qmd commands shown above.