File size: 3,438 Bytes
7ea8050
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f42f086
 
 
 
 
 
 
 
 
 
 
 
 
 
7ea8050
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
---
license: mit
language:
- zh
- en
task_categories:
- text-generation
- question-answering
pretty_name: ClawBenchPro
tags:
- agent-benchmark
- workplace
- tool-use
- multi-turn
- skills
- nanoclaw
size_categories:
- 1K<n<10K
configs:
- config_name: default
  default: true
  data_files:
  - split: test
    path: dataset_index.csv
- config_name: round_01_aligned_mix_800
  data_files:
  - split: test
    path: round_01_aligned_mix_800/dataset_index.csv
- config_name: persona_aligned_mix_200
  data_files:
  - split: test
    path: persona_aligned_mix_200/dataset_index.csv
---

# ClawBenchPro

ClawBenchPro is a compact, builder-based workplace-agent benchmark package exported from Nanoclaw.
It contains task YAML files, prompts, task-local environment builders, skills, evaluation manifests,
provenance metadata, and checksums.

## Included Splits

| Dataset | Tasks | Groups |
|---|---:|---|
| `round_01_aligned_mix_800` | 800 | `base`, `hard_aligned`, `multi_turn_aligned`, `skills_aligned` |
| `persona_aligned_mix_200` | 200 | `base`, `hard`, `multi_turn`, `skills` |

## Directory Layout

```text
ClawBenchPro/
├── README.md
├── LICENSE
├── dataset_index.jsonl
├── manifest.json
├── checksums.sha256
├── round_01_aligned_mix_800/
└── persona_aligned_mix_200/
```

Each dataset directory contains:

- `tasks/`: task YAML files, prompts, and task-local `env_builder.py` builders.
- `skills/`: packaged skills referenced by task YAML files.
- `eval_manifests/`: group-level manifests and task id lists.
- `provenance/`: sanitized construction metadata.
- `manifest.json`: dataset-level metadata.
- `checksums.sha256`: dataset-level file checksums.

Prebuilt `assets/` directories are intentionally not included to keep the Hugging Face repository
compact. Each task includes an `env_builder.py` that can materialize `assets/<task_id>/` on demand.

## Usage

After downloading the dataset, point Nanoclaw or compatible runners at the YAML tasks under:

```text
round_01_aligned_mix_800/tasks/*.yaml
persona_aligned_mix_200/tasks/*.yaml
```

Group manifests are available under `eval_manifests/` for category-level analysis.

To materialize one task environment manually:

```bash
cd round_01_aligned_mix_800
python tasks/data_round_01_aligned_mix_800_0001/env_builder.py
```

This creates:

```text
round_01_aligned_mix_800/assets/data_round_01_aligned_mix_800_0001/
```

Nanoclaw's batch runner can also invoke these builders automatically before each task run.

To materialize assets in batches from the repository root:

```bash
python materialize_assets.py --dataset round_01_aligned_mix_800 --workers 8
python materialize_assets.py --dataset persona_aligned_mix_200 --workers 8
```

## Dataset Index

`dataset_index.jsonl` provides one row per task with:

```text
dataset, task_id, category, task_file, asset_dir, prompt_files, skill_count
```

The full task definitions remain in the YAML files.

## License

This package is released under the MIT License. See `LICENSE`.

## Notes

- The package is intended as a benchmark artifact rather than a tabular training dataset.
- Some tasks intentionally contain synthetic keys, internal URLs, noisy logs, broken files, or
  policy-sensitive strings as part of the benchmark environment. These are benchmark fixtures,
  not operational credentials.
- Build-time local absolute paths have been removed from the Hugging Face-ready package.