clawbench-cli 0.1.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (226) hide show
  1. clawbench/__init__.py +35 -0
  2. clawbench/__main__.py +8 -0
  3. clawbench/batch.py +619 -0
  4. clawbench/cli.py +397 -0
  5. clawbench/data/chrome-extension/README.md +127 -0
  6. clawbench/data/chrome-extension/background.js +50 -0
  7. clawbench/data/chrome-extension/content.js +70 -0
  8. clawbench/data/chrome-extension/manifest.json +25 -0
  9. clawbench/data/chrome-extension/setup.sh +27 -0
  10. clawbench/data/chrome-extension/stealth.js +200 -0
  11. clawbench/data/docker/Dockerfile +51 -0
  12. clawbench/data/docker/entrypoint.sh +394 -0
  13. clawbench/data/docker/setup-openclaw.sh +112 -0
  14. clawbench/data/eval/README.md +95 -0
  15. clawbench/data/eval/agentic_eval.md +53 -0
  16. clawbench/data/extension-server/.python-version +1 -0
  17. clawbench/data/extension-server/README.md +54 -0
  18. clawbench/data/extension-server/pyproject.toml +7 -0
  19. clawbench/data/extension-server/server.py +360 -0
  20. clawbench/data/extension-server/uv.lock +644 -0
  21. clawbench/data/models/model.schema.json +44 -0
  22. clawbench/data/models/models.example.yaml +16 -0
  23. clawbench/data/shared/alex_green_personal_info.json +451 -0
  24. clawbench/data/test-cases/001-daily-life-food-uber-eats/task.json +25 -0
  25. clawbench/data/test-cases/002-daily-life-food-doordash/task.json +25 -0
  26. clawbench/data/test-cases/004-daily-life-food-instacart/extra_info/grocery_list.json +36 -0
  27. clawbench/data/test-cases/004-daily-life-food-instacart/task.json +30 -0
  28. clawbench/data/test-cases/006-daily-life-food-uber-eats/task.json +24 -0
  29. clawbench/data/test-cases/007-daily-life-food-instacart/extra_info/meal_plan.json +21 -0
  30. clawbench/data/test-cases/007-daily-life-food-instacart/task.json +30 -0
  31. clawbench/data/test-cases/011-daily-life-housing-zillow/task.json +25 -0
  32. clawbench/data/test-cases/015-daily-life-housing-craigslist/extra_info/listing_details.json +26 -0
  33. clawbench/data/test-cases/015-daily-life-housing-craigslist/task.json +30 -0
  34. clawbench/data/test-cases/035-daily-life-health-medical-betterhelp/task.json +25 -0
  35. clawbench/data/test-cases/041-daily-life-pets-rover/task.json +25 -0
  36. clawbench/data/test-cases/043-daily-life-pets-rover/extra_info/pet_info.json +12 -0
  37. clawbench/data/test-cases/043-daily-life-pets-rover/task.json +30 -0
  38. clawbench/data/test-cases/045-daily-life-personal-care-booksy/task.json +25 -0
  39. clawbench/data/test-cases/047-daily-life-personal-care-taskrabbit/extra_info/address_info.json +7 -0
  40. clawbench/data/test-cases/047-daily-life-personal-care-taskrabbit/task.json +30 -0
  41. clawbench/data/test-cases/086-job-search-hr-cv-autofill-greenhouse-meta/extra_info/job_links.json +5 -0
  42. clawbench/data/test-cases/086-job-search-hr-cv-autofill-greenhouse-meta/task.json +30 -0
  43. clawbench/data/test-cases/089-job-search-hr-cv-autofill-simplify-jobs/extra_info/job_links.json +5 -0
  44. clawbench/data/test-cases/089-job-search-hr-cv-autofill-simplify-jobs/task.json +30 -0
  45. clawbench/data/test-cases/091-job-search-hr-job-apply-indeed/task.json +25 -0
  46. clawbench/data/test-cases/120-office-secretary-tasks-email-mgmt-purelymail/task.json +28 -0
  47. clawbench/data/test-cases/121-office-secretary-tasks-email-mgmt-purelymail/task.json +28 -0
  48. clawbench/data/test-cases/128-office-secretary-tasks-email-mgmt-purelymail/task.json +28 -0
  49. clawbench/data/test-cases/134-office-secretary-tasks-calendar-calendly/task.json +25 -0
  50. clawbench/data/test-cases/137-office-secretary-tasks-calendar-doodle/extra_info/meeting_details.json +30 -0
  51. clawbench/data/test-cases/137-office-secretary-tasks-calendar-doodle/task.json +30 -0
  52. clawbench/data/test-cases/139-office-secretary-tasks-calendar-calendly/task.json +25 -0
  53. clawbench/data/test-cases/142-office-secretary-tasks-collab-trello/extra_info/task_list.json +29 -0
  54. clawbench/data/test-cases/142-office-secretary-tasks-collab-trello/task.json +30 -0
  55. clawbench/data/test-cases/179-dev-tech-github-ops-github/extra_info/config.json +13 -0
  56. clawbench/data/test-cases/179-dev-tech-github-ops-github/task.json +30 -0
  57. clawbench/data/test-cases/180-dev-tech-github-ops-github/task.json +25 -0
  58. clawbench/data/test-cases/215-academia-research-paper-tables-overleaf/extra_info/raw_results.json +47 -0
  59. clawbench/data/test-cases/215-academia-research-paper-tables-overleaf/task.json +30 -0
  60. clawbench/data/test-cases/242-academia-research-research-tools-overleaf/task.json +25 -0
  61. clawbench/data/test-cases/246-academia-research-research-tools-zotero/task.json +25 -0
  62. clawbench/data/test-cases/247-academia-research-research-tools-semantic-scholar/task.json +25 -0
  63. clawbench/data/test-cases/265-education-learning-general-coursera/task.json +25 -0
  64. clawbench/data/test-cases/266-education-learning-general-leetcode/extra_info/solution_code.py +9 -0
  65. clawbench/data/test-cases/266-education-learning-general-leetcode/task.json +30 -0
  66. clawbench/data/test-cases/273-education-learning-general-edx/task.json +25 -0
  67. clawbench/data/test-cases/274-education-learning-general-udemy/task.json +25 -0
  68. clawbench/data/test-cases/279-travel-general-airbnb/task.json +25 -0
  69. clawbench/data/test-cases/280-travel-general-booking-com/task.json +25 -0
  70. clawbench/data/test-cases/363-entertainment-hobbies-general-ticketmaster/task.json +25 -0
  71. clawbench/data/test-cases/369-entertainment-hobbies-general-goodreads/extra_info/book_list.json +14 -0
  72. clawbench/data/test-cases/369-entertainment-hobbies-general-goodreads/task.json +30 -0
  73. clawbench/data/test-cases/372-entertainment-hobbies-general-eventbrite/extra_info/event_details.json +10 -0
  74. clawbench/data/test-cases/372-entertainment-hobbies-general-eventbrite/task.json +30 -0
  75. clawbench/data/test-cases/403-personal-management-account-security-1password-web/extra_info/credentials.json +34 -0
  76. clawbench/data/test-cases/403-personal-management-account-security-1password-web/task.json +30 -0
  77. clawbench/data/test-cases/413-personal-management-personal-tools-todoist/extra_info/task_list.json +52 -0
  78. clawbench/data/test-cases/413-personal-management-personal-tools-todoist/task.json +30 -0
  79. clawbench/data/test-cases/468-rating-voting-general-glassdoor/extra_info/interview_experience.json +10 -0
  80. clawbench/data/test-cases/468-rating-voting-general-glassdoor/task.json +30 -0
  81. clawbench/data/test-cases/469-rating-voting-general-tripadvisor/extra_info/review_content.json +6 -0
  82. clawbench/data/test-cases/469-rating-voting-general-tripadvisor/task.json +30 -0
  83. clawbench/data/test-cases/470-rating-voting-general-trustpilot/extra_info/review_content.json +6 -0
  84. clawbench/data/test-cases/470-rating-voting-general-trustpilot/task.json +30 -0
  85. clawbench/data/test-cases/474-rating-voting-general-capterra/task.json +25 -0
  86. clawbench/data/test-cases/475-rating-voting-general-g2/task.json +25 -0
  87. clawbench/data/test-cases/482-creation-init-general-confluence/extra_info/content.json +3 -0
  88. clawbench/data/test-cases/482-creation-init-general-confluence/task.json +30 -0
  89. clawbench/data/test-cases/483-creation-init-general-airtable/task.json +25 -0
  90. clawbench/data/test-cases/484-creation-init-general-clickup/task.json +28 -0
  91. clawbench/data/test-cases/485-creation-init-general-webflow/task.json +25 -0
  92. clawbench/data/test-cases/486-creation-init-general-mailchimp/extra_info/content.json +3 -0
  93. clawbench/data/test-cases/486-creation-init-general-mailchimp/task.json +30 -0
  94. clawbench/data/test-cases/487-creation-init-general-typeform/extra_info/survey_questions.json +85 -0
  95. clawbench/data/test-cases/487-creation-init-general-typeform/task.json +30 -0
  96. clawbench/data/test-cases/488-creation-init-general-substack/extra_info/content.json +3 -0
  97. clawbench/data/test-cases/488-creation-init-general-substack/task.json +30 -0
  98. clawbench/data/test-cases/489-creation-init-general-ghost/extra_info/content.json +3 -0
  99. clawbench/data/test-cases/489-creation-init-general-ghost/task.json +30 -0
  100. clawbench/data/test-cases/501-creation-init-general-asana/extra_info/project_description.json +8 -0
  101. clawbench/data/test-cases/501-creation-init-general-asana/task.json +33 -0
  102. clawbench/data/test-cases/529-daily-life-shopping-delivery-king-arthur-baking/task.json +25 -0
  103. clawbench/data/test-cases/533-daily-life-utilities-inmyarea/task.json +25 -0
  104. clawbench/data/test-cases/535-daily-life-home-home-depot/task.json +25 -0
  105. clawbench/data/test-cases/537-daily-life-food-crumbl/task.json +25 -0
  106. clawbench/data/test-cases/539-daily-life-health-jefit/task.json +25 -0
  107. clawbench/data/test-cases/542-daily-life-pets-wag/task.json +25 -0
  108. clawbench/data/test-cases/551-finance-investment-crypto-wallet-trezor/task.json +25 -0
  109. clawbench/data/test-cases/552-finance-investment-business-payment-plooto/task.json +25 -0
  110. clawbench/data/test-cases/555-finance-investment-insurance-insureon/task.json +25 -0
  111. clawbench/data/test-cases/559-finance-investment-crowdfunding-frontfundr/task.json +25 -0
  112. clawbench/data/test-cases/564-daily-life-event-registration-race-roster/task.json +25 -0
  113. clawbench/data/test-cases/565-job-search-hr-job-search-jopwell/task.json +25 -0
  114. clawbench/data/test-cases/566-job-search-hr-job-search-ziprecruiter/extra_info/listing_details.json +26 -0
  115. clawbench/data/test-cases/566-job-search-hr-job-search-ziprecruiter/task.json +30 -0
  116. clawbench/data/test-cases/569-job-search-hr-job-search-careerbuilder/task.json +25 -0
  117. clawbench/data/test-cases/570-job-search-hr-job-search-hired/task.json +25 -0
  118. clawbench/data/test-cases/571-job-search-hr-recruitment-mgmt-workable/extra_info/listing_details.json +26 -0
  119. clawbench/data/test-cases/571-job-search-hr-recruitment-mgmt-workable/task.json +30 -0
  120. clawbench/data/test-cases/576-office-secretary-tasks-reports-ftc-reportfraud/task.json +25 -0
  121. clawbench/data/test-cases/583-office-secretary-tasks-support-tickets-freshdesk/task.json +25 -0
  122. clawbench/data/test-cases/598-academia-research-legal-docs-formswift/task.json +25 -0
  123. clawbench/data/test-cases/606-education-learning-kids-courses-outschool/task.json +25 -0
  124. clawbench/data/test-cases/607-education-learning-art-courses-creativebug/task.json +25 -0
  125. clawbench/data/test-cases/609-education-learning-meditation-spirit-rock-meditation-center/task.json +25 -0
  126. clawbench/data/test-cases/615-travel-flights-spirit-airlines/task.json +25 -0
  127. clawbench/data/test-cases/618-travel-train-bus-12go-asia/task.json +25 -0
  128. clawbench/data/test-cases/625-travel-camping-outdoor-parks-canada-reservations/task.json +25 -0
  129. clawbench/data/test-cases/626-travel-bus-flixbus/task.json +25 -0
  130. clawbench/data/test-cases/627-travel-flights-momondo/task.json +25 -0
  131. clawbench/data/test-cases/632-shopping-commerce-beauty-care-olaplex/task.json +25 -0
  132. clawbench/data/test-cases/634-shopping-commerce-apparel-dooney-bourke/task.json +25 -0
  133. clawbench/data/test-cases/635-shopping-commerce-gifts-uncommon-goods/task.json +25 -0
  134. clawbench/data/test-cases/636-shopping-commerce-auto-parts-rockauto/task.json +25 -0
  135. clawbench/data/test-cases/638-shopping-commerce-print-custom-vistaprint/task.json +25 -0
  136. clawbench/data/test-cases/639-shopping-commerce-luxury-mansur-gavriel/task.json +25 -0
  137. clawbench/data/test-cases/671-entertainment-gaming-humble-bundle/task.json +25 -0
  138. clawbench/data/test-cases/672-entertainment-hobbies-anime-streaming-crunchyroll/task.json +25 -0
  139. clawbench/data/test-cases/674-entertainment-hobbies-masterclass-masterclass/task.json +25 -0
  140. clawbench/data/test-cases/676-government-civic-legal-docs-legalnature/task.json +25 -0
  141. clawbench/data/test-cases/685-personal-management-budget-mgmt-everydollar/task.json +25 -0
  142. clawbench/data/test-cases/687-personal-management-vpn-subscription-ipvanish/task.json +25 -0
  143. clawbench/data/test-cases/688-personal-management-insurance-compare-insurify/task.json +25 -0
  144. clawbench/data/test-cases/695-automation-workflows-recurring-order-stumptown-coffee/task.json +25 -0
  145. clawbench/data/test-cases/697-automation-workflows-recurring-order-bean-box/task.json +25 -0
  146. clawbench/data/test-cases/699-automation-workflows-recurring-order-mistobox/task.json +25 -0
  147. clawbench/data/test-cases/700-deletion-revocation-data-deletion-deleteme/task.json +25 -0
  148. clawbench/data/test-cases/705-rating-voting-wine-review-vivino/task.json +25 -0
  149. clawbench/data/test-cases/706-rating-voting-beer-review-beeradvocate/task.json +25 -0
  150. clawbench/data/test-cases/707-rating-voting-social-wine-untappd/task.json +25 -0
  151. clawbench/data/test-cases/708-rating-voting-professor-review-ratemyprofessors/task.json +28 -0
  152. clawbench/data/test-cases/709-rating-voting-service-review-angi/task.json +25 -0
  153. clawbench/data/test-cases/710-creation-init-interior-design-roomsketcher/task.json +25 -0
  154. clawbench/data/test-cases/711-creation-init-color-design-coolors/task.json +25 -0
  155. clawbench/data/test-cases/712-creation-init-website-create-squarespace/task.json +25 -0
  156. clawbench/data/test-cases/713-creation-init-website-build-wix/task.json +25 -0
  157. clawbench/data/test-cases/735-home-services-maintenance-house-cleaning-bark/task.json +25 -0
  158. clawbench/data/test-cases/736-home-services-maintenance-plumbing-ace-hardware/task.json +25 -0
  159. clawbench/data/test-cases/737-home-services-maintenance-kitchen-remodel-lowes/task.json +25 -0
  160. clawbench/data/test-cases/738-home-services-maintenance-equipment-install-amazon-home-services/task.json +25 -0
  161. clawbench/data/test-cases/750-automotive-vehicle-services-car-insurance-compare-kanetix/task.json +25 -0
  162. clawbench/data/test-cases/751-automotive-vehicle-services-car-lease-sixt/task.json +25 -0
  163. clawbench/data/test-cases/754-automotive-vehicle-services-used-car-listing-autotrader/task.json +25 -0
  164. clawbench/data/test-cases/763-automotive-vehicle-services-car-lease-autoslash/task.json +25 -0
  165. clawbench/data/test-cases/766-nonprofit-charity-donation-doctors-without-borders-msf/task.json +25 -0
  166. clawbench/data/test-cases/768-nonprofit-charity-community-crowdfund-ioby/task.json +25 -0
  167. clawbench/data/test-cases/770-nonprofit-charity-volunteer-apply-on-make-a-wish-foundation-website-complete-and-submit-a-volunteer-application-form-selecting-the-wish-granter-role-and-entering-city-phoenix-az/task.json +25 -0
  168. clawbench/data/test-cases/774-nonprofit-charity-nonprofit-job-apply-charity-village/task.json +25 -0
  169. clawbench/data/test-cases/776-nonprofit-charity-volunteer-signup-idealist/task.json +25 -0
  170. clawbench/data/test-cases/778-nonprofit-charity-donation-globalgiving/extra_info/payment_info.json +3 -0
  171. clawbench/data/test-cases/778-nonprofit-charity-donation-globalgiving/task.json +30 -0
  172. clawbench/data/test-cases/780-beauty-personal-care-skincare-purchase-soko-glam/extra_info/address_info.json +4 -0
  173. clawbench/data/test-cases/780-beauty-personal-care-skincare-purchase-soko-glam/task.json +30 -0
  174. clawbench/data/test-cases/781-beauty-personal-care-beauty-booking-bluemercury/extra_info/email_info.json +3 -0
  175. clawbench/data/test-cases/781-beauty-personal-care-beauty-booking-bluemercury/task.json +30 -0
  176. clawbench/data/test-cases/782-beauty-personal-care-skincare-purchase-paulas-choice/task.json +24 -0
  177. clawbench/data/test-cases/783-beauty-personal-care-beauty-booking-ulta-beauty/task.json +24 -0
  178. clawbench/data/test-cases/785-beauty-personal-care-skincare-curology/task.json +25 -0
  179. clawbench/data/test-cases/788-beauty-personal-care-makeup-the-ordinary/task.json +25 -0
  180. clawbench/data/test-cases/789-beauty-personal-care-makeup-fenty-beauty/task.json +25 -0
  181. clawbench/data/test-cases/793-beauty-personal-care-beauty-retail-mac-cosmetics/task.json +25 -0
  182. clawbench/data/test-cases/794-beauty-personal-care-salon-booking-styleseat/task.json +25 -0
  183. clawbench/data/test-cases/795-pet-animal-care-pet-adoption-aspca/task.json +25 -0
  184. clawbench/data/test-cases/796-pet-animal-care-pet-supplies-grooming-petsmart/extra_info/pet_info.json +12 -0
  185. clawbench/data/test-cases/796-pet-animal-care-pet-supplies-grooming-petsmart/task.json +30 -0
  186. clawbench/data/test-cases/799-pet-animal-care-pet-insurance-aspca-pet-health-insurance/task.json +25 -0
  187. clawbench/data/test-cases/801-pet-animal-care-pet-friendly-travel-bringfido/task.json +25 -0
  188. clawbench/data/test-cases/803-pet-animal-care-pet-medical-pawp/extra_info/pet_info.json +12 -0
  189. clawbench/data/test-cases/803-pet-animal-care-pet-medical-pawp/task.json +30 -0
  190. clawbench/data/test-cases/807-pet-animal-care-pet-dna-embark/task.json +25 -0
  191. clawbench/data/test-cases/809-pet-animal-care-pet-adopt-petfinder/task.json +28 -0
  192. clawbench/data/test-cases/812-pet-animal-care-pet-subscription-ollie/task.json +25 -0
  193. clawbench/data/test-cases/815-personal-management-records-mgmt-myheritage/task.json +25 -0
  194. clawbench/data/test-cases/821-education-learning-reading-self-study-blinkist/task.json +25 -0
  195. clawbench/data/test-cases/861-entertainment-hobbies-movies-cineplex/task.json +25 -0
  196. clawbench/data/test-cases/862-entertainment-hobbies-movies-amc-theatres/task.json +25 -0
  197. clawbench/data/test-cases/864-entertainment-hobbies-show-tickets-ticketmaster/task.json +25 -0
  198. clawbench/data/test-cases/865-travel-outdoor-hipcamp/task.json +25 -0
  199. clawbench/data/test-cases/867-entertainment-hobbies-movies-fandango/task.json +25 -0
  200. clawbench/data/test-cases/872-daily-life-food-opentable/task.json +25 -0
  201. clawbench/data/test-cases/873-daily-life-food-resy/task.json +28 -0
  202. clawbench/data/test-cases/876-entertainment-hobbies-show-tickets-vivid-seats/task.json +25 -0
  203. clawbench/data/test-cases/877-entertainment-hobbies-show-tickets-stubhub/task.json +25 -0
  204. clawbench/data/test-cases/878-travel-outdoor-ontario-parks/task.json +25 -0
  205. clawbench/data/test-cases/883-education-learning-hobby-class-sur-la-table/task.json +25 -0
  206. clawbench/data/test-cases/884-entertainment-hobbies-experience-breakout-games/task.json +25 -0
  207. clawbench/data/test-cases/885-entertainment-hobbies-experience-bowlero/task.json +25 -0
  208. clawbench/data/test-cases/886-entertainment-hobbies-experience-topgolf/task.json +25 -0
  209. clawbench/data/test-cases/lite.json +226 -0
  210. clawbench/data/test-cases/lite.schema.json +105 -0
  211. clawbench/data/test-cases/task.schema.json +132 -0
  212. clawbench/data/tools/build_clawbench_lite_enc.py +161 -0
  213. clawbench/doctor.py +171 -0
  214. clawbench/engine.py +180 -0
  215. clawbench/generate_resume_pdf.py +140 -0
  216. clawbench/hf_upload.py +78 -0
  217. clawbench/image.py +127 -0
  218. clawbench/paths.py +150 -0
  219. clawbench/resume_template.json +104 -0
  220. clawbench/run.py +942 -0
  221. clawbench/tui.py +1401 -0
  222. clawbench_cli-0.1.2.dist-info/METADATA +770 -0
  223. clawbench_cli-0.1.2.dist-info/RECORD +226 -0
  224. clawbench_cli-0.1.2.dist-info/WHEEL +4 -0
  225. clawbench_cli-0.1.2.dist-info/entry_points.txt +4 -0
  226. clawbench_cli-0.1.2.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,770 @@
