From claude-commands
Searches the local ~/llm_wiki/wiki directory for pages matching a query, extracting titles and snippets from frontmatter and content.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-commands:wiki-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
/wiki-search <query> [--wiki <wiki_dir>]
Search the wiki for pages matching a query. Searches titles, content, and tags.
--wiki <wiki_dir> overrides the default wiki location (~/llm_wiki/wiki).
# Parse args: query is first positional; --wiki <path> overrides default
WIKI="$HOME/llm_wiki/wiki"
QUERY="<first positional arg>"
if args contain "--wiki <path>"; then
WIKI="<path>"
fi
# Search titles and content
results=$(grep -rl "$QUERY" "$WIKI"/**/*.md 2>/dev/null | head -20)
# Also search frontmatter titles
title_results=$(grep -rl "title:" "$WIKI"/**/*.md 2>/dev/null | xargs grep -l -i "$QUERY" 2>/dev/null | head -10)
# Combine and deduplicate
combined=$(echo "$results"$'\n'"$title_results" | sort -u | head -20)
For each result, extract:
## Wiki Search: "<query>"
Found N results:
1. **[Page Title](path/to/page.md)**
~path/to/page.md~
> ...snippet of matching content...
2. **[Page Title](path/to/page.md)**
...
If no results: No wiki pages match "<query>".
npx claudepluginhub jleechanorg/claude-commands --plugin claude-commandsSearch the LLM Wiki using qmd (hybrid BM25/vector search). Finds relevant wiki pages, reads them, and synthesizes an answer with citations. Use when asking questions against the knowledge base.
Retrieves top-K wiki passages via SQLite FTS5 BM25 search with citations. Use before drafting new pages to avoid duplication or when the user references a wiki topic.
Search and query the wiki — get cited answers, with automatic research when knowledge is missing. Three depth modes. Use when: 'check wiki', 'what do we know about', 'look up', 'find in wiki', 'search wiki', 'search for', 'find information about', 'do we have notes on', 'wiki context', 'existing knowledge', 'research', 'look into', 'find out about', 'investigate', 'what is', 'how does X work'.