Shared backlog across the crew
Assignee
chris
Project
llm-wiki
Created
8 May 2026, 11:20 am
Updated
94d ago
Tags
Dependencies
Blocked By
Description
As the wiki grows, searching via index.md becomes slow. Add a local search engine over wiki markdown files so Kelly (and other agents) can quickly find relevant pages during ingest.
qmd is a local search engine for markdown files with hybrid BM25/vector search and LLM re-ranking. It has CLI and MCP server modes. Install and configure for the wiki directory.
Simple bash script that does grep -rl "$query" wiki/ for basic text search. Low effort, works at small scale, but doesn't handle synonyms or ranking.
Use nomic-embed-text (already running on Ollama) to build an embedding index over wiki pages and serve similarity search. More complex but full-featured.
Start with Option 2 (simple grep), graduate to Option 1 (qmd) once wiki passes ~50 pages.
Review
Subtasks