|
| 1 | +<div align="center"> |
| 2 | + <img src="docs/img/new-HS-bench_logo.png" alt="HumanStudy-Bench Logo" width="300"> |
| 3 | + |
| 4 | + <h1>HumanStudy-Bench: Towards AI Agent Design for Participant Simulation</h1> |
| 5 | + |
| 6 | + <h3><a href="https://www.hs-bench.clawder.ai">📊 See Leaderboard & Results</a> | <a href="https://arxiv.org/abs/2602.00685">📖 Read the Paper</a></h3> |
| 7 | + |
| 8 | + [](https://github.com/AISmithLab/HumanStudy-Bench/releases/tag/v1.0.0) |
| 9 | + [](https://opensource.org/licenses/MIT) |
| 10 | + [](https://www.python.org/downloads/) |
| 11 | + [](https://www.hs-bench.clawder.ai) |
| 12 | + |
| 13 | +</div> |
| 14 | + |
| 15 | +--- |
| 16 | + |
| 17 | +> HumanStudy-Bench is a standardized testbed for replaying human-subject experiments with LLM agents. We currently include **12 foundational studies** — and we need your help to grow the benchmark. This repository is the community contribution hub. |
| 18 | +
|
| 19 | +## How to Contribute a Study |
| 20 | + |
| 21 | +### 1. Fork and clone |
| 22 | + |
| 23 | +```bash |
| 24 | +git clone https://github.com/<your-github-id>/HumanStudy-Bench.git |
| 25 | +cd HumanStudy-Bench |
| 26 | +git checkout -b contrib-<yourgithubid>-013 |
| 27 | +``` |
| 28 | + |
| 29 | +### 2. Create your study folder |
| 30 | + |
| 31 | +Add a new directory under `studies/` with the required folders: |
| 32 | + |
| 33 | +``` |
| 34 | +studies/<yourgithubid>_013/ |
| 35 | + ├── index.json |
| 36 | + ├── source/ |
| 37 | + ├── scripts/ |
| 38 | + └── README.md |
| 39 | +``` |
| 40 | + |
| 41 | +See the docs below for what goes inside each folder and the exact schemas: |
| 42 | + |
| 43 | +| # | Guide | Description | |
| 44 | +|---|-------|-------------| |
| 45 | +| 1 | [What Should I Submit?](https://www.hs-bench.clawder.ai/docs/what_to_submit) | Overview of contribution, required folders and files | |
| 46 | +| 2 | [How to Extract Data from a Paper](https://www.hs-bench.clawder.ai/docs/extract_from_paper) | Paper hierarchy, AI extraction prompt, walkthrough example | |
| 47 | +| 3 | [How to Build Your Study Files](https://www.hs-bench.clawder.ai/docs/build_study_files) | Schemas, code examples, and contracts for each file | |
| 48 | +| 4 | [How to Submit Your Study](https://www.hs-bench.clawder.ai/docs/submit_study) | Fork, verify, push, and open a PR | |
| 49 | + |
| 50 | +### 3. Verify locally |
| 51 | + |
| 52 | +```bash |
| 53 | +bash scripts/verify_study.sh <yourgithubid>_013 |
| 54 | +``` |
| 55 | + |
| 56 | +### 4. Commit and push |
| 57 | + |
| 58 | +```bash |
| 59 | +git add studies/<yourgithubid>_013/ |
| 60 | +git commit -m "Add study: <Your Study Title>" |
| 61 | +git push origin contrib-<yourgithubid>-013 |
| 62 | +``` |
| 63 | + |
| 64 | +### 5. Open a Pull Request |
| 65 | + |
| 66 | +Open a PR on GitHub targeting the `dev` branch. Maintainers assign final `study_XXX` numbering by merge order. CI runs validation automatically; confirmation is by human review. |
| 67 | + |
| 68 | +You can also submit a study via **web upload** at [hs-bench.clawder.ai/contribute](https://www.hs-bench.clawder.ai/contribute). |
| 69 | + |
| 70 | +## Existing Studies |
| 71 | + |
| 72 | +The 12 foundational studies (cognition, strategic interaction, social psychology) serve as reference examples. Browse them on the [website](https://www.hs-bench.clawder.ai/contribute#studies) or locally under `studies/`. |
| 73 | + |
| 74 | +## Citation & Hugging Face |
| 75 | + |
| 76 | +If you use HumanStudy-Bench, please cite: |
| 77 | + |
| 78 | +```bibtex |
| 79 | +@misc{liu2026humanstudybenchaiagentdesign, |
| 80 | + title={HumanStudy-Bench: Towards AI Agent Design for Participant Simulation}, |
| 81 | + author={Xuan Liu and Haoyang Shang and Zizhang Liu and Xinyan Liu and Yunze Xiao and Yiwen Tu and Haojian Jin}, |
| 82 | + year={2026}, |
| 83 | + eprint={2602.00685}, |
| 84 | + archivePrefix={arXiv}, |
| 85 | + primaryClass={cs.AI}, |
| 86 | + url={https://arxiv.org/abs/2602.00685}, |
| 87 | +} |
| 88 | +``` |
| 89 | + |
| 90 | +**Hugging Face:** Benchmark and resources are available on the [Hugging Face Hub](https://huggingface.co/) — `fuyyckwhy/HS-Bench-results`. |
| 91 | + |
| 92 | +## License |
| 93 | + |
| 94 | +MIT License. See [LICENSE](LICENSE) for details. |
0 commit comments