1
+ Metadata-Version: 2.4
2
+ Name: clawbench-cli
3
+ Version: 0.1.2
4
+ Summary: ClawBench: Can AI Agents Complete Everyday Online Tasks? (alias of claw-bench)
5
+ Project-URL: Homepage, https://claw-bench.com
6
+ Project-URL: Repository, https://github.com/reacher-z/ClawBench
7
+ Project-URL: Paper, https://arxiv.org/abs/2604.08523
8
+ Project-URL: Dataset, https://huggingface.co/datasets/NAIL-Group/ClawBench
9
+ Author: Yuxuan Zhang, The ClawBench Authors
10
+ License: Apache License
11
+ Version 2.0, January 2004
12
+ http://www.apache.org/licenses/
13
+
14
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
15
+
16
+ 1. Definitions.
17
+
18
+ "License" shall mean the terms and conditions for use, reproduction,
19
+ and distribution as defined by Sections 1 through 9 of this document.
20
+
21
+ "Licensor" shall mean the copyright owner or entity authorized by
22
+ the copyright owner that is granting the License.
23
+
24
+ "Legal Entity" shall mean the union of the acting entity and all
25
+ other entities that control, are controlled by, or are under common
26
+ control with that entity. For the purposes of this definition,
27
+ "control" means (i) the power, direct or indirect, to cause the
28
+ direction or management of such entity, whether by contract or
29
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
30
+ outstanding shares, or (iii) beneficial ownership of such entity.
31
+
32
+ "You" (or "Your") shall mean an individual or Legal Entity
33
+ exercising permissions granted by this License.
34
+
35
+ "Source" form shall mean the preferred form for making modifications,
36
+ including but not limited to software source code, documentation
37
+ source, and configuration files.
38
+
39
+ "Object" form shall mean any form resulting from mechanical
40
+ transformation or translation of a Source form, including but
41
+ not limited to compiled object code, generated documentation,
42
+ and conversions to other media types.
43
+
44
+ "Work" shall mean the work of authorship, whether in Source or
45
+ Object form, made available under the License, as indicated by a
46
+ copyright notice that is included in or attached to the work
47
+ (an example is provided in the Appendix below).
48
+
49
+ "Derivative Works" shall mean any work, whether in Source or Object
50
+ form, that is based on (or derived from) the Work and for which the
51
+ editorial revisions, annotations, elaborations, or other modifications
52
+ represent, as a whole, an original work of authorship. For the purposes
53
+ of this License, Derivative Works shall not include works that remain
54
+ separable from, or merely link (or bind by name) to the interfaces of,
55
+ the Work and Derivative Works thereof.
56
+
57
+ "Contribution" shall mean any work of authorship, including
58
+ the original version of the Work and any modifications or additions
59
+ to that Work or Derivative Works thereof, that is intentionally
60
+ submitted to Licensor for inclusion in the Work by the copyright owner
61
+ or by an individual or Legal Entity authorized to submit on behalf of
62
+ the copyright owner. For the purposes of this definition, "submitted"
63
+ means any form of electronic, verbal, or written communication sent
64
+ to the Licensor or its representatives, including but not limited to
65
+ communication on electronic mailing lists, source code control systems,
66
+ and issue tracking systems that are managed by, or on behalf of, the
67
+ Licensor for the purpose of discussing and improving the Work, but
68
+ excluding communication that is conspicuously marked or otherwise
69
+ designated in writing by the copyright owner as "Not a Contribution."
70
+
71
+ "Contributor" shall mean Licensor and any individual or Legal Entity
72
+ on behalf of whom a Contribution has been received by Licensor and
73
+ subsequently incorporated within the Work.
74
+
75
+ 2. Grant of Copyright License. Subject to the terms and conditions of
76
+ this License, each Contributor hereby grants to You a perpetual,
77
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
78
+ copyright license to reproduce, prepare Derivative Works of,
79
+ publicly display, publicly perform, sublicense, and distribute the
80
+ Work and such Derivative Works in Source or Object form.
81
+
82
+ 3. Grant of Patent License. Subject to the terms and conditions of
83
+ this License, each Contributor hereby grants to You a perpetual,
84
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
85
+ (except as stated in this section) patent license to make, have made,
86
+ use, offer to sell, sell, import, and otherwise transfer the Work,
87
+ where such license applies only to those patent claims licensable
88
+ by such Contributor that are necessarily infringed by their
89
+ Contribution(s) alone or by combination of their Contribution(s)
90
+ with the Work to which such Contribution(s) was submitted. If You
91
+ institute patent litigation against any entity (including a
92
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
93
+ or a Contribution incorporated within the Work constitutes direct
94
+ or contributory patent infringement, then any patent licenses
95
+ granted to You under this License for that Work shall terminate
96
+ as of the date such litigation is filed.
97
+
98
+ 4. Redistribution. You may reproduce and distribute copies of the
99
+ Work or Derivative Works thereof in any medium, with or without
100
+ modifications, and in Source or Object form, provided that You
101
+ meet the following conditions:
102
+
103
+ (a) You must give any other recipients of the Work or
104
+ Derivative Works a copy of this License; and
105
+
106
+ (b) You must cause any modified files to carry prominent notices
107
+ stating that You changed the files; and
108
+
109
+ (c) You must retain, in the Source form of any Derivative Works
110
+ that You distribute, all copyright, patent, trademark, and
111
+ attribution notices from the Source form of the Work,
112
+ excluding those notices that do not pertain to any part of
113
+ the Derivative Works; and
114
+
115
+ (d) If the Work includes a "NOTICE" text file as part of its
116
+ distribution, then any Derivative Works that You distribute must
117
+ include a readable copy of the attribution notices contained
118
+ within such NOTICE file, excluding those notices that do not
119
+ pertain to any part of the Derivative Works, in at least one
120
+ of the following places: within a NOTICE text file distributed
121
+ as part of the Derivative Works; within the Source form or
122
+ documentation, if provided along with the Derivative Works; or,
123
+ within a display generated by the Derivative Works, if and
124
+ wherever such third-party notices normally appear. The contents
125
+ of the NOTICE file are for informational purposes only and
126
+ do not modify the License. You may add Your own attribution
127
+ notices within Derivative Works that You distribute, alongside
128
+ or as an addendum to the NOTICE text from the Work, provided
129
+ that such additional attribution notices cannot be construed
130
+ as modifying the License.
131
+
132
+ You may add Your own copyright statement to Your modifications and
133
+ may provide additional or different license terms and conditions
134
+ for use, reproduction, or distribution of Your modifications, or
135
+ for any such Derivative Works as a whole, provided Your use,
136
+ reproduction, and distribution of the Work otherwise complies with
137
+ the conditions stated in this License.
138
+
139
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
140
+ any Contribution intentionally submitted for inclusion in the Work
141
+ by You to the Licensor shall be under the terms and conditions of
142
+ this License, without any additional terms or conditions.
143
+ Notwithstanding the above, nothing herein shall supersede or modify
144
+ the terms of any separate license agreement you may have executed
145
+ with Licensor regarding such Contributions.
146
+
147
+ 6. Trademarks. This License does not grant permission to use the trade
148
+ names, trademarks, service marks, or product names of the Licensor,
149
+ except as required for reasonable and customary use in describing the
150
+ origin of the Work and reproducing the content of the NOTICE file.
151
+
152
+ 7. Disclaimer of Warranty. Unless required by applicable law or
153
+ agreed to in writing, Licensor provides the Work (and each
154
+ Contributor provides its Contributions) on an "AS IS" BASIS,
155
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
156
+ implied, including, without limitation, any warranties or conditions
157
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
158
+ PARTICULAR PURPOSE. You are solely responsible for determining the
159
+ appropriateness of using or redistributing the Work and assume any
160
+ risks associated with Your exercise of permissions under this License.
161
+
162
+ 8. Limitation of Liability. In no event and under no legal theory,
163
+ whether in tort (including negligence), contract, or otherwise,
164
+ unless required by applicable law (such as deliberate and grossly
165
+ negligent acts) or agreed to in writing, shall any Contributor be
166
+ liable to You for damages, including any direct, indirect, special,
167
+ incidental, or consequential damages of any character arising as a
168
+ result of this License or out of the use or inability to use the
169
+ Work (including but not limited to damages for loss of goodwill,
170
+ work stoppage, computer failure or malfunction, or any and all
171
+ other commercial damages or losses), even if such Contributor
172
+ has been advised of the possibility of such damages.
173
+
174
+ 9. Accepting Warranty or Additional Liability. While redistributing
175
+ the Work or Derivative Works thereof, You may choose to offer,
176
+ and charge a fee for, acceptance of support, warranty, indemnity,
177
+ or other liability obligations and/or rights consistent with this
178
+ License. However, in accepting such obligations, You may act only
179
+ on Your own behalf and on Your sole responsibility, not on behalf
180
+ of any other Contributor, and only if You agree to indemnify,
181
+ defend, and hold each Contributor harmless for any liability
182
+ incurred by, or claims asserted against, such Contributor by reason
183
+ of your accepting any such warranty or additional liability.
184
+
185
+ END OF TERMS AND CONDITIONS
186
+
187
+ APPENDIX: How to apply the Apache License to your work.
188
+
189
+ To apply the Apache License to your work, attach the following
190
+ boilerplate notice, with the fields enclosed by brackets "[]"
191
+ replaced with your own identifying information. (Don't include
192
+ the brackets!) The text should be enclosed in the appropriate
193
+ comment syntax for the file format. We also recommend that a
194
+ file or class name and description of purpose be included on the
195
+ same "printed page" as the copyright notice for easier
196
+ identification within third-party archives.
197
+
198
+ Copyright 2026 ClawBench Authors
199
+
200
+ Licensed under the Apache License, Version 2.0 (the "License");
201
+ you may not use this file except in compliance with the License.
202
+ You may obtain a copy of the License at
203
+
204
+ http://www.apache.org/licenses/LICENSE-2.0
205
+
206
+ Unless required by applicable law or agreed to in writing, software
207
+ distributed under the License is distributed on an "AS IS" BASIS,
208
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
209
+ See the License for the specific language governing permissions and
210
+ limitations under the License.
211
+ License-File: LICENSE
212
+ Keywords: ai-agents,benchmark,browser-automation,browser-use,computer-use,evaluation,llm,web-agents
213
+ Classifier: Development Status :: 4 - Beta
214
+ Classifier: Intended Audience :: Science/Research
215
+ Classifier: License :: OSI Approved :: Apache Software License
216
+ Classifier: Operating System :: MacOS :: MacOS X
217
+ Classifier: Operating System :: POSIX :: Linux
218
+ Classifier: Programming Language :: Python :: 3
219
+ Classifier: Programming Language :: Python :: 3.11
220
+ Classifier: Programming Language :: Python :: 3.12
221
+ Classifier: Programming Language :: Python :: 3.13
222
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
223
+ Requires-Python: >=3.11
224
+ Requires-Dist: click>=8.1
225
+ Requires-Dist: fpdf2>=2.8
226
+ Requires-Dist: huggingface-hub>=0.27
227
+ Requires-Dist: platformdirs>=4.0
228
+ Requires-Dist: python-dotenv>=1.0
229
+ Requires-Dist: pyyaml>=6.0
230
+ Requires-Dist: questionary>=2.0
231
+ Requires-Dist: rich>=13.0
232
+ Description-Content-Type: text/markdown
233
+
234
+ <div align="center">
235
+
236
+ # ClawBench
237
+
238
+ [![arXiv](https://img.shields.io/badge/arXiv-2604.08523-B31B1B?style=flat-square&logo=arxiv&logoColor=white)](https://arxiv.org/abs/2604.08523)
239
+ [![HF Daily Paper](https://img.shields.io/badge/Daily_Paper-FFD21E?style=flat-square&logo=huggingface&logoColor=000)](https://huggingface.co/papers/2604.08523)
240
+ [![HF Dataset](https://img.shields.io/badge/Dataset-FFD21E?style=flat-square&logo=huggingface&logoColor=000)](https://huggingface.co/datasets/NAIL-Group/ClawBench)
241
+ [![Project Page](https://img.shields.io/badge/claw--bench.com-4F46E5?style=flat-square&logo=googlechrome&logoColor=white)](https://claw-bench.com)
242
+ [![GitHub stars](https://img.shields.io/github/stars/reacher-z/ClawBench?style=flat-square&logo=github&color=181717&cacheSeconds=300)](https://github.com/reacher-z/ClawBench)
243
+
244
+ <a href="#-human-quick-start"><img src="https://img.shields.io/badge/Run%20in%20one%20line%20of%20code-4F46E5?style=for-the-badge&labelColor=4F46E5&logoColor=white&logo=data:image/svg%2Bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NzYgNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMjYzLjQtMjdMMjc4LjIgOS44IDMxNSAyNC42YzMgMS4yIDUgNC4yIDUgNy40cy0yIDYuMi01IDcuNEwyNzguMiA1NC4yIDI2My40IDkxYy0xLjIgMy00LjIgNS03LjQgNXMtNi4yLTItNy40LTVMMjMzLjggNTQuMiAxOTcgMzkuNGMtMy0xLjItNS00LjItNS03LjRzMi02LjIgNS03LjRMMjMzLjggOS44IDI0OC42LTI3YzEuMi0zIDQuMi01IDcuNC01czYuMiAyIDcuNCA1ek0xMTAuNyA0MS43bDIxLjUgNTAuMSA1MC4xIDIxLjVjNS45IDIuNSA5LjcgOC4zIDkuNyAxNC43cy0zLjggMTIuMi05LjcgMTQuN2wtNTAuMSAyMS41LTIxLjUgNTAuMWMtMi41IDUuOS04LjMgOS43LTE0LjcgOS43cy0xMi4yLTMuOC0xNC43LTkuN0w1OS44IDE2NC4yIDkuNyAxNDIuN0MzLjggMTQwLjIgMCAxMzQuNCAwIDEyOHMzLjgtMTIuMiA5LjctMTQuN0w1OS44IDkxLjggODEuMyA0MS43QzgzLjggMzUuOCA4OS42IDMyIDk2IDMyczEyLjIgMy44IDE0LjcgOS43ek00NjQgMzA0YzYuNCAwIDEyLjIgMy44IDE0LjcgOS43bDIxLjUgNTAuMSA1MC4xIDIxLjVjNS45IDIuNSA5LjcgOC4zIDkuNyAxNC43cy0zLjggMTIuMi05LjcgMTQuN2wtNTAuMSAyMS41LTIxLjUgNTAuMWMtMi41IDUuOS04LjMgOS43LTE0LjcgOS43cy0xMi4yLTMuOC0xNC43LTkuN2wtMjEuNS01MC4xLTUwLjEtMjEuNWMtNS45LTIuNS05LjctOC4zLTkuNy0xNC43czMuOC0xMi4yIDkuNy0xNC43bDUwLjEtMjEuNSAyMS41LTUwLjFjMi41LTUuOSA4LjMtOS43IDE0LjctOS43ek00NjAgMGMxMSAwIDIxLjYgNC40IDI5LjUgMTIuMmw0Mi4zIDQyLjNDNTM5LjYgNjIuNCA1NDQgNzMgNTQ0IDg0cy00LjQgMjEuNi0xMi4yIDI5LjVsLTg4LjIgODguMi0xMDEuMy0xMDEuMyA4OC4yLTg4LjJDNDM4LjQgNC40IDQ0OSAwIDQ2MCAwek00NC4yIDM5OC41TDMwOC40IDEzNC4zIDQwOS43IDIzNS42IDE0NS41IDQ5OS44QzEzNy42IDUwNy42IDEyNyA1MTIgMTE2IDUxMnMtMjEuNi00LjQtMjkuNS0xMi4yTDQ0LjIgNDU3LjVDMzYuNCA0NDkuNiAzMiA0MzkgMzIgNDI4czQuNC0yMS42IDEyLjItMjkuNXoiLz48L3N2Zz4=" alt="Run in one line of code"></a>
245
+
246
+ ```bash
247
+ git clone https://github.com/reacher-z/ClawBench.git && cd ClawBench && ./run.sh
248
+ ```
249
+
250
+ <sub><i>Clone → Run → Done. &nbsp; No API keys. &nbsp; No dataset download. &nbsp; No manual setup.</i></sub>
251
+
252
+ ### Can AI Agents Complete Everyday Online Tasks?
253
+
254
+ We asked 6 frontier AI agents to do what people do every day --<br/>
255
+ order food, book travel, apply for jobs, write reviews, manage projects.<br/>
256
+ **The best model completed only 33.3% of tasks.**
257
+
258
+ ---
259
+
260
+ **153** everyday tasks &nbsp;&middot;&nbsp; **144** live websites &nbsp;&middot;&nbsp; **15** life categories
261
+
262
+ <a href="README.zh-CN.md"><img src="static/icons/language.svg" width="16" height="16"> 中文</a>
263
+
264
+ </div>
265
+
266
+ <br/>
267
+
268
+ <p align="center">
269
+ <img src="static/icons/globe.svg" width="24" height="24">&nbsp;<b>Live Websites</b>
270
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
271
+ <img src="static/icons/cube.svg" width="24" height="24">&nbsp;<b>Isolated Containers</b>
272
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
273
+ <img src="static/icons/shield-halved.svg" width="24" height="24">&nbsp;<b>Request Interceptor</b>
274
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
275
+ <img src="static/icons/layer-group.svg" width="24" height="24">&nbsp;<b>Five-Layer Recording</b>
276
+ </p>
277
+
278
+ <br/>
279
+
280
+ ## How It Works
281
+
282
+ ```
283
+ You pick a task ClawBench spins up Agent drives the Interceptor captures
284
+ from 153 real-world an isolated Docker browser: navigates, every action across
285
+ everyday scenarios container + Chromium fills forms, clicks all 5 layers of data
286
+
287
+ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐
288
+ │ "Book a pet │ ──► │ Container │ ──► │ AI Agent │ ──► │ 5 layers │
289
+ │ sitter on │ │ + Chromium │ │ browses the │ │ intercepted │
290
+ │ Rover" │ │ + Agent │ │ live site │ │ & recorded │
291
+ └──────────────┘ └──────────────┘ └──────────────┘ └──────────────┘
292
+ ```
293
+
294
+ <br/>
295
+
296
+ # <img src="static/icons/robot.svg" width="28" height="28"> LLM Quick Start
297
+
298
+ Point your coding agent (Claude Code, Cursor, Copilot, etc.) at [`AGENTS.md`](AGENTS.md) and prompt away.
299
+
300
+ <br/>
301
+
302
+ # <img src="static/icons/person.svg" width="28" height="28"> Human Quick Start
303
+
304
+ ```bash
305
+ git clone https://github.com/reacher-z/ClawBench.git && cd ClawBench && ./run.sh
306
+ ```
307
+
308
+ **Prerequisites:** [Python 3.11+](https://python.org), [uv](https://docs.astral.sh/uv/), and a container engine — [Docker](https://www.docker.com/) **or** [Podman](https://podman.io/). ClawBench auto-detects whichever is installed; force one with `export CONTAINER_ENGINE=docker` or `export CONTAINER_ENGINE=podman`.
309
+
310
+ <details>
311
+ <summary><b>Install Docker or Podman</b> (macOS / Linux / Windows)</summary>
312
+
313
+ #### macOS
314
+
315
+ ```bash
316
+ # Option A — Docker Desktop (easiest, includes GUI)
317
+ brew install --cask docker
318
+ open -a Docker # launch and wait for the whale icon to settle
319
+
320
+ # Option B — Podman (rootless, no daemon, CLI only)
321
+ brew install podman
322
+ podman machine init # one-time: downloads the Linux VM image
323
+ podman machine start # must be running before any podman command
324
+ ```
325
+
326
+ > **macOS Podman needs a VM.** `brew install podman` alone is not enough — Podman on macOS runs containers inside a small Linux VM, so you must `podman machine init && podman machine start` once after install or `podman info` will fail with `Cannot connect to Podman`.
327
+
328
+ #### Linux (Ubuntu / Debian)
329
+
330
+ ```bash
331
+ # Option A — Podman (rootless by default, recommended)
332
+ sudo apt update && sudo apt install -y podman
333
+
334
+ # Option B — Docker
335
+ sudo apt install -y docker.io
336
+ sudo usermod -aG docker $USER # log out / back in so your shell picks up the group
337
+ ```
338
+
339
+ > **Rootful Docker ownership note:** with classic `sudo`-docker, files extracted from containers land owned by `root` on the host. ClawBench's driver detects this after each run and chowns `test-output/` back to your user automatically — but if you run other container tooling alongside, rootless Podman (or rootless Docker) avoids the issue entirely.
340
+
341
+ #### Windows
342
+
343
+ ```powershell
344
+ # Option A — Docker Desktop (WSL2 backend)
345
+ winget install Docker.DockerDesktop
346
+ # then launch Docker Desktop from the Start menu and wait for it to be ready
347
+
348
+ # Option B — Podman
349
+ winget install RedHat.Podman
350
+ podman machine init
351
+ podman machine start
352
+ ```
353
+
354
+ > Run the `uv run …` commands below from **PowerShell**, **WSL2**, or **Git Bash**. Like macOS, Windows Podman requires `podman machine init && podman machine start` before its first use.
355
+
356
+ </details>
357
+
358
+ **1. Clone and configure:**
359
+ ```bash
360
+ git clone https://github.com/reacher-z/ClawBench.git && cd ClawBench
361
+ cp models/models.example.yaml models/models.yaml # edit: add your model API keys
362
+ # `.env` (PurelyMail creds for disposable-email signups) is already committed
363
+ # and works out of the box. Edit it only to override defaults or add HF_TOKEN.
364
+ ```
365
+
366
+ > [!NOTE]
367
+ > **First run builds a container image** (chromium + ffmpeg + noVNC + Node + openclaw, roughly **2 GB** download, **5–10 min** on a decent connection). You'll see a live progress spinner with the current build step. Subsequent runs reuse the cached layers and finish in seconds.
368
+
369
+ **2. Run your first task** (pick one):
370
+
371
+ > [!TIP]
372
+ > **Recommended &rarr; Interactive TUI** &nbsp; guided model + test case selection
373
+ > ```bash
374
+ > ./run.sh
375
+ > ```
376
+ > Needs an interactive terminal. For pipes / CI / non-TTY, call `test-driver/run.py` or `test-driver/batch.py` directly.
377
+
378
+ **(b) Run one specific task against a specific model:**
379
+ ```bash
380
+ uv run --project test-driver test-driver/run.py \
381
+ test-cases/001-daily-life-food-uber-eats claude-sonnet-4-6
382
+ ```
383
+ Once the container starts, the script prints a **noVNC URL** (e.g. `http://localhost:6080/vnc.html`) — open it in your browser to watch the agent operate in real-time. If port 6080 is already in use, an alternative port is chosen automatically.
384
+
385
+ Results land in `test-output/<model>/<timestamp>-001-.../` with the full five-layer recording.
386
+
387
+ **(c) Drive the browser yourself via noVNC** — produces a human reference run:
388
+ ```bash
389
+ uv run --project test-driver test-driver/run.py \
390
+ test-cases/001-daily-life-food-uber-eats --human
391
+ ```
392
+ Open the noVNC URL the script prints, complete the task by hand, then close the tab. Port is auto-assigned if 6080 is busy.
393
+
394
+ <br/>
395
+
396
+ # <img src="static/icons/chart-bar.svg" width="28" height="28"> ClawBench-Lite
397
+
398
+ **New here? Run this first.** [`test-cases/lite.json`](test-cases/lite.json) is a **20-task curated subset** of the full 153, selected for household-name sites, real-world relevance, difficulty, and category diversity. It matches the 20-tasks-per-source convention of [browser-use/benchmark](https://github.com/browser-use/benchmark) and gives you a credible signal at a fraction of the full-benchmark cost.
399
+
400
+ Tier distribution: **flagship 9 / core 8 / wildcard 3** — spanning daily life (OpenTable, DoorDash, Instacart, TaskRabbit), entertainment (Eventbrite, Goodreads, Fandango), creation (Asana, Mailchimp, Squarespace), travel (Airbnb), education (LeetCode), dev-tech (GitHub), academia (Overleaf), personal management (1Password), and more. All Lite tasks are judged by [`eval/agentic_eval.md`](eval/agentic_eval.md) regardless of `url_pattern` shape.
401
+
402
+ See [`test-cases/lite.schema.json`](test-cases/lite.schema.json) for the manifest shape and the `notes` field in `lite.json` for the 4-axis selection rubric + full swap history.
403
+
404
+ <br/>
405
+
406
+ # <img src="static/icons/video.svg" width="28" height="28"> Tutorial
407
+
408
+ <div align="center">
409
+
410
+ <!-- TODO: Replace with actual video links -->
411
+
412
+ [![Watch on YouTube](https://img.shields.io/badge/Watch_Tutorial-YouTube-FF0000?style=for-the-badge&logo=youtube&logoColor=white)](https://youtube.com)
413
+ &nbsp;&nbsp;
414
+ [![Watch on Bilibili](https://img.shields.io/badge/Watch_Tutorial-Bilibili-00A1D6?style=for-the-badge&logo=bilibili&logoColor=white)](https://bilibili.com)
415
+
416
+ </div>
417
+
418
+ <br/>
419
+
420
+ # <img src="static/icons/play.svg" width="28" height="28"> Demos
421
+
422
+ <!-- TODO: Replace with actual demo GIFs/recordings -->
423
+
424
+ <table>
425
+ <tr>
426
+ <td width="50%" align="center">
427
+
428
+ **Ordering food on Uber Eats**
429
+
430
+ https://github.com/user-attachments/assets/placeholder-uber-eats
431
+
432
+ </td>
433
+ <td width="50%" align="center">
434
+
435
+ **Submitting a job application**
436
+
437
+ https://github.com/user-attachments/assets/placeholder-greenhouse
438
+
439
+ </td>
440
+ </tr>
441
+ </table>
442
+
443
+ > Each ClawBench run produces a full MP4 session recording. See the [project page](https://claw-bench.com) for all 153 task recordings.
444
+
445
+ <br/>
446
+
447
+ # <img src="static/icons/circle-question.svg" width="28" height="28"> Example Walkthrough
448
+
449
+ Curious what one task actually looks like, start to finish? Here's task **001** end to end.
450
+
451
+ **The task** — from [`test-cases/001-daily-life-food-uber-eats/task.json`](test-cases/001-daily-life-food-uber-eats/task.json):
452
+
453
+ ```json
454
+ {
455
+ "instruction": "On Uber Eats, order delivery: one Pad Thai, deliver to home address, note \"no peanuts\"",
456
+ "time_limit": 30,
457
+ "eval_schema": {
458
+ "url_pattern": "__PLACEHOLDER_WILL_NOT_MATCH__",
459
+ "method": "POST"
460
+ }
461
+ }
462
+ ```
463
+
464
+ The agent gets this `instruction` verbatim, plus read-only access to `/my-info/alex_green_personal_info.json` (the dummy user's name, home address, phone, date of birth) and a disposable email account for any sign-in prompt. It has **30 minutes** to reach a `POST` request — any longer and the container is killed.
465
+
466
+ **What the agent does** (the happy path):
467
+
468
+ 1. Navigates to `ubereats.com`
469
+ 2. Reads the dummy user's home address from `/my-info/alex_green_personal_info.json` and enters it in the delivery-address box
470
+ 3. Searches for **"Pad Thai"** in the food search
471
+ 4. Picks a restaurant that has Pad Thai available for delivery to that address
472
+ 5. Opens the item detail page, finds the customization or special-instructions field, enters **"no peanuts"**
473
+ 6. Adds one to cart, opens the cart, and handles any sign-in prompt using the disposable email credentials
474
+ 7. Reaches checkout, taps **Place Order**
475
+
476
+ **What the interceptor catches** — that final *Place Order* tap fires a `POST` request. ClawBench's request interceptor sits in front of the browser and **captures the outbound request before it reaches Uber Eats's servers**, so the dummy user is never actually charged. At the exact moment of interception, all five recording layers (MP4 video, PNG screenshots, HTTP traffic, browser actions, agent messages) are frozen into `/data/`.
477
+
478
+ **How the judge decides PASS / FAIL** — task 001's `url_pattern` is the intentional sentinel `__PLACEHOLDER_WILL_NOT_MATCH__`, which means **no request path can mechanically match**. The verdict comes from the agentic judge in [`eval/agentic_eval.md`](eval/agentic_eval.md), which replays the five-layer recording against a human reference run and checks four things:
479
+
480
+ - Did the agent actually reach the final checkout step?
481
+ - Is the cart exactly **one** Pad Thai (not two, not a combo)?
482
+ - Is the delivery address the user's home address from `alex_green_personal_info.json`?
483
+ - Does the order carry the **"no peanuts"** note in the instructions field?
484
+
485
+ All four must hold for a **PASS**. Miss any one and it's a **FAIL** with evidence from the recording pinned to the failing criterion. This per-task rubric is what makes ClawBench judge-sensitive rather than URL-regex-sensitive — see [`eval/README.md`](eval/README.md) for the full rubric format and [`eval/agentic_eval.md`](eval/agentic_eval.md) for the judge prompt.
486
+
487
+ <br/>
488
+
489
+ # <img src="static/icons/chart-bar.svg" width="28" height="28"> Results
490
+
491
+ <div align="center">
492
+
493
+ **Success rate (%) of 6 frontier AI agents on ClawBench**
494
+
495
+ </div>
496
+
497
+ | Rank | Model | Overall | Daily | Finance | Work | Dev | Academic | Travel | Social | Pets |
498
+ |:----:|-------|:-------:|:-----:|:-------:|:----:|:---:|:--------:|:------:|:------:|:----:|
499
+ | 1 | **Claude Sonnet 4.6** | **33.3** | 44.2 | **50.0** | 19.0 | 11.1 | **50.0** | 23.1 | **38.9** | **18.2** |
500
+ | 2 | GLM-5 | 24.2 | **30.8** | 16.7 | **38.1** | 16.7 | 28.6 | 0.0 | 16.7 | **18.2** |
501
+ | 3 | Gemini 3 Flash | 19.0 | 15.4 | 33.3 | 23.8 | **22.2** | 28.6 | **30.8** | 11.1 | 0.0 |
502
+ | 4 | Claude Haiku 4.5 | 18.3 | 15.4 | 22.2 | 19.0 | **27.8** | 21.4 | 7.7 | 16.7 | **18.2** |
503
+ | 5 | GPT-5.4 | 6.5 | 9.6 | 0.0 | 0.0 | 11.1 | 7.1 | 7.7 | 0.0 | 9.1 |
504
+ | 6 | Gemini 3.1 Flash Lite | 3.3 | 1.9 | 0.0 | 0.0 | 5.6 | 14.3 | 0.0 | 0.0 | 9.1 |
505
+
506
+ <details>
507
+ <summary><b>Task Categories (15 categories, 153 tasks)</b></summary>
508
+
509
+ | Category | Tasks | Example Platforms |
510
+ |----------|:-----:|-------------------|
511
+ | Daily Life | 21 | Uber Eats, DoorDash, Instacart, Zillow, Craigslist |
512
+ | Entertainment & Hobbies | 15 | Ticketmaster, AMC Theatres, Topgolf, Crunchyroll |
513
+ | Creation & Initialization | 13 | Squarespace, Wix, Webflow, Ghost, Substack |
514
+ | Rating & Voting | 10 | Trustpilot, G2, Goodreads, RateMyProfessors |
515
+ | Travel | 9 | Booking.com, Expedia, Airbnb, TripAdvisor |
516
+ | Education & Learning | 9 | Coursera, Udemy, Khan Academy, Duolingo |
517
+ | Office & Secretary | 9 | Google Calendar, Slack, Notion, Trello |
518
+ | Beauty & Personal Care | 9 | Sephora, Ulta, Glossier |
519
+ | Job Search & HR | 8 | LinkedIn, Greenhouse, Lever, Workday |
520
+ | Pet & Animal Care | 8 | Chewy, Petco, Rover |
521
+ | Personal Management | 6 | Mint, YNAB, Todoist |
522
+ | Shopping & Commerce | 6 | Amazon, eBay, Etsy, Target |
523
+ | Nonprofit & Charity | 6 | GoFundMe, DonorsChoose |
524
+ | Academia & Research | 5 | Google Scholar, Semantic Scholar, OpenReview |
525
+ | Finance & Investment | 4 | Robinhood, Fidelity, Coinbase |
526
+ | Others | 15 | Automation, Dev & Tech, Government, Home Services, Automotive |
527
+
528
+ </details>
529
+
530
+ <br/>
531
+
532
+ ## Architecture
533
+
534
+ <details>
535
+ <summary>Container internals</summary>
536
+
537
+ ```
538
+ ┌─────────────────────────────────────────────────┐
539
+ │ Container (Docker / Podman) │
540
+ │ │
541
+ │ ┌───────────┐ DOM events ┌──────────────┐ │
542
+ │ │ content.js├──────────────►│ background.js│ │
543
+ │ │ (per tab) │ │ (service │ │
544
+ │ └───────────┘ │ worker) │ │
545
+ │ └──┬──────┬────┘ │
546
+ │ │ │ │
547
+ │ actions │ │ screenshots
548
+ │ │ │ │
549
+ │ ┌──────────┐ ┌──────▼──────▼────┐ │
550
+ │ │ Xvfb │◄──ffmpeg──►│ FastAPI Server │ │
551
+ │ │ :99 │ x11grab │ :7878 │ │
552
+ │ └──────────┘ └──────────────────┘ │
553
+ │ │ │
554
+ │ ┌──────────┐ ┌───────▼─────────┐ │
555
+ │ │ Chromium │ │ /data │ │
556
+ │ │ :9222 CDP│ │ actions.jsonl │ │
557
+ │ └──────────┘ │ requests.jsonl │ │
558
+ │ │ screenshots/ │ │
559
+ │ │ recording.mp4 │ │
560
+ │ └─────────────────┘ │
561
+ └─────────────────────────────────────────────────┘
562
+ ```
563
+
564
+ </details>
565
+
566
+ <br/>
567
+
568
+ # <img src="static/icons/terminal.svg" width="28" height="28"> CLI
569
+
570
+ ```bash
571
+ # Interactive TUI (recommended):
572
+ ./run.sh
573
+
574
+ # Single run:
575
+ uv run --project test-driver test-driver/run.py test-cases/001-daily-life-food-uber-eats claude-sonnet-4-6
576
+
577
+ # Human mode (you control the browser via noVNC):
578
+ uv run --project test-driver test-driver/run.py test-cases/001-daily-life-food-uber-eats --human
579
+
580
+ # Batch (all models x cases 1-50, 3 concurrent):
581
+ uv run --project test-driver test-driver/batch.py --all-models --case-range 1-50 --max-concurrent 3
582
+ ```
583
+
584
+ See [test-driver/README.md](test-driver/README.md) for full CLI documentation, batch runner flags, test case format, and output structure.
585
+
586
+ <br/>
587
+
588
+ # <img src="static/icons/chart-bar.svg" width="28" height="28"> Evaluation
589
+
590
+ Evaluation is a **post-session** step -- first run agents to collect trajectories, then evaluate them against human reference runs.
591
+
592
+ ```
593
+ 1. Run agents (test-driver) 2. Evaluate (eval/)
594
+ ───────────────────────── ────────────────────────────────
595
+ ./run.sh or batch.py ──► Claude Code subagents compare
596
+ produces test-output/ agent vs human trajectories
597
+ with 5-layer recordings under eval/agentic_eval.md rubric
598
+ ```
599
+
600
+ The evaluator compares each agent trajectory against a human reference trajectory across all five recording layers (video, screenshots, HTTP traffic, browser actions, agent messages), then outputs PASS/FAIL with evidence-backed justification.
601
+
602
+ See [eval/README.md](eval/README.md) for the full evaluation guide and Claude Code prompt template.
603
+
604
+ <br/>
605
+
606
+ # <img src="static/icons/circle-question.svg" width="28" height="28"> FAQ
607
+
608
+ <details>
609
+ <summary><b>What data does each run produce?</b></summary>
610
+
611
+ Each session records five layers of synchronized data under `/data/`:
612
+
613
+ | Layer | File | Description |
614
+ |-------|------|-------------|
615
+ | Session replay | `recording.mp4` | Full session video (H.264, 15fps) |
616
+ | Action screenshots | `screenshots/*.png` | Timestamped PNG per browser action |
617
+ | Browser actions | `actions.jsonl` | Every DOM event (click, keydown, input, pageLoad, scroll, etc.) |
618
+ | HTTP traffic | `requests.jsonl` | Every HTTP request with headers, body, and query params |
619
+ | Agent messages | `agent-messages.jsonl` | Full agent conversation transcript (thinking, text, tool calls) |
620
+
621
+ The interceptor result is saved to `interception.json`.
622
+
623
+ </details>
624
+
625
+ <details>
626
+ <summary><b>How does the request interceptor work?</b></summary>
627
+
628
+ The interceptor blocks critical, irreversible HTTP requests (checkout, form submit, email send) to prevent real-world side effects. It connects to Chrome via CDP's `Fetch` domain and matches requests against the eval schema (`url_pattern` regex + `method` + optional `body`/`params`). When triggered, it saves the blocked request to `interception.json`, kills the agent, and stops recording.
629
+
630
+ The interceptor does **not** validate task completion -- evaluation is handled separately by evaluators post-session.
631
+
632
+ For tasks behind payment walls (agent has no valid credit card), the eval schema uses a placeholder pattern that never matches, so the session runs until timeout.
633
+
634
+ </details>
635
+
636
+ <details>
637
+ <summary><b>What is the synthetic user profile?</b></summary>
638
+
639
+ Each container gets a `/my-info/` directory with a dummy user identity (Alex Green): personal info JSON, email credentials, and a resume PDF. The email is a fresh disposable PurelyMail address generated per run. The agent reads these files when it needs to fill forms, register accounts, etc.
640
+
641
+ Source templates: `shared/alex_green_personal_info.json` (profile) and `test-driver/resume_template.json` (resume).
642
+
643
+ </details>
644
+
645
+ <details>
646
+ <summary><b>Can I use Podman instead of Docker?</b></summary>
647
+
648
+ Yes. Set `export CONTAINER_ENGINE=podman`. The framework auto-detects whichever is available. Podman works without root privileges.
649
+
650
+ </details>
651
+
652
+ <details>
653
+ <summary><b>What tools can the agent use?</b></summary>
654
+
655
+ The OpenClaw agent can only use the browser tool and a restricted set of read-only shell commands (`ls`, `cat`, `find`, `grep`, `head`, `tail`, `jq`, `wc`, etc.). Commands that could bypass the browser (`curl`, `python`, `node`, `wget`) are blocked. The agent instruction also explicitly requires browser-only task completion.
656
+
657
+ </details>
658
+
659
+ <details>
660
+ <summary><b>How do I add a new test case?</b></summary>
661
+
662
+ See [CONTRIBUTING.md](CONTRIBUTING.md). In short: create a directory under `test-cases/` with a `task.json` conforming to `test-cases/task.schema.json`, define the eval schema, test with human mode, and submit a PR.
663
+
664
+ </details>
665
+
666
+ <br/>
667
+
668
+ ## Contributing
669
+
670
+ We welcome contributions -- especially new test cases. See [CONTRIBUTING.md](CONTRIBUTING.md).
671
+
672
+ ## Citation
673
+
674
+ If you use ClawBench in your research, please cite:
675
+
676
+ ```bibtex
677
+ @misc{zhang2026clawbench,
678
+ title = {ClawBench: Can AI Agents Complete Everyday Online Tasks?},
679
+ author = {Yuxuan Zhang and Yubo Wang and Yipeng Zhu and Penghui Du and Junwen Miao and Xuan Lu and Wendong Xu and Yunzhuo Hao and Songcheng Cai and Xiaochen Wang and Huaisong Zhang and Xian Wu and Yi Lu and Minyi Lei and Kai Zou and Huifeng Yin and Ping Nie and Liang Chen and Dongfu Jiang and Wenhu Chen and Kelsey R. Allen},
680
+ year = {2026},
681
+ eprint = {2604.08523},
682
+ archivePrefix = {arXiv},
683
+ primaryClass = {cs.AI},
684
+ url = {https://arxiv.org/abs/2604.08523}
685
+ }
686
+ ```
687
+
688
+ ## Core Contributors
689
+
690
+ <table>
691
+ <tr>
692
+ <td align="center">
693
+ <a href="https://github.com/reacher-z">
694
+ <img src="https://github.com/reacher-z.png" width="80" height="80" style="border-radius:50%"><br/>
695
+ <sub><b>Yuxuan Zhang</b></sub>
696
+ </a>
697
+ </td>
698
+ <td align="center">
699
+ <a href="https://github.com/Wyyyb">
700
+ <img src="https://github.com/Wyyyb.png" width="80" height="80" style="border-radius:50%"><br/>
701
+ <sub><b>Yubo Wang</b></sub>
702
+ </a>
703
+ </td>
704
+ <td align="center">
705
+ <a href="https://github.com/Perry2004">
706
+ <img src="https://github.com/Perry2004.png" width="80" height="80" style="border-radius:50%"><br/>
707
+ <sub><b>Perry Zhu</b></sub>
708
+ </a>
709
+ </td>
710
+ <td align="center">
711
+ <a href="https://github.com/eternaldolphin">
712
+ <img src="https://github.com/eternaldolphin.png" width="80" height="80" style="border-radius:50%"><br/>
713
+ <sub><b>Penghui Du</b></sub>
714
+ </a>
715
+ </td>
716
+ <td align="center">
717
+ <a href="https://github.com/MEKSAAA">
718
+ <img src="https://github.com/MEKSAAA.png" width="80" height="80" style="border-radius:50%"><br/>
719
+ <sub><b>Junwen Miao</b></sub>
720
+ </a>
721
+ </td>
722
+ </tr>
723
+ </table>
724
+
725
+ ## Advisors
726
+
727
+ <table>
728
+ <tr>
729
+ <td align="center">
730
+ <a href="https://github.com/k-r-allen">
731
+ <img src="https://github.com/k-r-allen.png" width="80" height="80" style="border-radius:50%"><br/>
732
+ <sub><b>Kelsey R. Allen</b></sub>
733
+ </a>
734
+ </td>
735
+ <td align="center">
736
+ <a href="https://github.com/wenhuchen">
737
+ <img src="https://github.com/wenhuchen.png" width="80" height="80" style="border-radius:50%"><br/>
738
+ <sub><b>Wenhu Chen</b></sub>
739
+ </a>
740
+ </td>
741
+ <td align="center">
742
+ <a href="https://github.com/jdf-prog">
743
+ <img src="https://github.com/jdf-prog.png" width="80" height="80" style="border-radius:50%"><br/>
744
+ <sub><b>Dongfu Jiang</b></sub>
745
+ </a>
746
+ </td>
747
+ <td align="center">
748
+ <a href="https://github.com/chenllliang">
749
+ <img src="https://github.com/chenllliang.png" width="80" height="80" style="border-radius:50%"><br/>
750
+ <sub><b>Liang Chen</b></sub>
751
+ </a>
752
+ </td>
753
+ </tr>
754
+ </table>
755
+
756
+ ## Star History
757
+
758
+ <a href="https://star-history.com/#reacher-z/ClawBench&Date">
759
+ <picture>
760
+ <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=reacher-z/ClawBench&type=Date&theme=dark" />
761
+ <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=reacher-z/ClawBench&type=Date" />
762
+ <img alt="ClawBench Star History" src="https://api.star-history.com/svg?repos=reacher-z/ClawBench&type=Date" width="600" />
763
+ </picture>
764
+ </a>
765
+
766
+ ## License & Acknowledgments
767
+
768
+ Apache 2.0 -- see [LICENSE](LICENSE).
769
+
770
+ Built with [OpenClaw](https://github.com/openclaw/openclaw), [noVNC](https://github.com/novnc/noVNC) (MPL 2.0), and [websockify](https://github.com/novnc/websockify) (LGPL 3.0).