Openclaw-master-skills qmd

Local search/indexing CLI (BM25 + vectors + rerank) with MCP mode.

install
source · Clone the upstream repo
git clone https://github.com/LeoYeAI/openclaw-master-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/LeoYeAI/openclaw-master-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/qmd" ~/.claude/skills/leoyeai-openclaw-master-skills-qmd && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/LeoYeAI/openclaw-master-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/qmd" ~/.openclaw/skills/leoyeai-openclaw-master-skills-qmd && rm -rf "$T"
manifest: skills/qmd/SKILL.md
source content

qmd

Use

qmd
to index local files and search them.

Indexing

  • Add collection:
    qmd collection add /path --name docs --mask "**/*.md"
  • Update index:
    qmd update
  • Status:
    qmd status

Search

  • BM25:
    qmd search "query"
  • Vector:
    qmd vsearch "query"
  • Hybrid:
    qmd query "query"
  • Get doc:
    qmd get docs/path.md:10 -l 40

Notes

  • Embeddings/rerank use Ollama at
    OLLAMA_URL
    (default
    http://localhost:11434
    ).
  • Index lives under
    ~/.cache/qmd
    by default.
  • MCP mode:
    qmd mcp
    .