From sundial-org-awesome-openclaw-skills-4
Enables fast local search for markdown files, notes, docs, and code using qmd CLI with BM25, vector semantic search, and LLM reranking. Replaces `find` for file discovery, code search, and documentation lookup.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
- **Finding files** — use instead of `find` across large directories (avoids hangs)
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
find across large directories (avoids hangs)# Keyword search (BM25)
qmd search "alpaca API" -c projects
# Semantic search (understands meaning)
qmd vsearch "how to implement stop loss"
# Combined search with reranking (best quality)
qmd query "trading rules for breakouts"
# File paths only (fast discovery)
qmd search "config" --files -c kell
# Full document content
qmd search "pattern detection" --full --line-numbers
# List collections
qmd collection list
# Add new collection
qmd collection add /path/to/folder --name myproject --mask "*.md,*.py"
# Re-index after changes
qmd update
# Get full file
qmd get myproject/README.md
# Get specific lines
qmd get myproject/config.py:50 -l 30
# Get multiple files by glob
qmd multi-get "*.yaml" -l 50 --max-bytes 10240
--files — paths + scores (for file discovery)--json — structured with snippets--md — markdown formatted-n 10 — limit results-c name) to scope searchesqmd update after adding new filesqmd embed to enable vector search (one-time, takes a few minutes)qmd search --files over find for large directoriesAll run locally — no API keys needed.