Datasets:
ArXiv:
License:
Add metadata and links to ClawProBench dataset card
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,4 +1,32 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- other
|
| 5 |
+
tags:
|
| 6 |
+
- agent
|
| 7 |
+
- benchmark
|
| 8 |
+
- runtime
|
| 9 |
---
|
| 10 |
+
|
| 11 |
+
# ClawProBench
|
| 12 |
+
|
| 13 |
+
ClawProBench is a trace-aware benchmark for runtime-native agent evaluation, instantiated on OpenClaw. It provides a live-first evaluation harness with 102 active scenarios and a frozen holdout set for robust ranking. Trials are scored from execution traces via a safety-gated formula combining correctness, process quality, and efficiency.
|
| 14 |
+
|
| 15 |
+
- **Paper**: [ClawProBench: Trace-Aware Evaluation of AI Agents with Runtime Coverage and Frozen Workplace-Style Holdouts](https://arxiv.org/abs/2608.22510)
|
| 16 |
+
- **Project page**: [https://suyoumo.github.io/bench/](https://suyoumo.github.io/bench/)
|
| 17 |
+
- **GitHub repository**: [https://github.com/suyoumo/ClawProBench](https://github.com/suyoumo/ClawProBench)
|
| 18 |
+
|
| 19 |
+
## Sample usage
|
| 20 |
+
|
| 21 |
+
A one-trial smoke run on the default ranking benchmark:
|
| 22 |
+
|
| 23 |
+
```bash
|
| 24 |
+
python3 run.py run \
|
| 25 |
+
--model '<MODEL>' \
|
| 26 |
+
--execution-mode live \
|
| 27 |
+
--benchmark-profile core \
|
| 28 |
+
--trials 1 \
|
| 29 |
+
--cleanup-agents
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
For full details, see the [GitHub repository](https://github.com/suyoumo/ClawProBench).
|