Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
de47ca3
chore: update PR‑approval chart
github-actions[bot] Sep 2, 2025
a80ffbd
chore: update PR‑approval chart
github-actions[bot] Sep 2, 2025
ec1a17a
chore: update PR‑approval chart
github-actions[bot] Sep 2, 2025
810c2f7
chore: update PR‑approval chart
github-actions[bot] Sep 2, 2025
9b530f6
chore: update PR‑approval chart
github-actions[bot] Sep 2, 2025
6858c28
chore: update PR‑approval chart
github-actions[bot] Sep 2, 2025
b943584
chore: update PR‑approval chart
github-actions[bot] Sep 2, 2025
5982c75
chore: update PR‑approval chart
github-actions[bot] Sep 3, 2025
83686d5
chore: update PR‑approval chart
github-actions[bot] Sep 3, 2025
8ace81e
chore: update PR‑approval chart
github-actions[bot] Sep 3, 2025
6de25e8
chore: update PR‑approval chart
github-actions[bot] Sep 3, 2025
b42495b
chore: update PR‑approval chart
github-actions[bot] Sep 3, 2025
a9a87f2
chore: update PR‑approval chart
github-actions[bot] Sep 3, 2025
5034275
chore: update PR‑approval chart
github-actions[bot] Sep 3, 2025
0875f23
chore: update PR‑approval chart
github-actions[bot] Sep 3, 2025
6b12afa
chore: update PR‑approval chart
github-actions[bot] Sep 4, 2025
68acfd2
chore: update PR‑approval chart
github-actions[bot] Sep 4, 2025
242312c
chore: update PR‑approval chart
github-actions[bot] Sep 4, 2025
58da69e
chore: update PR‑approval chart
github-actions[bot] Sep 4, 2025
03f4ae6
chore: update PR‑approval chart
github-actions[bot] Sep 4, 2025
c348072
chore: update PR‑approval chart
github-actions[bot] Sep 4, 2025
d82ebf7
chore: update PR‑approval chart
github-actions[bot] Sep 4, 2025
59bdc29
chore: update PR‑approval chart
github-actions[bot] Sep 4, 2025
9b3a09f
Include head:devin in Devin PR counts (issue #52)
staging-devin-ai-integration[bot] Sep 1, 2025
c24c601
Fix GitHub search syntax for Devin PR counting
staging-devin-ai-integration[bot] Sep 4, 2025
52fc55d
Remove devin-ai-integration[bot] queries, use only head:devin pattern
staging-devin-ai-integration[bot] Sep 2, 2025
1990b6b
Remove extra Devin print statements
staging-devin-ai-integration[bot] Sep 4, 2025
65b542e
Ensure all files consistently use head:devin/ pattern with slash
staging-devin-ai-integration[bot] Sep 4, 2025
fdfcb38
chore: update PR‑approval chart
github-actions[bot] Sep 5, 2025
09991fa
chore: update PR‑approval chart
github-actions[bot] Sep 5, 2025
642953f
Merge branch 'main' into devin/1756763132-fix-head-devin-counts
walnutwaldo Sep 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ Explore the GitHub search queries used:
- **Merged Cursor PRs**: [https://github.com/search?q=is:pr+head:cursor/+is:merged&type=pullrequests](https://github.com/search?q=is:pr+head:cursor/+is:merged&type=pullrequests)


- **All Devin PRs**: [https://github.com/search?q=is:pr+author:devin-ai-integration[bot]&type=pullrequests](https://github.com/search?q=is:pr+author:devin-ai-integration[bot]&type=pullrequests)
- **Merged Devin PRs**: [https://github.com/search?q=is:pr+author:devin-ai-integration[bot]+is:merged&type=pullrequests](https://github.com/search?q=is:pr+author:devin-ai-integration[bot]+is:merged&type=pullrequests)
- **All Devin PRs**: [https://github.com/search?q=is:pr+head:devin/&type=pullrequests](https://github.com/search?q=is:pr+head:devin/&type=pullrequests)
- **Merged Devin PRs**: [https://github.com/search?q=is:pr+head:devin/+is:merged&type=pullrequests](https://github.com/search?q=is:pr+head:devin/+is:merged&type=pullrequests)


- **All Codegen PRs**: [https://github.com/search?q=is:pr+author:codegen-sh[bot]&type=pullrequests](https://github.com/search?q=is:pr+author:codegen-sh[bot]&type=pullrequests)
Expand All @@ -48,8 +48,8 @@ Explore the GitHub search queries used:

| Project | Ready PRs | Merged PRs | Success Rate |
| ------- | --------- | ---------- | ------------ |
| Copilot | 96,545 | 89,370 | 92.57% |
| Codex | 1,322,204 | 1,164,937 | 88.11% |
| Cursor | 79,720 | 68,384 | 85.78% |
| Devin | 38,067 | 24,760 | 65.04% |
| Codegen | 3,837 | 2,632 | 68.6% |
| Copilot | 103,170 | 95,563 | 92.63% |
| Codex | 1,363,856 | 1,201,000 | 88.06% |
| Cursor | 82,563 | 71,821 | 86.99% |
| Devin | 38,371 | 24,881 | 64.84% |
| Codegen | 4,096 | 2,689 | 65.65% |
8 changes: 4 additions & 4 deletions collect_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ def get_headers():
"is:pr+head:cursor/": "cursor_total",
"is:pr+head:cursor/+is:merged": "cursor_merged",
"is:pr+head:cursor/+-is:draft": "cursor_nondraft",
# Devin metrics
"is:pr+author:devin-ai-integration[bot]": "devin_total",
"is:pr+author:devin-ai-integration[bot]+is:merged": "devin_merged",
"is:pr+author:devin-ai-integration[bot]+-is:draft": "devin_nondraft",
# Devin metrics - using head:devin/ pattern like other agents
"is:pr+head:devin/": "devin_total",
"is:pr+head:devin/+is:merged": "devin_merged",
"is:pr+head:devin/+-is:draft": "devin_nondraft",
# Codegen metrics
"is:pr+author:codegen-sh[bot]": "codegen_total",
"is:pr+author:codegen-sh[bot]+is:merged": "codegen_merged",
Expand Down
25 changes: 25 additions & 0 deletions data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -793,3 +793,28 @@ timestamp,copilot_total,copilot_merged,codex_total,codex_merged,cursor_total,cur
2025‑09‑01 18:02:57,144948,88898,1329587,1161497,123347,68182,39242,24735,6065,2631,96051,1318026,79492,38032,3832
2025‑09‑01 21:02:48,145281,89044,1331558,1163232,123551,68298,39255,24741,6066,2632,96207,1319953,79608,38044,3833
2025‑09‑02 00:04:58,145752,89370,1333809,1164937,123693,68384,39280,24760,6070,2632,96545,1322204,79720,38067,3837
2025‑09‑02 03:18:44,146145,89639,1335593,1166461,123890,68498,39288,24755,6070,2632,96829,1323991,79835,38073,3837
2025‑09‑02 06:03:00,146425,89827,1336955,1167713,124118,68598,39305,24768,6073,2633,97016,1325342,79934,38089,3840
2025‑09‑02 09:02:59,146825,90023,1337971,1168420,124438,68805,39326,24775,6086,2635,97219,1326354,80126,38106,3853
2025‑09‑02 12:03:22,147263,90259,1339751,1169998,124675,68953,39331,24778,6089,2635,97471,1328107,80284,38109,3855
2025‑09‑02 15:03:02,147823,90647,1341360,1171381,124921,69136,39345,24781,6096,2638,97872,1329692,80420,38120,3862
2025‑09‑02 18:03:04,148417,91002,1343648,1173309,125202,69309,39361,24786,6105,2635,98251,1331959,80556,38133,3870
2025‑09‑02 21:03:03,148904,91307,1344934,1174418,125400,69404,39382,24788,6117,2635,98583,1333227,80660,38152,3876
2025‑09‑03 00:03:27,149311,91544,1346326,1175625,125652,69557,39402,24805,6131,2636,98833,1334608,80778,38172,3880
2025‑09‑03 03:10:34,149583,91703,1346895,1176044,125723,69685,39435,24822,6153,2639,99006,1335171,80761,38205,3882
2025‑09‑03 06:02:56,149924,91896,1348515,1177504,125971,69881,39424,24818,6183,2640,99235,1336781,80909,38195,3887
2025‑09‑03 09:03:09,150295,92121,1350566,1179345,126190,69989,39351,24751,6210,2640,99468,1338826,81018,38123,3895
2025‑09‑03 12:03:18,150740,92391,1352047,1180580,126263,69994,39376,24764,6241,2643,99775,1340298,81002,38141,3902
2025‑09‑03 15:03:35,151280,92751,1353960,1182194,126729,70199,39407,24776,6278,2645,100148,1342189,81184,38164,3910
2025‑09‑03 18:03:01,151814,93112,1355680,1183668,126892,70224,39447,24799,6282,2645,100526,1343902,81215,38204,3911
2025‑09‑03 21:02:49,152201,93326,1358043,1185785,127070,70317,39461,24806,6294,2647,100758,1346256,81304,38218,3915
2025‑09‑04 00:03:34,152453,93493,1359743,1187232,127282,70448,39475,24815,6303,2651,100938,1347948,81448,38232,3923
2025‑09‑04 03:11:25,152671,93622,1361106,1188457,127543,70637,39506,24832,6308,2654,101082,1349308,81580,38265,3928
2025‑09‑04 06:03:04,152999,93848,1362709,1189865,127668,70684,39514,24838,6333,2661,101320,1350899,81627,38271,3949
2025‑09‑04 09:03:19,153379,94049,1364338,1191247,127849,70761,39508,24822,6353,2663,101533,1352528,81729,38261,3968
2025‑09‑04 12:03:13,153528,94126,1365935,1192512,128031,71200,39531,24830,6389,2667,101615,1354084,81978,38280,3999
2025‑09‑04 15:03:04,153987,94370,1368077,1194457,128234,71332,39566,24851,6411,2672,101895,1356242,82093,38315,4021
2025‑09‑04 18:02:54,154428,94693,1370109,1196352,128496,71460,39585,24862,6414,2670,102236,1358253,82218,38334,4024
2025‑09‑04 21:03:04,155000,94981,1372473,1198412,128715,71589,39601,24867,6436,2679,102575,1360617,82364,38349,4046
2025‑09‑05 00:03:32,155415,95257,1374055,1199623,128911,71720,39620,24875,6447,2682,102853,1362189,82498,38365,4056
2025‑09‑05 03:13:47,155863,95563,1375734,1201000,129076,71821,39628,24881,6495,2689,103170,1363856,82563,38371,4096
Loading