diff --git a/docs/reference/AGENTS.default.md b/docs/reference/AGENTS.default.md index 957b516ab..d10ce080d 100644 --- a/docs/reference/AGENTS.default.md +++ b/docs/reference/AGENTS.default.md @@ -88,7 +88,6 @@ git commit -m "Add Clawd workspace" - **Peekaboo** — Fast macOS screenshots with optional AI vision analysis. - **camsnap** — Capture frames, clips, or motion alerts from RTSP/ONVIF security cams. - **oracle** — OpenAI-ready agent CLI with session replay and browser control. -- **qmd** — Hybrid markdown search (BM25 + vectors + rerank) with a local server for agents. - **eightctl** — Control your sleep, from the terminal. - **imsg** — Send, read, stream iMessage & SMS. - **wacli** — WhatsApp CLI: sync, search, send. diff --git a/docs/reference/templates/AGENTS.md b/docs/reference/templates/AGENTS.md index 34dbd3465..776bace8e 100644 --- a/docs/reference/templates/AGENTS.md +++ b/docs/reference/templates/AGENTS.md @@ -46,16 +46,6 @@ Capture what matters. Decisions, context, things to remember. Skip the secrets u - When you make a mistake → document it so future-you doesn't repeat it - **Text > Brain** 📝 -### 🧠 Memory Recall - Use qmd! -When you need to remember something from the past, use `qmd` instead of grepping files: -```bash -qmd query "what happened at Christmas" # Semantic search with reranking -qmd search "specific phrase" # BM25 keyword search -qmd vsearch "conceptual question" # Pure vector similarity -``` -Index your memory folder: `qmd index memory/` -Vectors + BM25 + reranking finds things even with different wording. - ## Safety - Don't exfiltrate private data. Ever. diff --git a/skills/qmd/SKILL.md b/skills/qmd/SKILL.md deleted file mode 100644 index c9ebebf9f..000000000 --- a/skills/qmd/SKILL.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: qmd -description: Local search/indexing CLI (BM25 + vectors + rerank) with MCP mode. -homepage: https://tobi.lutke.com -metadata: {"clawdbot":{"emoji":"📝","requires":{"bins":["qmd"]},"install":[{"id":"node","kind":"node","package":"https://github.com/tobi/qmd","bins":["qmd"],"label":"Install qmd (node)"}]}} ---- - -# 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`.