spa stringclasses 6
values | id stringlengths 8 33 | name stringlengths 11 51 | description stringlengths 29 164 | tier stringclasses 1
value | environment stringclasses 6
values | initial_state stringlengths 103 6.21k | instructions stringlengths 155 1.37k | reward_function stringlengths 0 42 | valid_target_states stringlengths 0 938 | max_steps int64 2 40 | timeout_seconds int64 30 180 | metadata stringlengths 43 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://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/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://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/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://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/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://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/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://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/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://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/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://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/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://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/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://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/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://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/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://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/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://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/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://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/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://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/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://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/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://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/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://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/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://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/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://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/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://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/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...'"} | |
linear | add-label-to-issue | Add Label to Issue | Add the Bug label to issue VSS-104 | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linear/index.html"} | {"issues": [{"id": "4", "identifier": "VSS-104", "title": "Build 3D station rotation visualizer component", "status": "queued", "assigneeId": "1", "labels": [], "projectId": "proj1", "priority": "none"}], "users": [{"id": "1", "name": "Riley", "avatar": "R", "email": "riley@station.space"}, {"id": "2", "name": "Chen", ... | {"user_prompt": "Add the Bug label to issue VSS-104 by following these steps: 1) Click on issue VSS-104 on the kanban board to open it. 2) Find the Labels section in the right sidebar of the issue details page. 3) Click the 'Add label' button to open the labels dropdown. 4) Click on the 'Bug' label in the dropdown to a... | [{"issues": [{"id": "4", "identifier": "VSS-104", "title": "Build 3D station rotation visualizer component", "status": "queued", "assigneeId": "1", "labels": [{"id": "label1", "name": "Bug", "color": "#EF4444"}], "projectId": "proj1", "priority": "none"}]}] | 7 | 60 | {"category": "productivity", "difficulty": "medium"} | |
linear | change-issue-priority | Change Issue Priority | Change the priority of issue VSS-101 from none to high | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linear/index.html"} | {"issues": [{"id": "1", "identifier": "VSS-101", "title": "Design oxygen level monitoring dashboard", "status": "queued", "assigneeId": "1", "labels": [], "projectId": "proj1", "priority": "none"}], "users": [{"id": "1", "name": "Riley", "avatar": "R", "email": "riley@station.space"}, {"id": "2", "name": "Chen", "avata... | {"user_prompt": "Change the priority of issue VSS-101 by following these steps: 1) Click on issue VSS-101 on the kanban board to open it. 2) Locate the Priority section in the right sidebar. 3) Click on the priority dropdown (currently showing 'Set priority'). 4) Select 'High' from the dropdown menu.", "success_criteri... | [{"issues": [{"id": "1", "identifier": "VSS-101", "title": "Design oxygen level monitoring dashboard", "status": "queued", "assigneeId": "1", "labels": [], "projectId": "proj1", "priority": "high"}]}] | 5 | 60 | {"category": "productivity", "difficulty": "easy"} | |
linear | change-issue-status | Change Issue Status | Change the status of issue VSS-102 from queued to in_progress | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linear/index.html"} | {"issues": [{"id": "2", "identifier": "VSS-102", "title": "Add solar panel efficiency widget to control panel", "status": "queued", "assigneeId": "1", "labels": [], "projectId": "proj1", "priority": "none"}], "users": [{"id": "1", "name": "Riley", "avatar": "R", "email": "riley@station.space"}, {"id": "2", "name": "Che... | {"user_prompt": "Change the status of issue VSS-102 by following these steps: 1) Click on issue VSS-102 on the kanban board to open it. 2) Locate the Status section in the right sidebar. 3) Click on the status dropdown (currently showing 'Queued'). 4) Select 'In Progress' from the dropdown menu.", "success_criteria": "... | [{"issues": [{"id": "2", "identifier": "VSS-102", "title": "Add solar panel efficiency widget to control panel", "status": "in_progress", "assigneeId": "1", "labels": [], "projectId": "proj1", "priority": "none"}]}] | 5 | 60 | {"category": "productivity", "difficulty": "easy"} | |
linear | complete-issue-workflow | Complete Issue Workflow | Complete an end-to-end workflow: create issue, set priority, assign, add label, move to in_progress, and add comment | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linear/index.html"} | {"issues": [], "users": [{"id": "1", "name": "Riley", "avatar": "R", "email": "riley@station.space"}, {"id": "2", "name": "Chen", "avatar": "C", "email": "chen@station.space"}], "labels": [{"id": "label1", "name": "Bug", "color": "#EF4444"}, {"id": "label2", "name": "Operations", "color": "#8B5CF6"}, {"id": "label3", "... | {"user_prompt": "Complete an end-to-end workflow by following these detailed steps: 1) Click the 'Create issue' button (edit/pencil icon) in the top right of the left sidebar to open the new issue modal. 2) Click in the title field and type 'Fix critical database connection bug'. 3) Click in the description field (belo... | _validate_complete_issue_workflow | 25 | 180 | {"category": "productivity", "difficulty": "hard"} | |
linear | create-new-issue | Create New Issue | Create a new issue with title, description, assignee, and priority | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linear/index.html"} | {"issues": [], "users": [{"id": "1", "name": "Riley", "avatar": "R", "email": "riley@station.space"}, {"id": "2", "name": "Chen", "avatar": "C", "email": "chen@station.space"}], "labels": [{"id": "label1", "name": "Bug", "color": "#EF4444"}, {"id": "label2", "name": "Operations", "color": "#8B5CF6"}, {"id": "label3", "... | {"user_prompt": "Create a new issue by following these steps: 1) Click the 'Create issue' button (edit/pencil icon) in the top right of the left sidebar to open the new issue modal. 2) Click in the title field and type 'Implement user authentication system'. 3) Click in the description field (below the title field) and... | _validate_create_new_issue | 12 | 90 | {"category": "productivity", "difficulty": "medium"} | |
linear | drag-and-reassign-issue | Drag and Reassign Issue | Drag issue VSS-106 from Riley's Queued to Chen's In Progress | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linear/index.html"} | {"issues": [{"id": "6", "identifier": "VSS-106", "title": "Build real-time life support system monitoring API", "status": "queued", "assigneeId": "1", "labels": [], "projectId": "proj1", "priority": "medium"}], "users": [{"id": "1", "name": "Riley", "avatar": "R", "email": "riley@station.space"}, {"id": "2", "name": "C... | {"user_prompt": "Drag issue VSS-106 to change both its status and assignee by following these steps: 1) Locate issue VSS-106 in Riley's row in the Queued column on the kanban board. 2) Click and hold on the issue card. 3) Drag the issue to Chen's row in the In Progress column. 4) Release to drop the issue (this will ch... | _validate_drag_and_reassign_issue | 8 | 90 | {"category": "productivity", "difficulty": "medium"} | |
linear | drag-issue-different-column | Drag issue to different column | Drag issue VSS-101 from Queued to In Progress column for user Riley | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linear/index.html"} | {"issues": [{"id": "1", "identifier": "VSS-101", "title": "Design oxygen level monitoring dashboard", "status": "queued", "assigneeId": "1", "labels": [], "projectId": "proj1", "priority": "none"}, {"id": "2", "identifier": "VSS-102", "title": "Add solar panel efficiency widget to control panel", "status": "queued", "a... | {"user_prompt": "Drag issue VSS-101 to a different column by following these steps: 1) Locate issue VSS-101 in Riley's row in the Queued column on the kanban board. 2) Click and hold on the issue card. 3) Drag the issue to the In Progress column in Riley's row. 4) Release to drop the issue in its new location.", "succe... | _validate_drag_to_different_column | 10 | 120 | {"category": "productivity", "difficulty": "medium"} | |
linear | drag-two-issues-same-user | Drag two issues for same user | Drag VSS-101 to In Progress and VSS-106 to Queued, both for user Riley | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linear/index.html"} | {"issues": [{"id": "1", "identifier": "VSS-101", "title": "Design oxygen level monitoring dashboard", "status": "queued", "assigneeId": "1", "labels": [], "projectId": "proj1", "priority": "none"}, {"id": "6", "identifier": "VSS-106", "title": "Build real-time life support system monitoring API", "status": "in_progress... | {"user_prompt": "Perform two drag operations in Riley's board row by following these detailed steps: 1) First drag: Locate issue VSS-101 in Riley's row in the Queued column, click and hold on the issue card, drag it to the In Progress column in Riley's row, and release to drop. 2) Second drag: Locate issue VSS-106 in R... | _validate_drag_two_issues_same_user | 15 | 120 | {"category": "productivity", "difficulty": "hard"} | |
linear | multi-issue-reorganization | Multi-Issue Reorganization | Reorganize three issues by dragging them to different columns and assignees | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linear/index.html"} | {"issues": [{"id": "1", "identifier": "VSS-101", "title": "Design oxygen level monitoring dashboard", "status": "queued", "assigneeId": "1", "labels": [], "projectId": "proj1", "priority": "none"}, {"id": "2", "identifier": "VSS-102", "title": "Add solar panel efficiency widget to control panel", "status": "queued", "a... | {"user_prompt": "Reorganize the board by performing three drag operations with detailed steps: 1) First drag: Locate issue VSS-101 in Riley's row in the Queued column, click and hold on the issue card, drag it to Chen's row in the In Progress column, and release to drop. 2) Second drag: Locate issue VSS-102 in Riley's ... | _validate_multi_issue_reorganization | 20 | 120 | {"category": "productivity", "difficulty": "hard"} | |
linear | reassign-issue | Reassign Issue | Reassign issue VSS-103 from Riley to Chen | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linear/index.html"} | {"issues": [{"id": "3", "identifier": "VSS-103", "title": "Create crew member profile cards with avatar animations", "status": "queued", "assigneeId": "1", "labels": [], "projectId": "proj1", "priority": "none"}], "users": [{"id": "1", "name": "Riley", "avatar": "R", "email": "riley@station.space"}, {"id": "2", "name":... | {"user_prompt": "Reassign issue VSS-103 from Riley to Chen by following these steps: 1) Click on issue VSS-103 on the kanban board to open it. 2) Locate the Assignee section in the right sidebar. 3) Click on the assignee dropdown (currently showing 'Riley'). 4) Select 'Chen' from the dropdown menu.", "success_criteria"... | [{"issues": [{"id": "3", "identifier": "VSS-103", "title": "Create crew member profile cards with avatar animations", "status": "queued", "assigneeId": "2", "labels": [], "projectId": "proj1", "priority": "none"}]}] | 5 | 60 | {"category": "productivity", "difficulty": "easy"} | |
linear | update-issue-properties | Update Issue Properties | Change both priority to urgent and add Operations label to VSS-105 | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linear/index.html"} | {"issues": [{"id": "5", "identifier": "VSS-105", "title": "Implement gravity simulator physics calculations", "status": "queued", "assigneeId": "2", "labels": [], "projectId": "proj1", "priority": "none"}], "users": [{"id": "1", "name": "Riley", "avatar": "R", "email": "riley@station.space"}, {"id": "2", "name": "Chen"... | {"user_prompt": "Update issue VSS-105 by following these steps: 1) Click on issue VSS-105 on the kanban board to open it. 2) First, locate the Priority section in the right sidebar and click the priority dropdown. 3) Select 'Urgent' from the dropdown menu. 4) Then, locate the Labels section in the right sidebar. 5) Cli... | _validate_update_issue_properties | 10 | 90 | {"category": "productivity", "difficulty": "medium"} | |
linear | view-issue-details | View Issue Details | Click on issue VSS-104 to view its details | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linear/index.html"} | {"issues": [{"id": "4", "identifier": "VSS-104", "title": "Build 3D station rotation visualizer component", "status": "queued", "assigneeId": "1", "labels": [], "projectId": "proj1", "priority": "none"}], "users": [{"id": "1", "name": "Riley", "avatar": "R", "email": "riley@station.space"}, {"id": "2", "name": "Chen", ... | {"user_prompt": "Click on issue VSS-104 on the kanban board to open and view its details.", "success_criteria": "The taskId must be set to '4' to indicate issue VSS-104 is being viewed."} | [{"taskId": "4"}] | 3 | 30 | {"category": "productivity", "difficulty": "easy"} | |
linkedin | complex-people-search | Complex People Search with Multiple Filters | Perform a comprehensive people search with query and multiple sub-filters including connections, locations, companies, and industry | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linkedin/index.html"} | {"currentView": "feed","viewedUserId": "1","searchQuery": "","searchFilter": {"mainCategory": "All","connections": [],"locations": [],"companies": [],"industry": [],"companySize": [],"datePosted": [],"underTenApplicants": false},"currentUser": {"id": "1","name": "Dzaka Athif","title": "Junior Forward Deployed Engineer"... | {"user_prompt": "You are on the LinkedIn feed page. Perform a comprehensive people search with multiple filters: 1) Click the search input bar at the top navigation, 2) Type 'jane' in the search field, 3) Click 'see all results' in the dropdown to go to the search results page, 4) Click on the 'People' filter button in... | [{"currentView": "search", "searchQuery": "jane", "searchFilter": {"mainCategory": "People", "connections": ["1st"], "locations": ["North America"], "companies": ["StartUp Inc"], "industry": ["Technology"], "companySize": [], "datePosted": [], "underTenApplicants": false}, "searchResults": {"people": [{"id": "3", "name... | 18 | 150 | {"category": "social", "difficulty": "hard"} | |
linkedin | filter-by-connection | Filter Search by Connection Degree | Apply a connection degree filter to search results | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linkedin/index.html"} | {"currentView": "search", "viewedUserId": "1", "searchQuery": "engineer", "searchFilter": {"mainCategory": "People", "connections": [], "locations": [], "companies": [], "industry": [], "companySize": [], "datePosted": [], "underTenApplicants": false}, "currentUser": {"id": "1", "name": "Dzaka Athif", "title": "Junior ... | {"user_prompt": "You are on the search results page for 'engineer' with the People filter active. Click on the '1st' connection degree button to filter results to show only 1st degree connections.", "success_criteria": "The searchFilter must have connections array containing '1st' while maintaining currentView='search'... | [{"currentView": "search", "searchFilter": {"mainCategory": "People", "connections": ["1st"], "locations": [], "companies": [], "industry": [], "companySize": [], "datePosted": [], "underTenApplicants": false}}] | 5 | 45 | {"category": "social", "difficulty": "easy"} | |
linkedin | fractional-find-user-profile | Find User Profile on LinkedIn | Click the search input, type 'john smith', click 'see all results' to find John Smith in the search results, and click on John Smith's profile to view their profile | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linkedin/index.html"} | {"currentView": "feed", "viewedUserId": "1", "searchQuery": "", "searchFilter": {"mainCategory": "All", "connections": [], "locations": [], "companies": [], "industry": [], "companySize": [], "datePosted": [], "underTenApplicants": false}, "currentUser": {"id": "1", "name": "Dzaka Athif", "title": "Junior Forward Deplo... | {"user_prompt": "You are on the LinkedIn feed page. Click the search input in the top navigation bar, type 'john smith', click 'see all results' to find John Smith in the search results, and click on John Smith's profile to view their profile.", "success_criteria": "The app must be on the profile view (currentView='pro... | _validate_fractional_find_user_profile | 10 | 60 | {"category": "social", "difficulty": "easy"} | |
linkedin | navigate-and-compare-profiles | Navigate and Compare Multiple Profiles | Search for users, navigate between their profiles to examine details, and navigate back to search results | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linkedin/index.html"} | {"currentView": "feed", "viewedUserId": "1", "searchQuery": "", "searchFilter": {"mainCategory": "All", "connections": [], "locations": [], "companies": [], "industry": [], "companySize": [], "datePosted": [], "underTenApplicants": false}, "currentUser": {"id": "1", "name": "Dzaka Athif", "title": "Junior Forward Deplo... | {"user_prompt": "You are on the LinkedIn feed page. Complete this multi-step navigation workflow: 1) Click the search input bar at the top navigation, 2) Type 'john' in the search field, 3) Click 'see all results' in the dropdown, 4) Click on 'John Smith' in the search results to view his profile, 5) Scroll down on Joh... | [{"currentView": "profile-education", "viewedUserId": "3"}] | 27 | 180 | {"category": "social", "difficulty": "hard"} | |
linkedin | navigate-to-profile | Navigate to User Profile | Click on a user's name to navigate to their profile page | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linkedin/index.html"} | {"currentView": "search", "viewedUserId": "1", "searchQuery": "jane", "searchFilter": {"mainCategory": "People", "connections": [], "locations": [], "companies": [], "industry": [], "companySize": [], "datePosted": [], "underTenApplicants": false}, "currentUser": {"id": "1", "name": "Dzaka Athif", "title": "Junior Forw... | {"user_prompt": "You are on the LinkedIn search results page showing 'Jane Doe' in the results. Click on 'Jane Doe' to navigate to her profile page.", "success_criteria": "The app must be on the profile view (currentView='profile') and viewing Jane Doe's profile (viewedUserId='3')."} | [{"currentView": "profile", "viewedUserId": "3"}] | 5 | 30 | {"category": "social", "difficulty": "easy"} | |
linkedin | search-and-filter-people | Search and Filter People by Connection and Location | Search for users and apply connection degree and location filters | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linkedin/index.html"} | {"currentView": "feed", "viewedUserId": "1", "searchQuery": "", "searchFilter": {"mainCategory": "All", "connections": [], "locations": [], "companies": [], "industry": [], "companySize": [], "datePosted": [], "underTenApplicants": false}, "currentUser": {"id": "1", "name": "Dzaka Athif", "title": "Junior Forward Deplo... | {"user_prompt": "You are on the LinkedIn feed page. Search for people and apply filters: 1) Click the search input bar at the top navigation, 2) Type 'jane' in the search field, 3) Click 'see all results' in the dropdown to go to the search results page, 4) Click on the 'People' filter button in the top filter bar to s... | [{"currentView": "search", "searchQuery": "jane", "searchFilter": {"mainCategory": "People", "connections": ["1st"], "locations": ["North America"], "companies": [], "industry": [], "companySize": [], "datePosted": [], "underTenApplicants": false}, "searchResults": {"people": [{"id": "3", "name": "Jane Doe", "title": "... | 15 | 90 | {"category": "social", "difficulty": "medium"} | |
linkedin | search-company | Search for Company | Search for a specific company by name and view results | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linkedin/index.html"} | {"currentView": "feed", "viewedUserId": "1", "searchQuery": "", "searchFilter": {"mainCategory": "All", "connections": [], "locations": [], "companies": [], "industry": [], "companySize": [], "datePosted": [], "underTenApplicants": false}, "currentUser": {"id": "1", "name": "Dzaka Athif", "title": "Junior Forward Deplo... | {"user_prompt": "You are on the LinkedIn feed page. Search for a company: 1) Click the search input bar at the top navigation, 2) Type 'Tech Corp' in the search field, 3) Click 'see all results' in the dropdown to navigate to the search results page.", "success_criteria": "The app must be on the search view (currentVie... | [{"currentView": "search", "searchQuery": "Tech Corp"}] | 15 | 45 | {"category": "social", "difficulty": "easy"} | |
linkedin | search-user | Search for User on LinkedIn | Click the search input, type 'dzaka', and click 'see all results' to find Dzaka Athif in the search results | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linkedin/index.html"} | {"currentView": "feed", "viewedUserId": "1", "searchQuery": "", "searchFilter": {"mainCategory": "All", "connections": [], "locations": [], "companies": [], "industry": [], "companySize": [], "datePosted": [], "underTenApplicants": false}, "currentUser": {"id": "1", "name": "Dzaka Athif", "title": "Junior Forward Deplo... | {"user_prompt": "You are on the LinkedIn feed page. Click the search input in the top navigation bar, type 'dzaka', and click 'see all results' to search for users.", "success_criteria": "The app must be on the search results page (currentView='search') with searchQuery containing 'dzaka', and Dzaka Athif must appear i... | _validate_search_for_dzaka | 10 | 60 | {"category": "social", "difficulty": "easy"} | |
linkedin | search-with-multiple-filters | Search with Multiple Filters | Perform a search and apply multiple filters including location, company, and connection degree | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linkedin/index.html"} | {"currentView": "feed", "viewedUserId": "1", "searchQuery": "", "searchFilter": {"mainCategory": "All", "connections": [], "locations": [], "companies": [], "industry": [], "companySize": [], "datePosted": [], "underTenApplicants": false}, "currentUser": {"id": "1", "name": "Dzaka Athif", "title": "Junior Forward Deplo... | {"user_prompt": "You are on the LinkedIn feed page. Search for people with multiple filters: 1) Click the search input bar at the top navigation, 2) Type 'john' in the search field, 3) Click 'see all results' in the dropdown to go to the search results page, 4) Click on the 'People' filter button in the top filter bar ... | [{"currentView": "search", "searchQuery": "john", "searchFilter": {"mainCategory": "People", "connections": ["2nd"], "locations": ["North America"], "companies": ["Tech Corp"], "industry": [], "companySize": [], "datePosted": [], "underTenApplicants": false}}] | 17 | 90 | {"category": "social", "difficulty": "medium"} | |
linkedin | view-profile-experience | View Profile Experience Section | Navigate to a user's profile and view their detailed experience section | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linkedin/index.html"} | {"currentView": "profile", "viewedUserId": "2", "searchQuery": "", "searchFilter": {"mainCategory": "All", "connections": [], "locations": [], "companies": [], "industry": [], "companySize": [], "datePosted": [], "underTenApplicants": false}, "currentUser": {"id": "1", "name": "Dzaka Athif", "title": "Junior Forward De... | {"user_prompt": "You are viewing John Smith's profile. Scroll down the profile page to find the Experience section. Then click on the 'Show all experiences' link or arrow icon to view the detailed experience section.", "success_criteria": "The app must navigate to the profile-experience view (currentView='profile-exper... | [{"currentView": "profile-experience", "viewedUserId": "2"}] | 7 | 45 | {"category": "social", "difficulty": "easy"} | |
linkedin | view-user-education-details | View User Education Details | Navigate to a specific user's profile and view their detailed education section | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/linkedin/index.html"} | {"currentView": "search", "viewedUserId": "1", "searchQuery": "product", "searchFilter": {"mainCategory": "People", "connections": [], "locations": [], "companies": [], "industry": [], "companySize": [], "datePosted": [], "underTenApplicants": false}, "currentUser": {"id": "1", "name": "Dzaka Athif", "title": "Junior F... | {"user_prompt": "From the search results, click on 'Jane Doe' to view her profile. Scroll down the profile page to find the Education section. Then click on 'Show all education' or the arrow icon next to the Education section to view her detailed education section.", "success_criteria": "The app must be on the profile-... | [{"currentView": "profile-education", "viewedUserId": "3"}] | 10 | 90 | {"category": "social", "difficulty": "medium"} | |
minesweeper | flag-corner-mines | Flag All Corner Mines | Flag mines located at all four corners of the board | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/minesweeper/index.html"} | {"gameStatus":"playing","board":[[{"isMine":true,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":1},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neigh... | {"user_prompt": "Mines have been identified at all four corners of the board: [0][0] (top-left), [0][8] (top-right), [8][0] (bottom-left), and [8][8] (bottom-right). Flag all four corner positions.", "success_criteria": "All four corner cells must be flagged correctly."} | _validate_minesweeper_flag_corner_mines | 8 | 60 | {"category": "games", "difficulty": "medium", "action": "flag_corners"} | |
minesweeper | flag-single-mine | Flag Single Mine | Flag a specific mine location that has been identified | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/minesweeper/index.html"} | {"gameStatus":"playing","board":[[{"isMine":true,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":1},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neigh... | {"user_prompt": "A mine has been identified at row 0, column 0 (top-left corner). Right-click on that cell to place a flag and mark it as a mine.", "success_criteria": "The cell at position [0][0] must be flagged."} | _validate_minesweeper_flag_single_mine | 2 | 30 | {"category": "games", "difficulty": "easy", "action": "flag_mine"} | |
minesweeper | flag-three-mines | Flag Three Mines | Flag three specific mine locations that have been identified | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/minesweeper/index.html"} | {"gameStatus":"playing","board":[[{"isMine":true,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":1},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neigh... | {"user_prompt": "Three mines have been identified at positions: [0][0] (top-left), [0][8] (top-right), and [8][0] (bottom-left). Right-click on each of these three cells to flag them as mines.", "success_criteria": "All three cells at positions [0][0], [0][8], and [8][0] must be flagged."} | _validate_minesweeper_flag_three_mines | 5 | 45 | {"category": "games", "difficulty": "easy", "action": "flag_multiple"} | |
minesweeper | reveal-10-cells | Reveal 10 Cells | Reveal at least 10 safe cells without hitting any mines | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/minesweeper/index.html"} | {"gameStatus":"playing","board":[[{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neig... | {"user_prompt": "Reveal at least 10 safe cells on the board. Use the numbers shown to deduce safe cells and avoid mines. The game should still be in progress.", "success_criteria": "At least 10 cells must be revealed, none of them should be mines, and the game should still be in progress."} | _validate_minesweeper_reveal_10_cells | 5 | 60 | {"category": "games", "difficulty": "medium", "action": "reveal_10_cells"} | |
minesweeper | reveal-20-cells | Reveal 20 Cells | Reveal at least 20 safe cells without hitting any mines | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/minesweeper/index.html"} | {"gameStatus":"playing","board":[[{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neig... | {"user_prompt": "Carefully reveal cells on the board to uncover at least 20 safe cells. Use the numbers shown to deduce safe cells and avoid mines. The game should still be in progress after revealing 20+ cells.", "success_criteria": "At least 20 cells must be revealed, the game status should still be 'playing' (not lo... | _validate_minesweeper_reveal_20_cells | 15 | 90 | {"category": "games", "difficulty": "medium", "action": "reveal_20_cells"} | |
minesweeper | reveal-first-cell | Reveal First Cell | Make the first move in Minesweeper by revealing any cell | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/minesweeper/index.html"} | {"gameStatus":"not_started","board":[[{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"... | {"user_prompt": "Start playing Minesweeper by revealing any cell on the board. Left-click on any cell to begin the game.", "success_criteria": "At least one cell must be revealed and the game status should change to 'playing'."} | _validate_minesweeper_reveal_first_cell | 2 | 30 | {"category": "games", "difficulty": "easy", "action": "first_move"} | |
minesweeper | reveal-numbered-cell | Reveal Numbered Cell | Reveal a cell that shows the count of neighboring mines | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/minesweeper/index.html"} | {"gameStatus":"playing","board":[[{"isMine":true,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":1},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neigh... | {"user_prompt": "The cell at row 1, column 1 is safe and has neighboring mines. Left-click on that cell to reveal it and see the count of neighboring mines.", "success_criteria": "The cell at position [1][1] must be revealed and show a neighbor mine count greater than 0."} | _validate_minesweeper_reveal_numbered_cell | 2 | 30 | {"category": "games", "difficulty": "easy", "action": "reveal_numbered"} | |
minesweeper | reveal-safe-cell | Reveal Safe Cell | Reveal a specific safe cell with no neighboring mines | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/minesweeper/index.html"} | {"gameStatus":"playing","board":[[{"isMine":true,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":1},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neigh... | {"user_prompt": "The cell at row 4, column 4 (center) is confirmed safe with no neighboring mines. Left-click on that cell to reveal it.", "success_criteria": "The cell at position [4][4] must be revealed and show no neighboring mines."} | _validate_minesweeper_reveal_safe_cell | 2 | 30 | {"category": "games", "difficulty": "easy", "action": "reveal_safe"} | |
minesweeper | strategic-flagging-and-clearing | Strategic Flagging and Clearing | Complete a Minesweeper game by strategically flagging mines and revealing all safe cells | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/minesweeper/index.html"} | {"gameStatus":"playing","board":[[{"isMine":true,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":1},{"isMine":false,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":false,"isFlagged":false,"neigh... | {"user_prompt": "The board is partially revealed with some cells already uncovered. Use strategic thinking to flag all remaining mines and reveal all safe cells to win the game. Use the number clues to deduce mine locations.", "success_criteria": "The game must end with status 'won' by revealing all non-mine cells. All... | [{"gameStatus": "won"}] | 20 | 180 | {"category": "games", "difficulty": "hard", "action": "strategic_complete", "strategy": "comprehensive"} | |
minesweeper | win-small-game | Win Small Game | Win a Minesweeper game that is mostly cleared and close to completion | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/minesweeper/index.html"} | {"gameStatus":"playing","board":[[{"isMine":true,"isRevealed":false,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":true,"isFlagged":false,"neighborMineCount":1},{"isMine":false,"isRevealed":true,"isFlagged":false,"neighborMineCount":0},{"isMine":false,"isRevealed":true,"isFlagged":false,"neighbor... | {"user_prompt": "The board is mostly cleared with only a few cells remaining. Reveal the remaining safe cells to win the game. Be careful not to hit any mines!", "success_criteria": "The game must end with status 'won' by revealing all non-mine cells."} | [{"gameStatus": "won"}] | 10 | 120 | {"category": "games", "difficulty": "hard", "action": "win_game"} | |
tic-tac-toe | block-computer-win | Block Computer Win | Block the computer from winning by placing X in the critical position | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/tic-tac-toe/index.html"} | {"board": ["O", "O", null, "X", null, null, null, null, null], "currentPlayer": "X", "winner": null, "gameOver": false, "isComputerTurn": false} | {"user_prompt": "The computer (O) has two in a row at the top! Block the computer from winning by placing your X in the empty square at position 2 (top-right corner) to prevent three O's in a row.", "success_criteria": "X must be placed in position 2 (index 2) to block the computer's winning move in the top row."} | _validate_block_computer_win | 2 | 30 | {"category": "games", "difficulty": "easy", "action": "block_win", "strategy": "defensive"} | |
tic-tac-toe | force-computer-mistake | Force Computer Into Fork | Create a fork position with two ways to win, forcing the computer into an unwinnable situation | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/tic-tac-toe/index.html"} | {"board": ["X", null, null, null, "O", null, "O", null, "X"], "currentPlayer": "X", "winner": null, "gameOver": false, "isComputerTurn": false} | {"user_prompt": "You have X's in opposite corners (positions 0 and 8), and O is in the center. Create a fork by placing your next X strategically to set up two possible winning lines. The computer won't be able to block both, guaranteeing your victory.", "success_criteria": "The game must end with X as the winner by cr... | [{"winner": "X", "gameOver": true}] | 8 | 90 | {"category": "games", "difficulty": "medium", "action": "fork_strategy", "strategy": "offensive"} | |
tic-tac-toe | lose-game | Lose Tic-Tac-Toe Game | Intentionally lose a game of tic-tac-toe by allowing the computer to get three O's in a row | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/tic-tac-toe/index.html"} | {"board": ["X", "O", null, null, null, null, null, null, null], "currentPlayer": "X", "winner": null, "gameOver": false, "isComputerTurn": false} | {"user_prompt": "Play tic-tac-toe and intentionally lose the game by allowing the computer (O) to get three in a row. You are X and need to make moves that don't block the computer's winning opportunities.", "success_criteria": "The game must end with the computer (O) as the winner, indicated by the message 'Computer w... | [{"winner": "O", "gameOver": true}] | 10 | 120 | {"category": "games", "difficulty": "easy", "player": "X", "opponent": "computer", "strategy": "intentional_loss"} | |
tic-tac-toe | make-first-move | Make First Move | Make any valid first move on an empty tic-tac-toe board | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/tic-tac-toe/index.html"} | {"board": [null, null, null, null, null, null, null, null, null], "currentPlayer": "X", "winner": null, "gameOver": false, "isComputerTurn": false} | {"user_prompt": "Start a game of tic-tac-toe by making your first move. Click on any empty square on the board to place your X.", "success_criteria": "The board must have at least one X placed on it, indicating a successful first move."} | _validate_tic_tac_toe_make_first_move | 3 | 30 | {"category": "games", "difficulty": "easy", "action": "first_move"} | |
tic-tac-toe | prevent-computer-fork | Prevent Computer Fork | Defend against the computer's fork attempt and avoid losing | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/tic-tac-toe/index.html"} | {"board": ["O", null, null, "X", "X", null, null, null, "O"], "currentPlayer": "X", "winner": null, "gameOver": false, "isComputerTurn": false} | {"user_prompt": "The computer (O) has taken opposite corners (positions 0 and 8), and you have the center. This is a dangerous fork setup. You must defend carefully to prevent the computer from creating two winning threats at once. Play defensively to force a tie or find a way to win.", "success_criteria": "The game mu... | [{"winner": "X", "gameOver": true}, {"winner": null, "gameOver": true}] | 12 | 120 | {"category": "games", "difficulty": "hard", "action": "prevent_fork", "strategy": "defensive"} | |
tic-tac-toe | reset-game | Reset Tic-Tac-Toe Game | Reset the tic-tac-toe game to its initial state by clicking the reset button | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/tic-tac-toe/index.html"} | {"board": ["X", "O", "X", "O", "X", "O", "X", "O", "X"], "currentPlayer": "X", "winner": "X", "gameOver": true, "isComputerTurn": false} | {"user_prompt": "The tic-tac-toe game is currently finished. Click the 'Reset Game' button to start a new game and return the board to its initial empty state.", "success_criteria": "The game must be reset to its initial state with an empty board, no winner, and the game not over. The reset button should clear all X's ... | [{"board": [null, null, null, null, null, null, null, null, null], "currentPlayer": "X", "winner": null, "gameOver": false, "isComputerTurn": false}] | 3 | 30 | {"category": "ui", "difficulty": "easy", "action": "reset", "interface_element": "button"} | |
tic-tac-toe | take-center | Take Center Square | Take the center square as a strategic first or early move | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/tic-tac-toe/index.html"} | {"board": [null, null, null, null, null, null, null, null, null], "currentPlayer": "X", "winner": null, "gameOver": false, "isComputerTurn": false} | {"user_prompt": "Make a strategic move by taking the center square (middle position) of the tic-tac-toe board. The center is position 4, the middle square of the 3x3 grid.", "success_criteria": "X must be placed in the center position (index 4) of the board."} | _validate_take_center | 2 | 30 | {"category": "games", "difficulty": "easy", "action": "strategic_center", "strategy": "offensive"} | |
tic-tac-toe | tie-game | Tie Tic-Tac-Toe Game | Achieve a tie in tic-tac-toe by filling the board without either player getting three in a row | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/tic-tac-toe/index.html"} | {"board": ["O", "O", "X", "X", "X", null, "O", "O", null], "currentPlayer": "X", "winner": null, "gameOver": false, "isComputerTurn": false} | {"user_prompt": "Play tic-tac-toe and achieve a tie game by strategically placing your X's to prevent both you and the computer from getting three in a row. The board should fill completely with no winner.", "success_criteria": "The game must end in a tie with no winner, indicated by the message 'It's a tie!' appearing... | [{"winner": null, "gameOver": true}] | 15 | 180 | {"category": "games", "difficulty": "hard", "player": "X", "opponent": "computer", "strategy": "defensive"} | |
tic-tac-toe | win-game | Win Tic-Tac-Toe Game | Successfully win a game of tic-tac-toe by getting three X's in a row before the computer | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/tic-tac-toe/index.html"} | {"board": ["O", "O", "X", "X", "X", null, "O", "O", null], "currentPlayer": "X", "winner": null, "gameOver": false, "isComputerTurn": false} | {"user_prompt": "Play tic-tac-toe and win the game by getting three X's in a row, column, or diagonal. You are X and the computer is O. Click on empty squares to make your moves.", "success_criteria": "The game must end with you (X) as the winner, indicated by the message 'You win!' appearing on screen."} | [{"winner": "X", "gameOver": true}] | 10 | 120 | {"category": "games", "difficulty": "medium", "player": "X", "opponent": "computer"} | |
tic-tac-toe | win-in-two-moves | Win in Two Moves | Set up and execute a winning sequence in two moves | free | {"type": "url", "path": "https://dojo-spas-production.s3.us-east-1.amazonaws.com/tic-tac-toe/index.html"} | {"board": ["X", "O", null, "O", "X", null, null, null, null], "currentPlayer": "X", "winner": null, "gameOver": false, "isComputerTurn": false} | {"user_prompt": "You have X's in positions 0 and 4 (top-left and center). Win the game by completing the diagonal from top-left to bottom-right. Place your X strategically to set up the win, then complete it on your next turn.", "success_criteria": "The game must end with X as the winner by completing a line of three X... | [{"winner": "X", "gameOver": true}] | 5 | 60 | {"category": "games", "difficulty": "medium", "action": "win_sequence", "strategy": "offensive"} |
No dataset card yet
- Downloads last month
- 3