spa stringclasses 12
values | id stringlengths 8 62 | name stringlengths 8 62 | description stringlengths 14 411 | tier stringclasses 2
values | environment stringclasses 12
values | initial_state stringlengths 103 130k | instructions stringlengths 120 1.37k | reward_function stringlengths 0 72 | valid_target_states stringclasses 37
values | max_steps int64 2 40 | timeout_seconds int64 30 180 | metadata stringlengths 41 235 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
2048 | create-two-high-tiles | Create Two 128 Tiles | Get at least two tiles with value 128 or higher on the board | free | {"type": "url","path": "https://d3lutilach12pf.cloudfront.net/index.html"} | {"board": [64, 64, 0, 0, 32, 32, 0, 0, 16, 16, 0, 0, 16, 4, 0, 0], "gameOver": false, "gameInitialized": true} | {"user_prompt": "Create at least two tiles with value 128 or higher on the board. You'll need to combine smaller tiles strategically to reach this goal.", "success_criteria": "The board must contain at least two tiles with value 128 or higher."} | _validate_create_two_high_tiles | 10 | 120 | {"category": "games", "difficulty": "medium", "action": "two_high_tiles"} | |
2048 | get-128-tile | Get 128 Tile | Create a 128 tile in one move | free | {"type": "url","path": "https://d3lutilach12pf.cloudfront.net/index.html"} | {"board": [0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0], "gameOver": false, "gameInitialized": true} | {"user_prompt": "Create a 128 tile by combining the two 64-tiles in the middle column. Make the move that will merge them together.", "success_criteria": "The board must contain a 128-tile after the move."} | _validate_get_128_tile | 2 | 60 | {"category": "games", "difficulty": "easy", "action": "create_128"} | |
2048 | get-2048 | Get 2048 in one move | Make the next move to score 2048. | free | {"type": "url","path": "https://d3lutilach12pf.cloudfront.net/index.html"} | {"board": [0, 0, 0, 0, 0, 1024, 0, 1024, 0, 0, 0, 0, 0, 0, 0, 0], "gameOver": false, "gameInitialized": true} | {"user_prompt": "Play 2048 and make the next move that would cause a 2048 tile to appear.", "success_criteria": "The game board must contain a 2048 tile."} | _validate_get_2048 | 2 | 120 | {"category": "games", "difficulty": "easy"} | |
2048 | get-256-tile | Get 256 Tile | Create a 256 tile in three moves | free | {"type": "url","path": "https://d3lutilach12pf.cloudfront.net/index.html"} | {"board": [0, 0, 32, 32, 0, 0, 32, 32, 0, 32, 0, 32, 0, 0, 32, 32], "gameOver": false, "gameInitialized": true} | {"user_prompt": "Create a 256 tile by combining 32-tiles to make 64-tiles, then combining those 64-tiles to make 128-tiles, and finally combining those 128-tiles to make a 256-tile. This requires three strategic moves.", "success_criteria": "The board must contain a 256-tile after completing the three moves."} | _validate_get_256_tile | 10 | 60 | {"category": "games", "difficulty": "medium", "action": "create_256"} | |
2048 | get-32-tile | Get 32 Tile | Combine two 16-tiles to create a 32-tile | free | {"type": "url","path": "https://d3lutilach12pf.cloudfront.net/index.html"} | {"board": [0, 0, 0, 0, 0, 16, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0], "gameOver": false, "gameInitialized": true} | {"user_prompt": "Combine the two 16-tiles in the middle row to create a 32-tile. Move the tiles so they merge together.", "success_criteria": "The board must contain a 32-tile after the move."} | _validate_get_32_tile | 3 | 30 | {"category": "games", "difficulty": "easy", "action": "create_32"} | |
2048 | get-512-tile | Get 512 Tile | Create a 512 tile in three moves | free | {"type": "url","path": "https://d3lutilach12pf.cloudfront.net/index.html"} | {"board": [64, 64, 0, 0, 64, 0, 64, 0, 64, 64, 0, 0, 64, 0, 0, 64], "gameOver": false, "gameInitialized": true} | {"user_prompt": "Create a 512 tile by combining 64-tiles to make 128-tiles, then combining those 128-tiles to make 256-tiles, and finally combining those 256-tiles to make a 512-tile. This requires three strategic moves.", "success_criteria": "The board must contain a 512-tile after completing the three moves."} | _validate_get_512_tile | 10 | 60 | {"category": "games", "difficulty": "medium", "action": "create_512"} | |
2048 | make-first-move | Make First Move | Make any valid move from the initial board state | free | {"type": "url","path": "https://d3lutilach12pf.cloudfront.net/index.html"} | {"board": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "gameOver": false, "gameInitialized": true} | {"user_prompt": "Make any valid move in the 2048 game. Use the arrow keys to move tiles in any direction (up, down, left, or right).", "success_criteria": "The board must change from its initial state after making a move."} | _validate_2048_make_first_move | 5 | 30 | {"category": "games", "difficulty": "easy", "action": "first_move"} | |
2048 | move-tiles-right | Move Tiles Right | Move all tiles to the right side of the board | free | {"type": "url","path": "https://d3lutilach12pf.cloudfront.net/index.html"} | {"board": [2, 0, 0, 0, 4, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], "gameOver": false, "gameInitialized": true} | {"user_prompt": "Move all tiles to the right side of the board using the right arrow key. All tiles should be positioned in the rightmost column.", "success_criteria": "All tiles must be in the rightmost column (positions 3, 7, 11, 15)."} | _validate_move_tiles_right | 3 | 30 | {"category": "games", "difficulty": "easy", "action": "move_right"} | |
2048 | reach-540-sum | Reach 540 Sum | Achieve a board with tiles summing to 540 or more | free | {"type": "url","path": "https://d3lutilach12pf.cloudfront.net/index.html"} | {"board": [256, 128, 64, 32, 16, 8, 4, 2, 2, 2, 0, 0, 0, 0, 0, 0], "gameOver": false, "gameInitialized": true} | {"user_prompt": "Achieve a board where the sum of all tile values is 540 or more. Combine tiles strategically to increase the total value.", "success_criteria": "The sum of all tile values on the board must be 540 or greater."} | _validate_reach_540_sum | 20 | 120 | {"category": "games", "difficulty": "hard", "action": "target_540_sum"} | |
2048 | strategic-32 | Strategic 32 | Create a 32 tile from a sparse board with strategic moves | free | {"type": "url","path": "https://d3lutilach12pf.cloudfront.net/index.html"} | {"board": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "gameOver": false, "gameInitialized": true} | {"user_prompt": "Starting from an empty board, strategically create a 32 tile. You'll need to build up from smaller tiles through careful planning and multiple moves. This requires combining tiles multiple times: 2→4→8→16→32.", "success_criteria": "The board must contain a 32-tile after completing the strategic moves."... | _validate_strategic_32 | 40 | 180 | {"category": "games", "difficulty": "hard", "action": "strategic_32"} | |
action-tester | must-click | Click Action Test | Test the agent's ability to perform a single click action on a button | free | {"type": "url","path": "https://d1oxmyj811b14d.cloudfront.net/index.html"} | {"hasClicked": false, "hasDoubleClicked": false, "hasDragged": false, "hasHotkeyed": false, "hasMiddleClicked": false, "hasRightClicked": false, "hasScrolled": false, "hasTyped": false} | {"user_prompt": "Click the blue 'Click Me!' button to complete this task. You need to perform a single left-click on the button.", "success_criteria": "The hasClicked state must be set to True after clicking the button"} | [{"hasClicked": true}] | 5 | 30 | {"difficulty": "easy", "action_type": "click", "target_element": "blue button with text 'Click Me!'"} | |
action-tester | must-complete-all-actions | Complete All Actions Test | Test the agent's ability to perform all computer use actions in sequence - click, double-click, right-click, middle-click, drag, type, hotkey, and scroll | free | {"type": "url","path": "https://d1oxmyj811b14d.cloudfront.net/index.html"} | {"hasClicked": false, "hasDoubleClicked": false, "hasDragged": false, "hasHotkeyed": false, "hasMiddleClicked": false, "hasRightClicked": false, "hasScrolled": false, "hasTyped": false} | {"user_prompt": "Complete all 8 computer use actions to finish this comprehensive test: 1) Click the blue 'Click Me!' button, 2) Double-click the purple 'Double Click Me!' button, 3) Right-click the orange area, 4) Middle-click the teal area, 5) Drag the red box to a new position, 6) Type at least 5 characters in the i... | [{"hasClicked": true, "hasDoubleClicked": true, "hasDragged": true, "hasHotkeyed": true, "hasMiddleClicked": true, "hasRightClicked": true, "hasScrolled": true, "hasTyped": true}] | 15 | 120 | {"difficulty": "hard", "action_type": "comprehensive", "target_element": "all interactive elements in the action tester", "actions_required": ["click", "double_click", "right_click", "middle_click", "drag", "type", "hotkey", "scroll"]} | |
action-tester | must-double-click | Double Click Action Test | Test the agent's ability to perform a double-click action on a button | free | {"type": "url","path": "https://d1oxmyj811b14d.cloudfront.net/index.html"} | {"hasClicked": false, "hasDoubleClicked": false, "hasDragged": false, "hasHotkeyed": false, "hasMiddleClicked": false, "hasRightClicked": false, "hasScrolled": false, "hasTyped": false} | {"user_prompt": "Double-click the purple 'Double Click Me!' button to complete this task. You need to perform two quick clicks in succession on the button.", "success_criteria": "The hasDoubleClicked state must be set to True after double-clicking the button"} | [{"hasDoubleClicked": true}] | 5 | 30 | {"difficulty": "easy", "action_type": "double_click", "target_element": "purple button with text 'Double Click Me!'"} | |
action-tester | must-drag | Drag Action Test | Test the agent's ability to perform a drag and drop action | free | {"type": "url","path": "https://d1oxmyj811b14d.cloudfront.net/index.html"} | {"hasClicked": false, "hasDoubleClicked": false, "hasDragged": false, "hasHotkeyed": false, "hasMiddleClicked": false, "hasRightClicked": false, "hasScrolled": false, "hasTyped": false} | {"user_prompt": "Drag the red 'Drag Me' box to a new position to complete this task. You need to click and hold the red box, then move it to a different location (at least 10 pixels away) before releasing.", "success_criteria": "The hasDragged state must be set to True after successfully dragging the red box to a new p... | [{"hasDragged": true}] | 10 | 45 | {"difficulty": "medium", "action_type": "drag", "target_element": "red draggable box with text 'Drag Me'"} | |
action-tester | must-hotkey | Hotkey Action Test | Test the agent's ability to use keyboard shortcuts (hotkeys) | free | {"type": "url","path": "https://d1oxmyj811b14d.cloudfront.net/index.html"} | {"hasClicked": false, "hasDoubleClicked": false, "hasDragged": false, "hasHotkeyed": false, "hasMiddleClicked": false, "hasRightClicked": false, "hasScrolled": false, "hasTyped": false} | {"user_prompt": "Press the keyboard shortcut Ctrl+S (or Cmd+S on Mac) to complete this task. You need to hold down the Ctrl key (or Cmd key on Mac) and press the S key simultaneously.", "success_criteria": "The hasHotkeyed state must be set to True after pressing the Ctrl+S (or Cmd+S) key combination"} | [{"hasHotkeyed": true}] | 5 | 30 | {"difficulty": "medium", "action_type": "hotkey", "target_element": "keyboard shortcut Ctrl+S or Cmd+S"} | |
action-tester | must-middle-click | Middle Click Action Test | Test the agent's ability to perform a middle-click (scroll wheel click) action | free | {"type": "url","path": "https://d1oxmyj811b14d.cloudfront.net/index.html"} | {"hasClicked": false, "hasDoubleClicked": false, "hasDragged": false, "hasHotkeyed": false, "hasMiddleClicked": false, "hasRightClicked": false, "hasScrolled": false, "hasTyped": false} | {"user_prompt": "Middle-click (scroll wheel click) on the teal area labeled 'Middle Click Here' to complete this task. You need to press down the scroll wheel on the designated area.", "success_criteria": "The hasMiddleClicked state must be set to True after middle-clicking the teal area"} | [{"hasMiddleClicked": true}] | 5 | 30 | {"difficulty": "medium", "action_type": "middle_click", "target_element": "teal area with text 'Middle Click Here'"} | |
action-tester | must-perform-three-medium-actions | Three Medium Actions Test | Test the agent's ability to perform three medium-difficulty actions in sequence: drag, hotkey, and middle-click | free | {"type": "url","path": "https://d1oxmyj811b14d.cloudfront.net/index.html"} | {"hasClicked": false, "hasDoubleClicked": false, "hasDragged": false, "hasHotkeyed": false, "hasMiddleClicked": false, "hasRightClicked": false, "hasScrolled": false, "hasTyped": false} | {"user_prompt": "Complete three medium-difficulty computer use actions to finish this test: 1) Drag the red 'Drag Me' box to a new position (at least 10 pixels away), 2) Press the keyboard shortcut Ctrl+S (or Cmd+S on Mac), and 3) Middle-click (scroll wheel click) on the teal area labeled 'Middle Click Here'. All three... | [{"hasDragged": true, "hasHotkeyed": true, "hasMiddleClicked": true}] | 15 | 90 | {"difficulty": "hard", "action_type": "combined_medium_actions", "target_element": "multiple interactive elements requiring drag, hotkey, and middle-click", "actions_required": ["drag", "hotkey", "middle_click"]} | |
action-tester | must-right-click | Right Click Action Test | Test the agent's ability to perform a right-click (context menu) action | free | {"type": "url","path": "https://d1oxmyj811b14d.cloudfront.net/index.html"} | {"hasClicked": false, "hasDoubleClicked": false, "hasDragged": false, "hasHotkeyed": false, "hasMiddleClicked": false, "hasRightClicked": false, "hasScrolled": false, "hasTyped": false} | {"user_prompt": "Right-click on the orange area labeled 'Right Click Here' to complete this task. You need to perform a right-click (context menu click) on the designated area.", "success_criteria": "The hasRightClicked state must be set to True after right-clicking the orange area"} | [{"hasRightClicked": true}] | 5 | 30 | {"difficulty": "easy", "action_type": "right_click", "target_element": "orange area with text 'Right Click Here'"} | |
action-tester | must-scroll | Scroll Action Test | Test the agent's ability to scroll the page | free | {"type": "url","path": "https://d1oxmyj811b14d.cloudfront.net/index.html"} | {"hasClicked": false, "hasDoubleClicked": false, "hasDragged": false, "hasHotkeyed": false, "hasMiddleClicked": false, "hasRightClicked": false, "hasScrolled": false, "hasTyped": false} | {"user_prompt": "Scroll down on the page by at least 100 pixels to complete this task. You can use the scroll wheel, arrow keys, or drag the scrollbar to scroll down the page.", "success_criteria": "The hasScrolled state must be set to True after scrolling down the page by 100 pixels or more"} | [{"hasScrolled": true}] | 5 | 30 | {"difficulty": "easy", "action_type": "scroll", "target_element": "page scroll area"} | |
action-tester | must-type | Type Action Test | Test the agent's ability to type text into an input field | free | {"type": "url","path": "https://d1oxmyj811b14d.cloudfront.net/index.html"} | {"hasClicked": false, "hasDoubleClicked": false, "hasDragged": false, "hasHotkeyed": false, "hasMiddleClicked": false, "hasRightClicked": false, "hasScrolled": false, "hasTyped": false} | {"user_prompt": "Type at least 5 characters in the text input field to complete this task. Click on the input field with placeholder 'Type here...' and enter at least 5 characters of text.", "success_criteria": "The hasTyped state must be set to True after typing at least 5 characters in the input field"} | [{"hasTyped": true}] | 10 | 30 | {"difficulty": "easy", "action_type": "type", "target_element": "text input field with placeholder 'Type here...'"} | |
amazon | add-an-item-to-the-cart | Add an item to the cart | From the product page with product id "B08N5WRWNW", click on the Add To Cart button. This should add one of that product to the cart. | pro | {"type": "url","path": "https://dtb201xr8xdfo.cloudfront.net/index.html"} | {"currentPage": "product","searchQuery": "","products": [{"id": "B08N5WRWNW","name": "Sony WH-1000XM5 Wireless Industry Leading Noise Canceling Headphones","brand": "Sony","rating": 3.6,"numRatings": 12847,"price": 449.99,"originalPrice": 549.99,"mainImage": "/images/main-images/sony.png","images": ["/images/main-image... | {"user_prompt": "From the product page with id 'B08N5WRWNW', click on the Add to cart button.","success_criteria": "The currentUser.cart length should be 1 and the product in the cart should have the id of 'B08N5WRWNW' and a quantity of 1."} | _validate_add_an_item_to_the_cart | 20 | 120 | {"category": "productivity","difficulty": "easy"} |
End of preview. Expand in Data Studio
- Downloads last month
- 388
