SkillEval v1
SkillEval v1 is a 100-task benchmark for evaluating whether agents can discover and use local skills to complete deterministic artifact-producing tasks.
SkillEval was generated by the skill-use task synthesis pipeline introduced in SKT: Skill-Use Training at Scale via Verified Synthetic Data Generation.
Layout
Each tasks/<task_id>/ directory retains the template-driven task structure
described in SKT, with additional public metadata, gold artifacts, and oracle
code:
tasks/<task_id>/
βββ instruction.md # Task instruction
βββ environment/ # Runtime context
β βββ data/ # Task data and setup files
β βββ skills/ # Task-specific skills
βββ task.toml # Task configuration
βββ tests/ # Deterministic evaluator
β βββ test.sh
βββ solution/ # Reference solution
β βββ solve.sh
βββ task.json # Open task definition with gold and evaluator spec
βββ meta.json # Open-release metadata
βββ reference/ # Canonical output artifacts
βββ oracle.py # Oracle implementation invoked by solve.sh
Evaluation
We recommend materializing each task in an isolated workspace:
python tools/materialize_skillssh_task_workspace.py \
--task-dir tasks/<task_id> \
--workspace /tmp/skilleval-workspace \
--skills-mode with \
--clean
Use instruction.md as the prompt. Select --skills-mode without for the
no-skill control. After the agent exits, score its workspace externally:
WORKSPACE=/tmp/skilleval-workspace tasks/<task_id>/tests/test.sh
Report the arithmetic mean of all 100 task rewards, retaining failed and timed-out tasks in the denominator.
Paper and citation
If you use SkillEval, please cite:
@misc{tan2026sktskillusetrainingscale,
title={SKT: Skill-Use Training at Scale via Verified Synthetic Data Generation},
author={Zelin Tan and Yiqun Zhang and Hao Li and Zhiyao Cui and Hejia Geng and Shao Zhang and Hangfan Zhang and Yang Chen and Xiaosong Wang and Lilong Wang and Zhenfei Yin and Shuyue Hu and Chen Zhang and Lei Bai},
year={2026},
eprint={2608.02287},
archivePrefix={arXiv},
primaryClass={cs.AI},
url={https://arxiv.org/abs/2608.02287},
}
- Downloads last month
- 20