-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtasks.json
More file actions
5222 lines (5222 loc) · 188 KB
/
Copy pathtasks.json
File metadata and controls
5222 lines (5222 loc) · 188 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "caltrack-001",
"goal": "Log today's breakfast in CalTrack \u2014 search the food database for 'oatmeal', add a serving, and give me the calories and macros.",
"apps": [
"caltrack"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open CalTrack app and navigate to food logging section"
},
{
"criterion": "Tap the log food / add food button"
},
{
"criterion": "Search for 'oatmeal' in the food database"
},
{
"criterion": "Select oatmeal from search results"
},
{
"criterion": "Set serving size to 1 serving"
},
{
"criterion": "Confirm and save the food log entry"
},
{
"criterion": "Report the calorie count for the logged serving"
},
{
"criterion": "Report macros (protein, carbs, fat)"
}
]
},
{
"name": "cinephile-001",
"goal": "Search for 'The Godfather' in Cinephile and add it to my Wishlist. What's the year and rating?",
"apps": [
"cinephile"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open Cinephile app and navigate to search"
},
{
"criterion": "Type 'The Godfather' in the search field"
},
{
"criterion": "Tap 'The Godfather' from search results"
},
{
"criterion": "Add the movie to Wishlist"
},
{
"criterion": "Report the release year of the movie"
},
{
"criterion": "Report the rating of the movie"
}
]
},
{
"name": "cityride-001",
"goal": "Request a CityRideX ride in CityRide from Home (410 Brannan St) to Oracle Park. What's the estimated fare and ETA?",
"apps": [
"cityride"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open CityRide app"
},
{
"criterion": "Set pickup location to Home (410 Brannan St)"
},
{
"criterion": "Set destination to Oracle Park"
},
{
"criterion": "Select the CityRideX ride option"
},
{
"criterion": "Confirm the ride request"
},
{
"criterion": "Report the estimated fare"
},
{
"criterion": "Report the estimated ETA"
}
]
},
{
"name": "clock-001",
"goal": "Set a new alarm for 6:45 AM labeled 'Gym' in the Clock app and confirm it's set.",
"apps": [
"clock"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open Clock app and navigate to the Alarm tab"
},
{
"criterion": "Tap the add alarm button"
},
{
"criterion": "Set the alarm time to 6:45 AM"
},
{
"criterion": "Set the alarm label to 'Gym'"
},
{
"criterion": "Save the alarm"
},
{
"criterion": "Confirm the alarm is set and active"
}
]
},
{
"name": "clouddocs-004",
"goal": "Search my documents in CloudDocs for 'launch plan', open 'Mobile Launch Plan', and add a note about Q2 planning. Confirm the edit was saved.",
"apps": [
"clouddocs"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open CloudDocs app and tap the search field"
},
{
"criterion": "Type 'launch plan' in the search field"
},
{
"criterion": "Open the 'Mobile Launch Plan' document from results"
},
{
"criterion": "Enter edit mode on the document"
},
{
"criterion": "Add a note or text about Q2 planning"
},
{
"criterion": "Save the document and confirm the edit was saved"
}
]
},
{
"name": "clouddrive-001",
"goal": "Open the Product Strategy folder in CloudDrive, find the most recently modified file, and star it. What's the file name and last modified date?",
"apps": [
"clouddrive"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open CloudDrive app and navigate to the Product Strategy folder"
},
{
"criterion": "Identify the most recently modified file in the folder"
},
{
"criterion": "Tap on the file options or context menu for that file"
},
{
"criterion": "Star the file"
},
{
"criterion": "Report the file name"
},
{
"criterion": "Report the last modified date"
}
]
},
{
"name": "cloudsheets-003",
"goal": "Open the '2026 Open House Volunteers' spreadsheet in CloudSheets and update a volunteer's assignment status to 'Pending'. Which volunteer did you update and what's their new status?",
"apps": [
"cloudsheets"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open CloudSheets app and find the '2026 Open House Volunteers' spreadsheet"
},
{
"criterion": "Open the spreadsheet and review the volunteer data"
},
{
"criterion": "Locate a volunteer whose assignment status is not already 'Pending'"
},
{
"criterion": "Select the cell containing the volunteer's assignment status"
},
{
"criterion": "Edit the cell value to 'Pending'"
},
{
"criterion": "Confirm the change was saved in the spreadsheet"
},
{
"criterion": "Report which volunteer was updated and their new status"
}
]
},
{
"name": "cloudslides-002",
"goal": "Open the '[Draft] Autonomous Agents' presentation in CloudSlides and edit slide 2 to add a bullet about 'safety' to the agenda list. What's the updated agenda?",
"apps": [
"cloudslides"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open CloudSlides app and find the '[Draft] Autonomous Agents' presentation"
},
{
"criterion": "Open the presentation"
},
{
"criterion": "Navigate to slide 2"
},
{
"criterion": "Tap slide 2's body text to enter edit mode"
},
{
"criterion": "Add a bullet point about 'safety' to slide 2's agenda"
},
{
"criterion": "Confirm the edit was saved"
},
{
"criterion": "Report the updated agenda content"
}
]
},
{
"name": "dinespot-001",
"goal": "Search for restaurants in San Francisco with the 'Outdoor Seating' tag on DineSpot and make a reservation at Harborline Seafood. Confirm the reservation and give me the date, time, and party size.",
"apps": [
"dinespot"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open DineSpot app"
},
{
"criterion": "Set location to San Francisco or verify location is San Francisco"
},
{
"criterion": "Apply the 'Outdoor Seating' tag or filter"
},
{
"criterion": "Find and select Harborline Seafood from the results"
},
{
"criterion": "Select a date for the reservation"
},
{
"criterion": "Select a time for the reservation"
},
{
"criterion": "Set the party size"
},
{
"criterion": "Confirm the reservation"
},
{
"criterion": "Report the reservation date, time, and party size"
}
]
},
{
"name": "freshcart-001",
"goal": "Order salmon and avocados from Natural Foods Market on FreshCart. Confirm the items were added to my cart and give me the total.",
"apps": [
"freshcart"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open FreshCart app and select Natural Foods Market store"
},
{
"criterion": "Search for 'salmon'"
},
{
"criterion": "Add salmon to cart"
},
{
"criterion": "Search for 'avocados'"
},
{
"criterion": "Add avocados to cart"
},
{
"criterion": "Navigate to cart to verify both items are present"
},
{
"criterion": "Proceed to checkout or confirm items in cart"
},
{
"criterion": "Report the cart total"
}
]
},
{
"name": "lockedin-003",
"goal": "Search lockedin for a platform engineer and send them a message saying I admire their experience and would like to connect. Who did you message?",
"apps": [
"lockedin"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open LockedIn app and navigate to the search function"
},
{
"criterion": "Search for 'platform engineers'"
},
{
"criterion": "Select a platform engineer from the search results"
},
{
"criterion": "Open the platform engineer's profile to view their experience"
},
{
"criterion": "Navigate to messaging or find the message option"
},
{
"criterion": "Compose an introductory message expressing admiration for their experience and desire to connect"
},
{
"criterion": "Send the message"
},
{
"criterion": "Report the name of the person messaged"
}
]
},
{
"name": "lockedin-004",
"goal": "I received an InMail from Rachel Torres at Netflix about a Platform Engineering Lead role. Open LockedIn and read the full InMail, then compose a professional reply expressing interest with at least 3 specific questions about the team, tech stack, or role scope. Navigate to Jobs, find the Platform Engineering Lead posting at Netflix, and save it. Finally, tap 'Follow' on Netflix from the job detail to follow the company. What are the role details (comp range, location, team size), what questions did you ask Rachel, and confirm the job was saved and Netflix was followed.",
"apps": [
"lockedin"
],
"category": "single_app",
"difficulty": "medium",
"rubric": [
{
"criterion": "Open LockedIn and navigate to the Messages/InMail tab"
},
{
"criterion": "Open Rachel Torres's InMail conversation"
},
{
"criterion": "Read the full InMail about the Platform Engineering Lead role at Netflix"
},
{
"criterion": "Compose a reply of at least 5 sentences expressing interest"
},
{
"criterion": "Include at least 3 specific questions about team, tech stack, or role scope"
},
{
"criterion": "Send the reply to Rachel Torres"
},
{
"criterion": "Navigate to the Jobs tab in LockedIn"
},
{
"criterion": "Search or filter to find the Platform Engineering Lead posting at Netflix"
},
{
"criterion": "Save the Netflix Platform Engineering Lead job"
},
{
"criterion": "Tap 'Follow' on Netflix from the job detail to follow the company"
},
{
"criterion": "Report role details: compensation range ($250-400K), location (on-site), team size (8)"
},
{
"criterion": "Report the 3+ questions asked in the reply"
}
]
},
{
"name": "mail-002",
"goal": "Filter my Inbox in Mail to show only the Transactions category, then archive a QuickBite receipt. Confirm it was archived.",
"apps": [
"mail"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open Mail app and go to Inbox"
},
{
"criterion": "Tap the Transactions category filter"
},
{
"criterion": "Find a QuickBite receipt email in the filtered list"
},
{
"criterion": "Archive the QuickBite receipt email"
},
{
"criterion": "Confirm the email was archived"
}
]
},
{
"name": "megamart-001",
"goal": "Search for 'PS5 Controller' on MegaMart and add one to my cart. What's the product name and price?",
"apps": [
"megamart"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open MegaMart app and tap the search field"
},
{
"criterion": "Type 'PS5 Controller' in the search field"
},
{
"criterion": "Select a PS5 Controller from search results"
},
{
"criterion": "Tap 'Add to Cart' button"
},
{
"criterion": "Report the product name"
},
{
"criterion": "Report the product price"
}
]
},
{
"name": "mybank-003",
"goal": "Send $50 via Zelle to Maya Patel in MyBank and confirm the payment was sent.",
"apps": [
"mybank"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open MyBank app and navigate to Pay & Transfer"
},
{
"criterion": "Select Zelle as the payment method"
},
{
"criterion": "Choose Maya Patel as the recipient"
},
{
"criterion": "Enter $50 as the amount"
},
{
"criterion": "Add a memo or note for the payment"
},
{
"criterion": "Send the payment"
},
{
"criterion": "Confirm the payment was sent successfully"
}
]
},
{
"name": "notes-001",
"goal": "Open the Work folder in Notes, find the 'Team Standup Notes' note, and add a new bullet point about a bug fix completed today. Confirm the note was updated.",
"apps": [
"notes"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open Notes app and navigate to the Work folder"
},
{
"criterion": "Find and open 'Team Standup Notes'"
},
{
"criterion": "Tap to edit the note"
},
{
"criterion": "Add a new bullet point about a bug fix completed today"
},
{
"criterion": "Save and confirm the note was updated"
}
]
},
{
"name": "quickbite-001",
"goal": "Order a chicken bowl from Chipotle on QuickBite for delivery to 410 Brannan St and confirm the order was placed.",
"apps": [
"quickbite"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open QuickBite app and search or browse for Chipotle"
},
{
"criterion": "Select Chipotle from results"
},
{
"criterion": "Find and select a chicken bowl from the menu"
},
{
"criterion": "Confirm delivery address is 410 Brannan St"
},
{
"criterion": "Proceed to checkout and place the order"
},
{
"criterion": "Confirm the order was placed successfully"
}
]
},
{
"name": "quickchat-003",
"goal": "Search my QuickChat for 'Brooklyn Half' and find the conversation where someone asked about my registration. Reply to that thread confirming I'm registered and ask about the race day meetup plan. Who was the conversation with, and confirm the reply was sent.",
"apps": [
"quickchat"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open QuickChat app and tap the search function"
},
{
"criterion": "Type 'Brooklyn Half' in the search field"
},
{
"criterion": "Review matching conversations; pick the one where someone asked about my registration"
},
{
"criterion": "Open the matching conversation thread"
},
{
"criterion": "Read the context about the Brooklyn Half race"
},
{
"criterion": "Compose a reply confirming registration and asking about the race day meetup plan"
},
{
"criterion": "Send the reply"
},
{
"criterion": "Report who the conversation was with"
},
{
"criterion": "Confirm the reply was sent"
}
]
},
{
"name": "scorezone-003",
"goal": "Read a top headline article from the ScoreZone home feed, then check the Scores tab to see if the team mentioned in the article has a game scheduled today. What's the headline, the team name, and do they have a game today?",
"apps": [
"scorezone"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open ScoreZone app and navigate to the Home feed"
},
{
"criterion": "Browse top headlines on the home feed"
},
{
"criterion": "Tap a top headline article to read the full content"
},
{
"criterion": "Identify and note the team mentioned in the article"
},
{
"criterion": "Navigate to the Scores tab"
},
{
"criterion": "Search for the mentioned team's game schedule for today"
},
{
"criterion": "Report the headline of the article read"
},
{
"criterion": "Report the team name"
},
{
"criterion": "Report whether the team has a game today"
}
]
},
{
"name": "skytrip-002",
"goal": "Search for flights from SFO to JFK for the next few days on SkyTrip and compare prices. What are the cheapest and most expensive options with their times and prices?",
"apps": [
"skytrip"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open SkyTrip app and navigate to the flight search"
},
{
"criterion": "Enter SFO as the origin airport"
},
{
"criterion": "Enter JFK as the destination airport"
},
{
"criterion": "Set travel dates for the next few days"
},
{
"criterion": "Execute the flight search"
},
{
"criterion": "Review and compare the flight results by price"
},
{
"criterion": "Report the cheapest flight option with time and price"
},
{
"criterion": "Report the most expensive flight option with time and price"
}
]
},
{
"name": "splitpay-001",
"goal": "Send $32.50 to Maya Patel on SplitPay for 'dinner split' from my SplitPay balance and confirm the payment was sent.",
"apps": [
"splitpay"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open SplitPay app and tap pay or send money"
},
{
"criterion": "Search for and select Maya Patel as recipient"
},
{
"criterion": "Enter $32.50 as the amount"
},
{
"criterion": "Add the note 'dinner split'"
},
{
"criterion": "Select SplitPay balance as the payment source"
},
{
"criterion": "Send the payment"
},
{
"criterion": "Confirm the payment was sent successfully"
}
]
},
{
"name": "stayfinder-001",
"goal": "Pull up my upcoming Catalina Island trip (dates shown in StayFinder) on StayFinder and check the listing details. What's the listing name, price per night, number of beds, and number of baths?",
"apps": [
"stayfinder"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open StayFinder app and navigate to the Trips tab"
},
{
"criterion": "Find and tap the Catalina Island trip (dates shown in StayFinder)"
},
{
"criterion": "View the listing details"
},
{
"criterion": "Report the listing name"
},
{
"criterion": "Report the price per night"
},
{
"criterion": "Report the number of beds"
},
{
"criterion": "Report the number of baths"
}
]
},
{
"name": "tasterank-001",
"goal": "Search for 'Tartine Manufactory' in TasteRank, check out its score and cuisine details, and add it to my 'Want to Try' list. What's the TasteRank score and cuisine type?",
"apps": [
"tasterank"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open TasteRank app and tap the search icon"
},
{
"criterion": "Type 'Tartine Manufactory' in the search field"
},
{
"criterion": "Tap on Tartine Manufactory from search results"
},
{
"criterion": "View the restaurant's score and cuisine details"
},
{
"criterion": "Add the restaurant to the 'Want to Try' list"
},
{
"criterion": "Report the TasteRank score"
},
{
"criterion": "Report the cuisine type"
}
]
},
{
"name": "teamchat-003",
"goal": "Check my DMs in TeamChat, find the most recent unread direct message, and send a reply. Who was it from, and confirm the reply was sent.",
"apps": [
"teamchat"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open TeamChat app and navigate to DMs tab"
},
{
"criterion": "Find the most recent unread direct message"
},
{
"criterion": "Open the unread conversation"
},
{
"criterion": "Read the message content to understand context"
},
{
"criterion": "Compose a reply of at least 5 words that references the original message content"
},
{
"criterion": "Send the reply"
},
{
"criterion": "Report who the message was from and confirm the reply was sent"
}
]
},
{
"name": "ticketbox-004",
"goal": "Find the Ali Wong show at Great American Music Hall on TicketBox and check ticket prices and venue details. What's the show date, venue name, and price range?",
"apps": [
"ticketbox"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open TicketBox app and search for 'Ali Wong'"
},
{
"criterion": "Tap on the Ali Wong comedy show from results"
},
{
"criterion": "View ticket prices and venue details"
},
{
"criterion": "Report the show date"
},
{
"criterion": "Report the venue name"
},
{
"criterion": "Report the price range"
}
]
},
{
"name": "trailblaze-004",
"goal": "Browse my recent activities on TrailBlaze and give kudos to a friend's workout. What's the friend's name and activity type?",
"apps": [
"trailblaze"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open TrailBlaze app and navigate to the Feed tab"
},
{
"criterion": "Browse recent activities and find a friend's workout"
},
{
"criterion": "Tap the kudos button on the friend's activity"
},
{
"criterion": "Report the friend's name"
},
{
"criterion": "Report the activity type"
}
]
},
{
"name": "weather-004",
"goal": "Check the 7-day forecast in the Weather app for both San Francisco and Dallas. Which city will be warmer this weekend? Give me the weekend high temperatures for both.",
"apps": [
"weather"
],
"category": "single_app",
"difficulty": "easy",
"rubric": [
{
"criterion": "Open Weather app and navigate to San Francisco"
},
{
"criterion": "Scroll to view the 7-day forecast for San Francisco"
},
{
"criterion": "Note the weekend high temperatures for San Francisco"
},
{
"criterion": "Navigate to Dallas weather page"
},
{
"criterion": "Scroll to view the 7-day forecast for Dallas"
},
{
"criterion": "Note the weekend high temperatures for Dallas"
},
{
"criterion": "Report weekend high temperatures for San Francisco"
},
{
"criterion": "Report weekend high temperatures for Dallas"
},
{
"criterion": "Report which city will be warmer this weekend"
}
]
},
{
"name": "lockedin-001",
"goal": "Open lockedin and find a technical program manager job posting. Note the requirements and benefits, then create a new file in CloudDocs called 'Interview Prep' with a brief summary of the job and 2 questions to ask a recruiter. Email Leo Chen the doc sharing link and ask for any advice on my preparation. What's the company name and key skills, and confirm the doc was created and email sent.",
"apps": [
"lockedin",
"clouddocs",
"mail"
],
"category": "multi_app",
"difficulty": "medium",
"rubric": [
{
"criterion": "Open LockedIn and search for a technical program manager job posting"
},
{
"criterion": "Note the job requirements and benefits from the posting"
},
{
"criterion": "Create a new file in CloudDocs titled 'Interview Prep'"
},
{
"criterion": "Write a brief summary of the job in the document"
},
{
"criterion": "Include 2 questions to ask a recruiter in the document"
},
{
"criterion": "Get the sharing link for the CloudDocs document"
},
{
"criterion": "Email Leo Chen with the doc sharing link and ask for preparation advice"
},
{
"criterion": "Report the company name and key skills from the job posting"
},
{
"criterion": "Confirm the CloudDocs document was created"
},
{
"criterion": "Confirm the email was sent to Leo Chen"
}
]
},
{
"name": "lockedin-002",
"goal": "Open lockedin and find a recent post from Elena Brooks celebrating a new role or achievement. Like it, leave a short congratulatory comment, and repost it. Then send Elena Brooks a direct message asking if she wants to get dinner to celebrate, and book a table for 2 on DineSpot for Saturday at dinner time in San Francisco. What restaurant did you book?",
"apps": [
"lockedin",
"dinespot",
"quickchat"
],
"category": "multi_app",
"difficulty": "medium",
"rubric": [
{
"criterion": "Open LockedIn and find a recent post from Elena Brooks about a new role or achievement"
},
{
"criterion": "Like Elena Brooks' post"
},
{
"criterion": "Leave a short congratulatory comment on the post"
},
{
"criterion": "Repost Elena Brooks' post"
},
{
"criterion": "Send Elena Brooks a direct message asking about dinner to celebrate"
},
{
"criterion": "Open DineSpot and search for restaurants in San Francisco"
},
{
"criterion": "Book a table for 2 on Saturday at dinner time"
},
{
"criterion": "Report the restaurant name booked on DineSpot"
},
{
"criterion": "Confirm all LockedIn interactions (like, comment, repost) were completed"
}
]
},
{
"name": "multi-001",
"goal": "Find a restaurant in San Francisco with outdoor seating on DineSpot (something like Harborline Seafood) and make a reservation for 6 people at 7 PM this Friday. Then post the restaurant name, time, and address in the #general TeamChat channel. Give me the restaurant name, reservation confirmation, and confirm the TeamChat message was posted.",
"apps": [
"dinespot",
"teamchat"
],
"category": "multi_app",
"difficulty": "medium",
"rubric": [
{
"criterion": "Open DineSpot and search for restaurants in San Francisco"
},
{
"criterion": "Filter or find a restaurant with outdoor seating (e.g., Harborline Seafood)"
},
{
"criterion": "Make a reservation for 6 people at 7 PM Friday"
},
{
"criterion": "Open TeamChat and navigate to #general channel"
},
{
"criterion": "Post the restaurant name, time, and address in #general"
},
{
"criterion": "Report the restaurant name"
},
{
"criterion": "Report the reservation confirmation details"
},
{
"criterion": "Confirm the TeamChat message was posted"
}
]
},
{
"name": "multi-002",
"goal": "Check my SkyTrip app for my upcoming SFO to JFK flight details \u2014 date, time, and terminal. Then open the Weather app and add New York to check the forecast for my travel dates. Create a note in Notes titled 'NYC Trip Prep' with the flight details and expected weather. What's the flight date, departure time, terminal, and weather summary?",
"apps": [