README.md

May 21, 2026 ยท View on GitHub

logo

arXiv License DockerHub HuggingFace Leaderboard


FeatureBench is a test-driven data generation and evaluation pipeline for feature-level coding benchmarks. It provides a unified CLI to run inference, evaluation, and dataset generation.

๐Ÿ“ฐ News

๐Ÿ“Š 2026.05.18: We added lite split evaluation results for frontier models including GPT-5.5, Claude Opus 4.7, DeepSeek-V4, GLM-5.1, Kimi-2.6, Mimo-V2.5-Pro, and more to the leaderboard.

๐Ÿš€ 2026.03.27: We released the fast split containing 100 instances (a subset of full split). These instances require no GPU and are optimized for rapid evaluation. On an Intel Xeon Platinum 8457C with 944GB RAM, the average evaluation time per instance using gold patches is 57.2 seconds.

๐ŸŽ 2026.02.06: We now support one-click inference for mainstream agent frameworks, including OpenHands, Claude Code, Codex, Gemini CLI, and mini-swe-agent. All supported agent frameworks can be found here. We have also open-sourced the FeatureBench data pipeline.

๐Ÿ† Leaderboard

Full interactive leaderboard with tabs, filters, and sorting.

Lite split results, ranked by %PASSED
RankModelScaffold%PASSED%RESOLVED
1Claude Opus 4.7OpenHands78.246.7
2GPT-5.5OpenHands69.826.7
3Claude Opus 4.6OpenHands69.520
4Claude Opus 4.5OpenHands67.220
5GPT-5.4OpenHands66.223.3
6GPT-5.1-CodexCodex60.220
7DeepSeek-V4-ProOpenHands59.626.7
8Claude Opus 4.5Claude Code59.120
9Kimi-2.6OpenHands49.420
10Mimo-V2.5-ProOpenHands47.813.3
11Gemini-3-Pro-PreviewOpenHands45.110
12GLM-5.1OpenHands44.213.3
13Gemini-3-Pro-PreviewGemini-CLI43.410
14DeepSeek-V4-FlashOpenHands41.916.7
15MiniMax M2.1Mini-SWE-Agent41.910
16GLM 4.7Mini-SWE-Agent41.26.7
17Qwen3-Coder-480B-A35B-InstructOpenHands38.36.7
18DeepSeek V3.2OpenHands35.96.7
19Qwen3-Coder-30B-A3B-InstructOpenHands233.3

๐Ÿš€ Quickstart

Prerequisites:

  • uv for Python environment management
  • docker for reproducible builds and evaluation
# pypi
pip install featurebench
# or uv add featurebench

# local
git clone https://github.com/LiberCoders/FeatureBench.git
cd FeatureBench
uv sync
source .venv/bin/activate

Configure:

cp config_example.toml config.toml

See docs/config.md for a comprehensive reference (harness, infer, data pipeline) with examples.

Optional: pre-pull images to reduce network variance:

fb pull --mode lite                 # lite split image list (13 images)
fb pull --mode fast                 # fast split image list (18 images)
fb pull --mode full                 # full split image list (24 images)
fb pull --mode /path/to/images.txt  # one image name per line

# full list: featurebench/resources/constants/full_images.txt
# lite list: featurebench/resources/constants/lite_images.txt
# fast list: featurebench/resources/constants/fast_images.txt

Run inference:

fb infer \
    --config-path config.toml \
    --agent mini_swe_agent \
    --model openai/qwen3-coder-480b-a35b-instruct \
    --split fast

Run evaluation:

fb eval \
    -p runs/<timestamp>/output.jsonl \
    --split fast
    # use -p gold to verify the gold patches

๐Ÿงญ CLI Overview

fb provides three core commands:

โœ๏ธ Citation

If you found FeatureBench useful, please cite us as:

@article{zhou2026featurebench,
  title={FeatureBench: Benchmarking Agentic Coding for Complex Feature Development},
  author={Zhou, Qixing and Zhang, Jiacheng and Wang, Haiyang and Hao, Rui and Wang, Jiahe and Han, Minghao and Yang, Yuxue and Wu, Shuzhe and Pan, Feiyang and Fan, Lue and others},
  journal={arXiv preprint arXiv:2602.10975},
  year={2026}
}

๐Ÿ“ง Contact

If you have any questions, feel free to contact qixingzhou1125@gmail.com or zjcheng2022@gmail.com.