Loading...
Loading...
Local hybrid search for markdown notes and docs. Use when searching notes, finding related content, or retrieving documents from indexed collections.
npx skill4agent add ckorhonen/claude-skills qmdqmd searchqmd vsearchqmd query| Mode | Command | Speed | Use case |
|---|---|---|---|
| BM25 (default) | | Instant | Keyword matching |
| Vector | | ~1 min cold | Semantic similarity |
| Hybrid | | Slowest | LLM reranking (skip unless requested) |
qmd search "query" # default - fast keyword search
qmd search "query" -c notes # search specific collection
qmd search "query" -n 10 # more results
qmd search "query" --json # JSON output
qmd search "query" --all --files --min-score 0.3-n <num>-c, --collection <name>--all --min-score <num>--json--files--fullqmd get "path/to/file.md" # Full document
qmd get "#docid" # By ID from search results
qmd multi-get "journals/2025-05*.md"
qmd multi-get "doc1.md, doc2.md, #abc123" --jsonqmd status # Index health
qmd update # Re-index changed files
qmd embed # Update embeddings# Install
bun install -g https://github.com/tobi/qmd
# Create collection
qmd collection add /path/to/notes --name notes --mask "**/*.md"
qmd context add qmd://notes "Description of this collection" # optional
qmd embed # one-time to enable vector + hybrid searchqmd searchqmd vsearchqmd queryvsearch