# Trec Dragun Eval

> Evaluates assistive RAG systems that support news trustworthiness assessment by generating investigative questions and context-rich reports. Probes the model's ability to identify critical aspects of source bias, motivation, and alternative viewpoints, and to synthesize attributed summaries that help readers evaluate credibility. Use when the user wants to benchmark on TREC DRAGUN 2025 Track, or asks about evaluating this task. Reports Kendall's τ.

- Skill: `qhjqhj00/trec-dragun-eval` (Agent Skill)
- Install (CLI): `npx skillmds add qhjqhj00/trec-dragun-eval`
- Raw SKILL.md: https://api.skillmd.com/api/skills/qhjqhj00/trec-dragun-eval/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: qhjqhj00 (https://skillmd.com/u/qhjqhj00)
- Updated: 2026-09-08
- Page: https://skillmd.com/skills/qhjqhj00/trec-dragun-eval

---


# trec-dragun-eval

> Resources for Automated Evaluation of Assistive RAG Systems that Help Readers with News Trustworthiness Assessment — Zhang et al. (2026) (arXiv:2602.24277, 2026)

## What this evaluates

Evaluates assistive RAG systems that support news trustworthiness assessment by generating investigative questions and context-rich reports. Probes the model's ability to identify critical aspects of source bias, motivation, and alternative viewpoints, and to synthesize attributed summaries that help readers evaluate credibility.

## Datasets

- **TREC DRAGUN 2025 Track** — total 30; splits: test (30); repo https://github.com/trec-dragun/resources

## Metrics

- `Kendall's τ` **(primary)** — range: [-1, 1]
  - Measures the rank correlation between automated rubric-based scores and human assessor judgments. It counts concordant and discordant pairs between the predicted and gold rankings to produce a coefficient ranging from -1 to 1.

## Input / output format

**Input**: A target news article (topic) from the MS MARCO V2.1 Document Corpus. For Task 1, the article is provided to generate investigative questions. For Task 2, the article is provided as context to generate a trustworthiness report.

**Output**: Task 1: A ranked list of up to 10 critical questions, each ≤300 characters, non-compound, and specific to the article. Task 2: A ~250-word report where each sentence contains at most three cited segment IDs from the MS MARCO V2.1 Segmented Corpus.

## Scoring recipe

```python
def compute_kendall_tau(predictions, gold, rubrics):
    auto_scores = []
    for pred, topic_id in zip(predictions, rubrics.keys()):
        # AutoJudge matches prediction against importance-weighted rubric
        score = compute_rubric_match(pred, rubrics[topic_id])
        auto_scores.append(score)
    # Compare automated scores with human judgments
    tau = kendall_correlation(auto_scores, gold)
    return tau
```

## Common pitfalls

- Questions must be strictly ranked by importance and cannot be compound or overly general.
- Report sentences are limited to a maximum of three citation segment IDs per sentence.
- Generated questions must not exceed 300 characters in length.
- Reports must be approximately 250 words and explicitly attribute claims to retrieved segments.

## Evidence (verbatim from paper)

> It leverages human-created importance-weighted rubrics from TREC assessors—developed to identify key investigative questions and evidence for 30 news articles—to automatically score generated reports and questions. AutoJudge achieves strong correlation (Kendall’s τ = 0.872 for report generation, 0.678 for question generation) with human judgments, enabling scalable, reusable evaluation of RAG systems in lateral reading workflows where readers need to assess credibility through multi-source context and investigative guidance.

## Citation

```bibtex
@misc{zhang2026resources,
  title={Resources for Automated Evaluation of Assistive RAG Systems that Help Readers with News Trustworthiness Assessment},
  author={Zhang et al. (2026)},
  year={2026},
  note={arXiv:2602.24277}
}
```

- arXiv: 2602.24277

