Evaluates multimodal agents' ability to reason over personalized, device-scale file systems. It probes long-horizon cross-file retrieval, multimodal perception, and evidence-grounded factual retention under strict profile-isolation constraints. Use when the user wants to benchmark on HippoCamp, or asks about evaluating this task. Reports accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill hippocamp-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Hippocamp Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-hippocamp-eval)More formats (shields.io, HTML) on the badges page.
---
name: hippocamp-eval
description: Evaluates multimodal agents' ability to reason over personalized, device-scale file systems. It probes long-horizon cross-file retrieval, multimodal perception, and evidence-grounded factual retention under strict profile-isolation constraints. Use when the user wants to benchmark on HippoCamp, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2604.01221
bibtex_key: yang2026hippocamp
confidence: high
---
# hippocamp-eval
> HippoCamp: Benchmarking Contextual Agents on Personal Computers — Yang et al. (2026) (arXiv:2604.01221, 2026)
## What this evaluates
Evaluates multimodal agents' ability to reason over personalized, device-scale file systems. It probes long-horizon cross-file retrieval, multimodal perception, and evidence-grounded factual retention under strict profile-isolation constraints.
## Datasets
- **HippoCamp** — total 581; splits: test (581)
## Metrics
- `accuracy` **(primary)** — range: percent
- Fraction of generated responses judged correct by an LLM-as-a-judge based on factual alignment, reasoning soundness, and contextual personalization.
- `F1` — range: percent
- Harmonic mean of precision and recall for retrieved evidence files, measuring the balance between retrieving relevant files and avoiding spurious ones.
## Input / output format
**Input**: Natural-language query paired with profile-local access to a multimodal file corpus (up to 42.4 GB across 2K files). Agents may freely explore, search, and perceive the environment.
**Output**: Free-form generated response (answer/reasoning) and optionally retrieved evidence files or tool-use traces.
## Scoring recipe
```python
# For QA tasks
judge_score = llm_judge(query, gold_answer, model_response) # returns 0 or 1
accuracy = sum(judge_score) / total_tasks
# For retrieval tasks
precision = len(retrieved_files & gold_files) / len(retrieved_files)
recall = len(retrieved_files & gold_files) / len(gold_files)
f1 = 2 * (precision * recall) / (precision + recall)
```
## Common pitfalls
- Execution environment heavily impacts results: Dockerized terminal agents vs. native product-grade modes show significant variance and instability, making direct comparison difficult.
- LLM-as-a-judge evaluation replaces strict string matching, which may introduce subjective bias or inconsistency in correctness judgments.
- Strict profile-isolation constraint forbids external retrieval or side-channel metadata, unlike many standard benchmarks that assume open web access.
## Evidence (verbatim from paper)
> We report overall accuracy, measured as the fraction of responses judged correct. Evidence retrieval evaluation. For tasks requiring document or file retrieval, we assess retrieval quality using recall hit rate and F1 score based on the ground-truth evidence file set. F1 captures the balance between retrieving relevant files and avoiding spurious ones, while recall measures the agent's ability to identify all necessary evidence supporting correct reasoning.
## Citation
```bibtex
@misc{yang2026hippocamp,
title={HippoCamp: Benchmarking Contextual Agents on Personal Computers},
author={Yang et al. (2026)},
year={2026},
note={arXiv:2604.01221}
}
```
- arXiv: 2604.01221
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!