Query Agent Benchmarking
Description
Tools for various benchmarking scenarios of Weaviate's Query Agent.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Query Agent Benchmarking
A tool for benchmarking retrieval and question answering systems. Built for [Weaviate's Query Agent](https://docs.weaviate.io/agents/query), but designed to evaluate any system you can plug in.
It supports two evaluation modes:
- Search — Ranked retrieval evaluation using IR metrics (Recall@K, nDCG@K, Coverage, alpha-nDCG)
- Ask — Question answering evaluation using LLM-as-judge (DSPy-based ensemble voting for semantic alignment) or exact match accuracy
News 📯
[9/25] 📊 Search Mode Benchmarking is [live](https://weaviate.io/blog/search-mode-benchmarking) on the Weaviate Blog.
Quick Start
Clone the repo and install dependencies:
git clone https://github.com/weaviate/query-agent-benchmarking.git
cd query-agent-benchmarking
uv sync
Populate Weaviate with benchmark data:
uv run python3 scripts/populate-db.py
Run search eval:
uv run python3 scripts/run-search-benchmark.py
Run ask eval:
uv run python3 scripts/run-ask-benchmark.py
See `query_agent_benchmarking/benchmark-config.yml` to change the dataset, agent type (`hybrid-search`, `query-agent-search-mode`, etc.), number of samples, and concurrency parameters.
Using as a Python Library
You can also install the package as a dependency and use it programmatically:
pip install query-agent-benchmarking
Evaluate Weaviate's built-in agents
import query_agent_benchmarking
# Search eval (defaults to agent_name="query-agent-search-mode")
query_agent_benchmarking.run_search_eval(
search_dataset="beir/scifact/test",
)
# Compare multiple search agents
query_agent_benchmarking.compare_search_agents(
search_dataset="beir/scifact/test",
agent_names=["hybrid-search", "query-agent-search-mode"],
)
# Ask eval
query_agent_benchmarking.run_ask_eval(
ask_dataset="multihoprag",
agent_name="query-agent-ask-mode",
)
Bring your own retriever
Pass any object that implements the `Sea
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11