This repository is a minimal benchmark task package for a single Office agent task.
Important scope note:
- this repository publishes the task package, environment note, gold answer, and verifier
- it does not publish an official runner or agent scaffold
- any model result tables kept under
docs/are reference-only archival material and are not part of the benchmark specification
It contains only four release components:
input/Solver-facing task materials:description.mdmoore_threads_ipo_analyst_model_template.xlsxmoore_threads_prospectus_20250926.pdf
ENVIRONMENT.mdEnvironment guidance for running the task with any agent/runtime.answer/gold_submission.xlsxThe reference workbook.verifier/checker.pyA deterministic checker that compares a submission workbook against the gold workbook.
Install verifier dependency:
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txtRun the checker:
python3 verifier/checker.py --submission /path/to/submission.xlsxOr explicitly provide the gold workbook:
python3 verifier/checker.py \
--submission /path/to/submission.xlsx \
--gold answer/gold_submission.xlsxThe checker prints JSON with:
task_passscorefailures_countfailurescheck_results
input/
description.md
moore_threads_ipo_analyst_model_template.xlsx
moore_threads_prospectus_20250926.pdf
answer/
gold_submission.xlsx
verifier/
checker.py
ENVIRONMENT.md
requirements.txt
For internal comparison and historical record only:
This file is intentionally non-normative:
- it is not part of the benchmark definition
- it is not an official evaluation harness
- it mixes multiple execution setups and is kept only as a result archive