xdotli commited on
Commit
40edb87
·
verified ·
1 Parent(s): 9be1043

docs: feature as benchmark — arxiv citation, paper teaser, leaderboard cross-link

Browse files
Files changed (1) hide show
  1. README.md +101 -48
README.md CHANGED
@@ -1,76 +1,129 @@
1
  ---
2
- license: cc-by-4.0
3
- pretty_name: SkillsBench Tasks
4
- tags:
5
- - benchmark
6
- - agents
7
- - tool-use
8
- - skills
9
  size_categories:
10
- - n<1K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  configs:
12
- - config_name: default
13
- data_files:
14
- - split: train
15
- path: skillsbench-tasks.parquet
16
  ---
17
 
18
- # SkillsBench Tasks
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
- Full task corpus from [`benchflow-ai/skillsbench`](https://github.com/benchflow-ai/skillsbench)
21
- bundled into a single parquet for offline analysis.
 
 
 
22
 
23
- **Source commit:** `05f263429c5033604da64e8de568ce654fcbe6e6`
24
- **Task count:** 91
25
- **Scope:** full corpus including `solution/` and `tests/`. **Do not** train models on
26
- this dataset — solutions and ground-truth tests are included for reproducibility, and
27
- contamination on those will void any benchmark numbers reported against SkillsBench.
 
 
 
 
 
28
 
29
- ## Schema
30
 
31
- One row per task. Top-level columns:
 
 
 
 
 
 
32
 
33
- | column | type | description |
34
  |---|---|---|
35
  | `task_id` | string | directory name under `tasks/` |
36
- | `category` | string | task.toml `[metadata].category` |
37
- | `difficulty` | string | `easy` / `medium` / `hard` |
38
  | `difficulty_explanation` | string | author's prose on why the task is hard |
39
- | `author_name`, `author_email` | string | task author |
40
  | `tags` | list[string] | `[metadata].tags` |
41
  | `allow_internet` | bool | `[environment].allow_internet` |
42
- | `verifier_timeout_sec`, `agent_timeout_sec`, `build_timeout_sec` | float | task.toml timeouts |
43
- | `cpus`, `memory_mb`, `storage_mb` | int | environment limits |
44
- | `instruction` | string | full `instruction.md` text |
45
- | `task_toml` | string | raw `task.toml` |
46
- | `dockerfile` | string | `environment/Dockerfile` |
47
- | `solve_sh` | string | `solution/solve.sh` |
48
- | `test_sh`, `test_outputs` | string | `tests/test.sh`, `tests/test_outputs.py` |
49
  | `skills` | list[struct] | `{name, description, skill_md}` per skill in `environment/skills/` |
50
- | `files` | list[struct] | every other file in the task tree: `{path, size_bytes, sha256, is_text, content}` |
51
-
52
- `files` covers `environment/`, `solution/`, `tests/`, and skill assets (excluding the SKILL.md
53
- already captured in `skills`). Binary blobs (xlsx, mp4, zip, mseed, parquet) are stored in
54
- `content` as bytes; `is_text` indicates whether `content.decode("utf-8")` is meaningful.
55
-
56
- ## Reading
57
 
58
  ```python
59
  from huggingface_hub import hf_hub_download
60
- import pyarrow.parquet as pq
61
 
62
  path = hf_hub_download("benchflow/skillsbench",
63
  "skillsbench-tasks.parquet", repo_type="dataset")
64
  t = pq.read_table(path)
65
- print(t.num_rows, t.column_names)
66
-
67
- # Reconstitute one task on disk:
68
- row = t.filter(pa.compute.equal(t["task_id"], "shock-analysis-demand")).to_pylist()[0]
69
  for f in row["files"]:
70
  ... # write f["content"] to f["path"]
71
  ```
72
 
73
- ## License
 
 
 
 
74
 
75
- Source code under Apache-2.0 (per upstream `LICENSE`); the dataset itself is published
76
- under CC-BY-4.0 to match the NeurIPS Datasets & Benchmarks track standard.
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: SkillsBench
3
+ language:
4
+ - en
5
+ license: apache-2.0
 
 
 
6
  size_categories:
7
+ - n<1K
8
+ task_categories:
9
+ - text-generation
10
+ tags:
11
+ - benchmark
12
+ - agents
13
+ - tool-use
14
+ - skills
15
+ - evaluation
16
+ - benchflow
17
+ arxiv: 2602.12670
18
+ citation: |
19
+ @misc{skillsbench_2026,
20
+ title={SkillsBench: Benchmarking How Well Agent Skills Work Across Diverse Tasks},
21
+ author={Xiangyi Li and Wenbo Chen and Yimin Liu and Shenghan Zheng and Xiaokun Chen and Yifeng He and Yubo Li and Bingran You and Haotian Shen and Jiankai Sun and Shuyi Wang and Binxu Li and Qunhong Zeng and Di Wang and Xuandong Zhao and Yuanli Wang and Roey Ben Chaim and Zonglin Di and Yipeng Gao and Junwei He and Yizhuo He and Liqiang Jing and Luyang Kong and Xin Lan and Jiachen Li and Songlin Li and Yijiang Li and Yueqian Lin and Xinyi Liu and Xuanqing Liu and Haoran Lyu and Ze Ma and Bowei Wang and Runhui Wang and Tianyu Wang and Wengao Ye and Yue Zhang and Hanwen Xing and Yiqi Xue and Steven Dillmann and Han-chung Lee},
22
+ year={2026},
23
+ eprint={2602.12670},
24
+ archivePrefix={arXiv},
25
+ primaryClass={cs.AI},
26
+ url={https://arxiv.org/abs/2602.12670}}
27
  configs:
28
+ - config_name: default
29
+ data_files:
30
+ - split: train
31
+ path: skillsbench-tasks.parquet
32
  ---
33
 
34
+ > **Read-only mirror.** The primary source for these tasks is GitHub at
35
+ > [`benchflow-ai/skillsbench`](https://github.com/benchflow-ai/skillsbench). Open issues
36
+ > and pull requests there.
37
+ >
38
+ > **Leaderboard / trajectories:** [`benchflow/skillsbench-leaderboard`](https://huggingface.co/datasets/benchflow/skillsbench-leaderboard).
39
+
40
+ # SkillsBench
41
+
42
+ > Agent Skills are structured packages of procedural knowledge that augment LLM agents
43
+ > at inference time. SkillsBench measures how well agents put those skills to work on
44
+ > realistic professional tasks across many domains.
45
+
46
+ - **Paper:** [arXiv:2602.12670](https://arxiv.org/abs/2602.12670)
47
+ - **Code & tasks:** [`github.com/benchflow-ai/skillsbench`](https://github.com/benchflow-ai/skillsbench)
48
+ - **Runner (BenchFlow SDK):** [`github.com/benchflow-ai/benchflow`](https://github.com/benchflow-ai/benchflow)
49
+ - **Discord:** [`discord.gg/G9dg3EfSva`](https://discord.gg/G9dg3EfSva)
50
+
51
+ ## Quickstart
52
+
53
+ The canonical install + run instructions live in the github repo's [README](https://github.com/benchflow-ai/skillsbench#readme)
54
+ and [CONTRIBUTING.md](https://github.com/benchflow-ai/skillsbench/blob/main/CONTRIBUTING.md).
55
+ At the time of this snapshot the runner is invoked as `bench eval create`; check the github
56
+ repo for the current install command before copying any line below.
57
+
58
+ ```bash
59
+ # Run the oracle agent (no API key required) to confirm tasks load:
60
+ bench eval create -t tasks --agent oracle
61
 
62
+ # Run a real agent with skills:
63
+ bench eval create \
64
+ -t tasks --agent claude-agent-acp -m claude-opus-4-7 \
65
+ -s tasks/<task-id>/environment/skills \
66
+ -o jobs/with-skills
67
 
68
+ # and again without skills, to measure the skill delta:
69
+ bench eval create \
70
+ -t tasks --agent claude-agent-acp -m claude-opus-4-7 \
71
+ -o jobs/no-skills
72
+ ```
73
+
74
+ To submit a run to the leaderboard, copy `jobs/<run-timestamp>/` into a fork of
75
+ [`benchflow/skillsbench-leaderboard`](https://huggingface.co/datasets/benchflow/skillsbench-leaderboard)
76
+ under `submissions/skillsbench/v0.1/<agent>__<model>/` and open a PR. See that repo's
77
+ README for the full submission protocol.
78
 
79
+ ## What's in this dataset
80
 
81
+ A single parquet bundling the full task corpus from upstream `main` at commit
82
+ `05f263429c5033604da64e8de568ce654fcbe6e6` (91 tasks). One row per task with
83
+ `task.toml` metadata flattened to top-level columns, key text files inlined
84
+ (`instruction`, `dockerfile`, `solve_sh`, `test_sh`, `test_outputs`), and every
85
+ other file (environment data, solution artefacts, test fixtures, skill assets) in
86
+ `files: list[struct{path, size_bytes, sha256, is_text, content}]` with binary
87
+ content as parquet `binary`.
88
 
89
+ | Field | Type | Description |
90
  |---|---|---|
91
  | `task_id` | string | directory name under `tasks/` |
92
+ | `category`, `difficulty` | string | from `task.toml` `[metadata]` |
 
93
  | `difficulty_explanation` | string | author's prose on why the task is hard |
 
94
  | `tags` | list[string] | `[metadata].tags` |
95
  | `allow_internet` | bool | `[environment].allow_internet` |
96
+ | `instruction`, `task_toml`, `dockerfile`, `solve_sh`, `test_sh`, `test_outputs` | string | inlined source files |
 
 
 
 
 
 
97
  | `skills` | list[struct] | `{name, description, skill_md}` per skill in `environment/skills/` |
98
+ | `files` | list[struct] | every other file: `{path, size_bytes, sha256, is_text, content}` |
 
 
 
 
 
 
99
 
100
  ```python
101
  from huggingface_hub import hf_hub_download
102
+ import pyarrow.parquet as pq, pyarrow.compute as pc
103
 
104
  path = hf_hub_download("benchflow/skillsbench",
105
  "skillsbench-tasks.parquet", repo_type="dataset")
106
  t = pq.read_table(path)
107
+ row = t.filter(pc.equal(t["task_id"], "shock-analysis-demand")).to_pylist()[0]
 
 
 
108
  for f in row["files"]:
109
  ... # write f["content"] to f["path"]
110
  ```
111
 
112
+ ## Anti-contamination
113
+
114
+ > **Do not train models on this dataset.** Solutions and ground-truth tests are inlined
115
+ > for reproducibility. Contamination on those will void any benchmark numbers reported
116
+ > against SkillsBench.
117
 
118
+ ## Citing SkillsBench
119
+
120
+ ```bibtex
121
+ @misc{skillsbench_2026,
122
+ title={SkillsBench: Benchmarking How Well Agent Skills Work Across Diverse Tasks},
123
+ author={Xiangyi Li and Wenbo Chen and Yimin Liu and Shenghan Zheng and Xiaokun Chen and Yifeng He and Yubo Li and Bingran You and Haotian Shen and Jiankai Sun and Shuyi Wang and Binxu Li and Qunhong Zeng and Di Wang and Xuandong Zhao and Yuanli Wang and Roey Ben Chaim and Zonglin Di and Yipeng Gao and Junwei He and Yizhuo He and Liqiang Jing and Luyang Kong and Xin Lan and Jiachen Li and Songlin Li and Yijiang Li and Yueqian Lin and Xinyi Liu and Xuanqing Liu and Haoran Lyu and Ze Ma and Bowei Wang and Runhui Wang and Tianyu Wang and Wengao Ye and Yue Zhang and Hanwen Xing and Yiqi Xue and Steven Dillmann and Han-chung Lee},
124
+ year={2026},
125
+ eprint={2602.12670},
126
+ archivePrefix={arXiv},
127
+ primaryClass={cs.AI},
128
+ url={https://arxiv.org/abs/2602.12670}}
129
+ ```