← ClaudeAtlas

wiki-searchlisted

Find relevant LLM-wiki and docs/ content via qmd (local hybrid keyword+vector+rerank search) before reading or editing the wiki. The canonical discovery layer every agent uses — qmd surfaces which pages are relevant, then you open them and follow [[wikilinks]] one hop. Use when searching notes, finding related content, or retrieving documents from the indexed wiki/docs collections. Falls back to index.md Map-of-Content navigation when qmd is unavailable.
bibennurbani/geekstack-flow · ★ 3 · AI & Automation · score 69
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