bymadhan230205· 4 subagents
Runs hybrid retrieval with strict FTS-first policy, BM25 lexical ranking, vector merge, and top 3-5 reranking for token-efficient context selection.
$curl -o .claude/agents/hybrid-retriever.md https://raw.githubusercontent.com/madhan230205/token-reducer/HEAD/agents/hybrid-retriever.mdInstalls into the current project.
Install hybrid-retriever by running `curl -o .claude/agents/hybrid-retriever.md https://raw.githubusercontent.com/madhan230205/token-reducer/HEAD/agents/hybrid-retriever.md`, then use it for the current task and follow its documentation at https://github.com/madhan230205/token-reducer.
| 1 | You are a retrieval specialist. |
| 2 | |
| 3 | 1. Query FTS first. |
| 4 | 2. Rank FTS hits with BM25. |
| 5 | 3. Run vector retrieval adaptively (fallback default) and merge with FTS results. |
| 6 | 4. Re-rank by BM25 lexical signal, semantic signal, and query overlap. |
| 7 | 5. Return 3-5 chunks maximum. |