From wshobson-hybrid-search-implementation
Combines vector and keyword search for improved retrieval in RAG systems and search engines. Covers fusion methods like RRF, linear weighting, cross-encoder reranking, and cascade filtering.
How this skill is triggered — by the user, by Claude, or both
Slash command
/wshobson-hybrid-search-implementation:hybrid-search-implementationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Patterns for combining vector similarity and keyword-based search.
Patterns for combining vector similarity and keyword-based search.
Query → ┬─► Vector Search ──► Candidates ─┐
│ │
└─► Keyword Search ─► Candidates ─┴─► Fusion ─► Results
| Method | Description | Best For |
|---|---|---|
| RRF | Reciprocal Rank Fusion | General purpose |
| Linear | Weighted sum of scores | Tunable balance |
| Cross-encoder | Rerank with neural model | Highest quality |
| Cascade | Filter then rerank | Efficiency |
Full template library and detailed worked examples live in references/details.md. Read that file when you need the concrete templates.
3plugins reuse this skill
First indexed Jun 3, 2026
npx claudepluginhub p/wshobson-wshobson-hybrid-search-implementation-plugins-llm-application-dev-skills-hybrid-search-implementationCombines vector and keyword search for improved retrieval in RAG systems and search engines. Covers fusion methods like RRF, linear weighting, cross-encoder reranking, and cascade filtering.
Combines vector similarity and keyword search for improved retrieval in RAG systems and search engines. Use when pure vector search misses exact matches.
Combine vector and keyword search for improved retrieval. Use when implementing RAG systems, building search engines, or when neither approach alone provides sufficient recall.