deepera-deep-evidence-reranking

Installation
SKILL.md

DeepEra: Deep Evidence Reranking for RAG Pipelines

This skill enables Claude to implement a deep evidence reranking strategy based on the DeepEra framework (Chen et al., 2026). Instead of relying on embedding similarity scores alone to rank retrieved passages, Claude applies structured chain-of-thought reasoning to each candidate passage, evaluating whether it logically supports answering the query — not merely whether it shares vocabulary with it. This directly combats the Semantically Similar but Logically Irrelevant (SSLI) problem, where passages score highly on vector similarity but contribute nothing (or worse, misleading content) to the final answer.

When to Use

  • When building or improving a two-stage RAG pipeline (retrieval + reranking) and retrieved passages frequently mislead the generator.
  • When the user reports that their RAG system hallucinates despite retrieving "relevant-looking" documents.
  • When implementing scientific question answering over a large corpus where precision matters more than recall.
  • When the user asks to rerank search results, filter noisy retrieval output, or score passages for relevance.
  • When debugging a RAG pipeline where the retriever returns topically related but logically unhelpful passages (e.g., a passage about "transformer architecture" for a query about "electrical transformers").
  • When the user wants to add an LLM-as-judge reranking step to an existing retrieval system.

Key Technique: Reasoning-Based Reranking to Defeat SSLI

Traditional rerankers (cross-encoders like BGE-Reranker, Jina-Reranker) compute a single relevance score from the concatenated query-passage pair. They are fast but blind to logical relevance — a passage about "attention mechanisms in neural networks" will score highly against a query about "attention deficit disorder" because they share the token "attention." These are SSLI passages: they pass the semantic filter but fail the logic test.

DeepEra replaces the single-score paradigm with a reasoning agent that evaluates each passage through a structured chain of thought. The agent decomposes the query into its core information need, then examines each candidate passage across four dimensions: (1) whether the passage directly addresses the query's actual question, (2) whether the factual claims in the passage are internally consistent, (3) whether the passage provides evidence that could ground a correct answer, and (4) whether the passage would be useful — not just topically adjacent — for generating a faithful response. Only passages that survive all four checks are promoted.

Installs
1
GitHub Stars
6
First Seen
Jun 20, 2026
deepera-deep-evidence-reranking — ndpvt-web/arxiv-claude-skills