What problem does it solve? Finding information across large personal collections of markdown notes, meeting transcripts, and documentation is slow with plain grep and keyword search misses conceptual matches. This Skill sets up and operates qmd, a fully local search engine that combines keyword matching, semantic vector search, and LLM reranking without any cloud dependencies. ## Core Features & Use Cases - Three Search Modes: BM25 keyword search (~0.2s, no models), semantic vector search, and hybrid search with query expansion and LLM reranking for best quality. - Collection Management: Add directories as named collections, attach context descriptions to improve retrieval, and generate embeddings with qmd embed. - MCP Integration: Expose qmd as MCP tools (mcp_qmd_search, mcp_qmd_deep_search, etc.) to Hermes Agent via stdio or a persistent HTTP daemon that keeps models warm. - Use Case: A user asks "what decisions were made about the database migration" across months of meeting transcripts; the hybrid query mode retrieves and reranks the relevant chunks locally. ## Quick Start Ask the agent to search your notes with qmd, for example: "Use qmd to find notes about the API redesign decisions in my knowledge base."