hyd2apse Claude Opus 4.6 (1M context) commited on
Commit
6158e11
·
1 Parent(s): 0083415

Add dataset card with statistics, example DAG, and badges

Browse files

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

Files changed (3) hide show
  1. README.md +122 -0
  2. assets/evoclaw_example.png +3 -0
  3. assets/evoclaw_icon.png +3 -0
README.md ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-generation
5
+ tags:
6
+ - code
7
+ - benchmark
8
+ - agents
9
+ - software-engineering
10
+ - evaluation
11
+ pretty_name: EvoClaw
12
+ ---
13
+
14
+ <p align="center">
15
+ <img src="assets/evoclaw_icon.png" width="120" alt="EvoClaw" />
16
+ </p>
17
+
18
+ # EvoClaw Dataset
19
+
20
+ <p align="center">
21
+ <a href="https://evo-claw.com"><img src="https://img.shields.io/badge/Website-evo--claw.com-blue.svg" alt="Website" /></a>
22
+ <a href="https://arxiv.org/abs/2603.13428"><img src="https://img.shields.io/badge/arXiv-2603.13428-b31b1b.svg" alt="arXiv" /></a>
23
+ <a href="https://github.com/Hydrapse/EvoClaw"><img src="https://img.shields.io/badge/GitHub-EvoClaw-181717?logo=github" alt="GitHub" /></a>
24
+ </p>
25
+
26
+ Software evolution itineraries (as Milestone DAGs) extracted from real-world repositories for AI agent evaluation. Used by [EvoClaw](https://github.com/Hydrapse/EvoClaw). [[Paper]](https://arxiv.org/abs/2603.13428)
27
+
28
+ This dataset contains the metadata, task specifications (SRS documents), dependency graphs, and test classifications (e.g., `fail_to_pass`, `pass_to_pass`) needed to run EvoClaw evaluation trials.
29
+
30
+ ## Dataset Statistics
31
+
32
+ EvoClaw covers **7 real-world open-source repositories** spanning 5 programming languages, with **98 graded milestones**, **124 dependency edges**, and **48,480 total ΔLoC** in gold patches.
33
+
34
+ | Repository | Language | Version Range | #Milestones | #Deps | ΔLoC | LoC CV |
35
+ |-----------|----------|---------------|:-----------:|:-----:|-----:|:------:|
36
+ | [go-zero](https://github.com/zeromicro/go-zero) | Go | v1.6.0 → v1.9.3 (750d) | 23 | 25 | 6,403 | 1.29 |
37
+ | [element-web](https://github.com/element-hq/element-web) | TypeScript | v1.11.95 → v1.11.97 (28d) | 18 | 12 | 7,657 | 0.87 |
38
+ | [nushell](https://github.com/nushell/nushell) | Rust | 0.106.0 → 0.108.0 (84d) | 13 | 28 | 15,520 | 1.10 |
39
+ | [dubbo](https://github.com/apache/dubbo) | Java | 3.3.3 → 3.3.6 (284d) | 12 | 9 | 4,154 | 0.76 |
40
+ | [scikit-learn](https://github.com/scikit-learn/scikit-learn) | Python | 1.5.2 → 1.6.0 (89d) | 12 | 29 | 7,372 | 0.84 |
41
+ | [ripgrep](https://github.com/BurntSushi/ripgrep) | Rust | 14.1.1 → 15.0.0 (402d) | 11 | 12 | 1,474 | 0.83 |
42
+ | [navidrome](https://github.com/navidrome/navidrome) | Go | v0.57.0 → v0.58.0 (27d) | 9 | 9 | 5,900 | 1.02 |
43
+ | **Average** | | | **14** | **17.7** | **6,926** | **0.96** |
44
+
45
+ **Column definitions:**
46
+ - **#Milestones** --- Number of graded milestones (non-graded milestones excluded from scoring but still part of the DAG).
47
+ - **#Deps** --- Number of dependency edges in the milestone DAG.
48
+ - **ΔLoC** --- Total lines of code changed across all gold patches in the version range.
49
+ - **LoC CV** --- Coefficient of variation of per-milestone LoC, measuring how unevenly work is distributed across milestones (higher = more variable).
50
+
51
+ ## Dataset Structure
52
+
53
+ Each repository workspace directory contains:
54
+
55
+ ```
56
+ EvoClaw-data/<repo_name>/
57
+ ├── metadata.json # Repo metadata (src_dirs, test_dirs, patterns)
58
+ ├── dependencies.csv # Milestone dependency DAG
59
+ ├── milestones.csv # Milestone catalog
60
+ ├── selected_milestone_ids.txt # (optional) Subset of milestones to evaluate
61
+ ├── additional_dependencies.csv # (optional) Extra DAG edges
62
+ ├── non-graded_milestone_ids.txt # (optional) Milestones excluded from scoring
63
+ ├── srs/{milestone_id}/SRS.md # Task specification per milestone
64
+ └── test_results/{milestone_id}/ # Test classifications and filters
65
+ ├── {milestone_id}_classification.json
66
+ └── {milestone_id}_filter_list.json # (optional) Invalid tests excluded from grading
67
+ ```
68
+
69
+ ### Key Files
70
+
71
+ - **`metadata.json`** --- Repository configuration including source directories, test directory patterns, exclude patterns, and build commands.
72
+ - **`dependencies.csv`** --- Defines the milestone dependency DAG. Each row is an edge `(upstream, downstream, strength)`.
73
+ - **`milestones.csv`** --- Catalog of all milestones with IDs, titles, and associated commit ranges.
74
+ - **`srs/{milestone_id}/SRS.md`** --- Software Requirements Specification describing what the agent needs to implement for each milestone.
75
+ - **`test_results/{milestone_id}/{milestone_id}_classification.json`** --- Test classifications used for grading. Contains lists of test IDs categorized by expected state transitions (`fail_to_pass`, `pass_to_pass`, `none_to_pass`).
76
+ - **`test_results/{milestone_id}/{milestone_id}_filter_list.json`** --- (optional) Lists invalid or flaky tests (`invalid_fail_to_pass`, `invalid_none_to_pass`) to exclude from grading.
77
+
78
+ ## Example: ripgrep Milestone DAG
79
+
80
+ The figure below shows the milestone DAG for **ripgrep** (14.1.1 → 15.0.0), illustrating how milestones are structured and connected.
81
+
82
+ <p align="center">
83
+ <img src="assets/evoclaw_example.png" width="820" alt="Example: ripgrep milestone DAG with SRS documents and test classifications" />
84
+ </p>
85
+
86
+ Each milestone in the DAG requires the following components:
87
+
88
+ - **SRS (Software Requirements Specification)** --- A Markdown document describing what the agent needs to implement. Located at `srs/{milestone_id}/SRS.md`.
89
+ - **Test classification** --- A JSON file listing which tests are expected to transition states after the milestone is implemented. Located at `test_results/{milestone_id}/{milestone_id}_classification.json`. It categorizes tests into:
90
+ - `fail_to_pass` --- Tests that are currently failing and must pass after the milestone is implemented (the core success criteria).
91
+ - `pass_to_pass` --- Tests that are currently passing and must remain passing (regression guard).
92
+ - `none_to_pass` --- New tests introduced by this milestone that should pass. By default, these are merged into `fail_to_pass` when computing scores (not scored separately).
93
+ - **Milestone Docker image** --- A pre-built Docker image containing the test environment for that specific milestone, used by the evaluator to run tests in isolation. Hosted on [DockerHub](https://hub.docker.com/u/hyd2apse).
94
+ - **Base Docker image** --- The starting environment where the agent runs, containing the codebase at the start version. Also hosted on DockerHub.
95
+
96
+ ## Notes
97
+
98
+ - The **Graded Milestones** count includes only milestones that contribute to the final score. Some repositories include additional **non-graded milestones** (listed in `non-graded_milestone_ids.txt`) that the agent must still implement as part of the dependency DAG but are excluded from scoring, typically because they are trivial tasks (e.g., version bumps, dependency updates) or lack sufficient test coverage for reliable grading. Only 3 milestones across all repositories are non-graded.
99
+ - Each milestone is extracted from the actual commit history of the repository, representing real software evolution between the listed version ranges.
100
+
101
+ ## Usage
102
+
103
+ ```bash
104
+ git lfs install
105
+ git clone https://huggingface.co/datasets/hyd2apse/EvoClaw-data
106
+ ```
107
+
108
+ Then follow the [EvoClaw setup guide](https://github.com/Hydrapse/EvoClaw#-setup) to run evaluation trials.
109
+
110
+ ## Citation
111
+
112
+ ```bibtex
113
+ @misc{deng2026evoclawevaluatingaiagents,
114
+ title={EvoClaw: Evaluating AI Agents on Continuous Software Evolution},
115
+ author={Gangda Deng and Zhaoling Chen and Zhongming Yu and Haoyang Fan and Yuhong Liu and Yuxin Yang and Dhruv Parikh and Rajgopal Kannan and Le Cong and Mengdi Wang and Qian Zhang and Viktor Prasanna and Xiangru Tang and Xingyao Wang},
116
+ year={2026},
117
+ eprint={2603.13428},
118
+ archivePrefix={arXiv},
119
+ primaryClass={cs.SE},
120
+ url={https://arxiv.org/abs/2603.13428},
121
+ }
122
+ ```
assets/evoclaw_example.png ADDED

Git LFS Details

  • SHA256: 52c1a7d456fcd73a3cabf0ca460066c8f71d12afb08a97e533f3b75080407d1f
  • Pointer size: 131 Bytes
  • Size of remote file: 970 kB
assets/evoclaw_icon.png ADDED

Git LFS Details

  • SHA256: e3d6ac5526b1bf99e78d7228b30a6cf10b4310edabacdd243c4d33610f5168db
  • Pointer size: 130 Bytes
  • Size of remote file: 41.4 kB