QMD Status Query
This skill queries the QMD memory backend status.
Usage
Run the status script to get current QMD statistics:
~/.openclaw/skills/qmd-status/scripts/status.sh
What it shows
- Index location and size
- Total indexed documents
- Vector embeddings count
- Collection details (memory-root, memory-alt, memory-dir)
Manual queries
For advanced usage, run QMD commands directly:
export PATH="$HOME/.bun/bin:$PATH"
# Full status
qmd status
# List collections
qmd collection list
# Search memories
qmd search "keyword" -n 5
# Query with reranking (slower)
qmd query "search term" --json
Troubleshooting
- If
qmdnot found: Check~/.bun/binis in PATH - If no collections: Run
qmd collection addto index files - If no vectors: Run
qmd embedto generate embeddings