qmd 文档创建
- 作者仓库星标 39
- 作者仓库 awesome-omni-skill
qmd - Local Markdown Search
Local search engine for Markdown notes, docs, and knowledge bases. Index once, search fast. Use instead of find for file discovery across large directories.
Installation
bun install -g https://github.com/tobi/qmd
Setup
# Add a collection
qmd collection add /path/to/your/notes --name notes --mask "**/*.md"
# Generate embeddings (required for vsearch/query)
qmd embed
# List your collections
qmd collection list
When to Use
- "search my notes / docs / knowledge base"
- "find related notes"
- "find files matching [pattern]" — use instead of
findto avoid hangs on large directories - "what did we decide about X?"
Default Behavior (important)
- Prefer
qmd search(BM25) — it's instant and should be the default. - Use
qmd vsearchonly when keyword search fails and you need semantic similarity. - Avoid
qmd queryunless the user explicitly wants the highest quality hybrid results and can tolerate long runtimes. - Always use
--jsonflag for structured output when invoking from an agent.
Search Commands
# Fast keyword search (default)
qmd search "authentication flow" --json
qmd search "config" --json -c notes
# Semantic search (slower, for conceptual queries)
qmd vsearch "how does login work" --json
qmd vsearch "best practices for error handling" --json -n 20
# Combined with reranking (best quality, slowest)
qmd query "implementing user auth" --json
qmd query "deployment process" --json --min-score 0.5
Search Mode Selection
| Mode | Speed | Quality | Best For |
|---|---|---|---|
search |
Fast | Good | Exact keywords, known terms |
vsearch |
Medium | Better | Conceptual queries, synonyms |
query |
Slow | Best | Complex questions, uncertain terms |
Search Options
| Option | Description |
|---|---|
-n NUM |
Number of results (default: 5, 20 with --json) |
-c, --collection |
Scope to specific collection |
--min-score NUM |
Minimum score threshold |
--full |
Return complete document content |
--json |
Structured JSON output (agent-friendly) |
--files |
File paths only (fast discovery) |
--all |
Return all matches |
Retrieve Documents
# Get full file
qmd get docs/guide.md --json
# Get by document hash ID
qmd get "#a1b2c3" --json
# Get specific lines
qmd get notes/meeting.md:50 -l 30 --json
# Get multiple files by glob
qmd multi-get "docs/*.md" --json
qmd multi-get "*.yaml" -l 50 --max-bytes 10240
Output Formats
--files— paths + scores (for file discovery)--json— structured with snippets--md— markdown formatted-n 10— limit results
Maintenance
qmd update # Re-index changed files
qmd status # Check index health
qmd collection list # List all collections
Keeping Index Fresh
# Hourly incremental updates (BM25):
0 * * * * export PATH="$HOME/.bun/bin:$PATH" && qmd update
# Optional: nightly embedding refresh:
0 5 * * * export PATH="$HOME/.bun/bin:$PATH" && qmd embed
MCP Server
qmd can run as an MCP server for direct agent integration:
qmd mcp
Exposes tools: qmd_search, qmd_vsearch, qmd_query, qmd_get, qmd_multi_get, qmd_status
Performance
qmd searchis typically instant.qmd vsearchcan take ~1 minute on first run (loads local LLM).qmd queryadds LLM reranking — can be slow, avoid for interactive use.
Models (auto-downloaded)
All run locally — no API keys needed.
- Embedding: embeddinggemma-300M
- Reranking: qwen3-reranker-0.6b
- Generation: Qwen3-0.6B
- Cache location:
~/.cache/qmd/models/ - Override with
XDG_CACHE_HOMEenvironment variable.
- 流狐分类
- AI 智能
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @diegosouzapw · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 即装即用
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- macOS · Linux · Windows
- 底层运行要求
- Bun
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- 读取环境变量
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Installation
Setup
"search my notes / docs / knowledge base" "find related notes" "find files matching [pattern]" — use instead of find to avoid hangs on large directories
Prefer qmd search (BM25) — it's instant and should be the default. Use qmd vsearch only when keyword search fails and you need semantic similarity. Avoid qmd query unless the user explicitly wants the highest quality hybrid results and can tolerate long…
Search Commands
Mode · Speed · Quality · Best For search · Fast · Good · Exact keywords, known terms vsearch · Medium · Better · Conceptual queries, synonyms
# qmd - Local Markdown Search
Local search engine for Markdown notes, docs, and knowledge bases. Index once, search fast. Use instead of `find` for file discovery across large directories.
## Installation
```bash
bun install -g https://github.com/tobi/qmd
```
## Setup
```bash
# Add a collection
qmd collection add /path/to/your/notes --name notes --mask "**/*.md"
# Generate embeddings (required for vsearch/query)
qmd embed
# List your collections
qmd collection list
```
## When to Use
- "search my notes / docs / knowledge base"
- "find related notes"
- "find files matching [pattern]" — use instead of `find` to avoid hangs on large directories
- "what did we decide about X?"
## Default Behavior (important)
- Prefer `qmd search` (BM25) — it's instant and should be the default.
- Use `qmd vsearch` only when keyword search fails and you need semantic similarity.
- Avoid `qmd query` unless the user explicitly wants the highest quality hybrid results and can tolerate long runtimes.
- **Always use `--json` flag** for structured output when invoking from an agent.
## Search Commands
```bash
# Fast keyword search (default)
qmd search "authentication flow" --json
qmd search "config" --json -c notes
# Semantic search (slower, for conceptual queries)
qmd vsearch "how does login work" --json
qmd vsearch "best practices for error handling" --json -n 20
# Combined with reranking (best quality, slowest)
qmd query "implementing user auth" --json
qmd query "deployment process" --json --min-score 0.5
```
### Search Mode Selection
| Mode | Speed | Quality | Best For |
|------|-------|---------|----------|
| `search` | Fast | Good | Exact keywords, known terms |
| `vsearch` | Medium | Better | Conceptual queries, synonyms |
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Installation → Setup → When to Use → Default Behavior (important) → Search Commands → Search Mode Selection
要点 -> Always use --json flag · Local search engine for Markdown notes, docs, and knowledge bases. · - Prefer qmd search (BM25) — it's instant and should be the default. · - qmd search is typically instant. · All run locally — no API keys needed.
文件/命令 -> find · qmd search · qmd vsearch · qmd query · --json · search · vsearch · query
内容 SHA-256 -> 73d8b9cc9658
原文结构
适用与边界
原文中的明确线索
find、qmd search、qmd vsearch、qmd query、--json、search、vsearch、query