The Dataset Viewer has been disabled on this dataset.

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

Paper for Artemis0430/skilleval-v1