wiki-searchlisted
Install: claude install-skill bibennurbani/geekstack-flow
# Wiki Search (qmd)
## When to use this skill
Invoke this skill **whenever an agent needs to find content in the LLM-wiki or the project's `docs/`** — before reading wiki pages for context (Planner/Coder/Reviewer/Tester), before deciding which pages an ingest touches (Ingester), or whenever the user asks a question answered *from* the wiki (a Query).
This is the **discovery layer**, not a replacement for the wiki's structure: qmd finds *which* pages are relevant; you then open those pages and follow their `[[wikilinks]]` one hop. `wiki/index.md` remains the Map of Content and the always-current fallback.
**Do not** use this skill to edit the wiki (that's `ingest`) or to search source code (use the normal code-search tools — qmd indexes Markdown knowledge, not the codebase).
## Instructions
### How qmd indexes (why structure matters)
qmd chunks each Markdown file into ~900-token pieces, breaking at headings (H1/H2 score highest) and code fences; frontmatter indexing is *not* guaranteed. So retrieval quality is driven by structure: clear `##`/`###` sections (each a clean, self-contained chunk under ~900 tokens) and a lead summary sentence in the body's first chunk both retrieve far better than walls of prose. This applies to anything you index, not just the wiki — well-sectioned docs and ad-hoc collections search well, monolithic ones don't. For the full page convention (frontmatter `summary`, tag taxonomy, authoring rules), see the [ingest skill](../ingest/SKILL.md) — i