Developer Retrieval
Benchmark 2026
Compare developer retrieval tools on how reliably they surface the repository behind a described capability, the pull request that fixed a bug, and the docs page that answers a how-to.
- Last updated
- [ Updated Aug 21, 2026 ]
- Systems compared
- [ 8 systems ]
- Dataset
- [ 1,179 tasks ]
How the systems stack up
Leaderboard
Overall recall with a 95% confidence interval. Switch tracks to see how the ranking changes.
Full results
Every metric for all 8 systems. The best value in each column is highlighted, and control rows are reference points rather than products.
| # | System | Repo (higher is better) | Issue/PR (higher is better) | Docs (higher is better) | Overall recall (higher is better) | Overall MRR (higher is better) |
|---|---|---|---|---|---|---|
| 01 | 76.1% | 66.0% | 47.2% | 63.1% | 0.596 | |
| 02 | 81.9% | 62.9% | 28.2% | 57.7% | 0.561 | |
| 03 | 77.6% | 56.5% | 38.6% | 57.6% | 0.549 | |
| 04 | 74.3% | 56.0% | 33.4% | 54.6% | 0.538 | |
| 05 | 73.3% | 58.5% | 29.3% | 53.7% | 0.538 | |
| 06 | 80.7% | 27.5% | 28.0% | 45.4% | 0.458 | |
| 07 | 0.8% | 2.9% | 46.6% | 16.8% | 0.144 | |
| 08 | No toolscontrolThe agent answering from memory with no search at all. The floor every row is read against. | 0.5% | 0.0% | 3.4% | 1.3% | 0.009 |
How is developer retrieval measured?
Three retrieval tracks
The retrieval tasks developer agents spend most of their tool calls on.
Retrieval-forcing questions
Questions are written so the answer cannot come from memory: repository names are hidden and documentation questions are paraphrased from the source.
Deterministic gold references
Each item is scored against fixed gold references, so scoring is exact and no model judges the results.
Memorization check
Run the same evaluation with search disabled and drop every item the model can answer without retrieval.
Final benchmark
The evaluation harness and a public half of the dataset are open source, so any retrieval system can be scored on the same tasks. Browse the code and data at firecrawl/benchmark-devdex.
Dataset
1,179 tasks scored on the full sets. A 594-item public sample, about half of each track, ships for reproduction.
- Repository
Repository queries are created from capability descriptions of real, verifiable repositories. The dataset includes projects across a wide range of popularity levels rather than focusing only on well-known repositories. The repository name is never included in the query.
Example query“how to automatically route LLM classification requests to a cheaper model when confident and fall back otherwise”- Issue to fix
Issue and pull request queries are built from real issue and pull request pairs. For these questions, citing either the issue or the pull request is considered correct.
Example query“scikit-learn logisticregression random_state not workin”- Documentation
Documentation queries are created from real passages in a library's documentation. Each question is phrased differently from the wording used in the original passage. This reduces the possibility of matching the query directly to the source through surface-level language similarity.
Example query“How do I add Pydantic to my project using uv instead of pip?”
Metrics
How Recall@10 and MRR@10 are computed, how every system is driven, and the check that keeps memorized answers out.
Recall@10 and MRR@10
Two metrics, both computed over the agent's first ten citations. Recall@10 is the fraction of an item's correct answers that were cited. MRR@10 is the reciprocal rank of the first correct citation, so citing it first scores higher than citing it tenth.
The overall column is the equal-weight mean of the three track scores. A system is only given an overall score when it runs all three tracks.
How systems are driven
One agent (Claude Opus 4.8) drives every system through the same harness with a single search tool, ten results per call, and the same retrieval depth. Each system is called with its default configuration, and a run that returns nothing counts as a miss rather than being dropped.
Two rows are controls, marked as such, and are reference points rather than products: Native web search is the agent's own built-in search, and No tools is the agent answering from memory with no search at all.
Scoring
Scoring is deterministic: correct answers are matched by reference and canonical URL against fixed golds, with no model judging any number, so the same run reproduces the same score.
A memorisation gate removes any item the model could already answer with search disabled, so the benchmark measures retrieval rather than recall of training data. The floor that leaves is the No-tools control: 0.5% on repo, 0.0% on issue/PR, and 3.4% on docs.
Frequently asked questions
Changelog
Dated snapshots of this benchmark and what changed in each run.
- Aug 21, 2026First public snapshot (DevDex v1.0.0). Six retrieval tools and two controls compared on Recall@10 and MRR@10 across repository, issue-to-fix, and documentation retrieval.
Each snapshot is published from a pinned run in firecrawl/benchmark-devdex.