-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathevals.json
More file actions
3723 lines (3723 loc) · 103 KB
/
Copy pathevals.json
File metadata and controls
3723 lines (3723 loc) · 103 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
{
"skill_name": "generate-mcp-app-ui",
"common_assertions": [
"Output is a complete HTML file starting with <!DOCTYPE html>",
"Contains exactly one <script type=\"module\"> block",
"Uses named import: import { App } from ... (not default import: import App from ...)",
"Sets app.ontoolresult before calling app.connect()",
"Sets app.onhostcontextchanged before calling app.connect()",
"Sets app.onteardown before calling app.connect()",
"Uses result.structuredContent to access tool data (not result.data, not result directly)",
"Defines an escapeHtml function and uses it for user data in innerHTML",
"Does not contain window.openai",
"Does not use max-width on the main container",
"Uses var(--color Fluent design tokens for colors instead of hardcoded values",
"Includes a loading state with <fluent-spinner>",
"Includes an error state"
],
"evals": [
{
"id": 1,
"tier": "smoke",
"prompt": "Create a map widget showing tourist attractions in San Francisco.",
"data": {
"city": "San Francisco",
"attractions": [
{
"name": "Golden Gate Bridge",
"lat": 37.8199,
"lng": -122.4783,
"category": "Landmark",
"rating": 4.8,
"description": "Iconic suspension bridge spanning the Golden Gate strait"
},
{
"name": "Fisherman's Wharf",
"lat": 37.808,
"lng": -122.4177,
"category": "Entertainment",
"rating": 4.5,
"description": "Waterfront neighborhood with shops, restaurants, and sea lions"
},
{
"name": "Alcatraz Island",
"lat": 37.8267,
"lng": -122.423,
"category": "Historic",
"rating": 4.7,
"description": "Former federal prison on an island in San Francisco Bay"
},
{
"name": "Golden Gate Park",
"lat": 37.7694,
"lng": -122.4862,
"category": "Nature",
"rating": 4.6,
"description": "Large urban park with museums, gardens, and trails"
}
]
},
"assertions": [
"Uses a mapping library with interactive markers",
"Loads map library before Fluent UI to avoid global collision",
"Saves map library global reference to avoid Fluent overwriting it",
"Shows markers for all attractions",
"Map has explicit height"
]
},
{
"id": 2,
"tier": "smoke",
"prompt": "Create a weather widget showing current conditions and 5-day forecast.",
"data": {
"city": "Seattle",
"temperature": 58,
"humidity": 72,
"conditions": "Partly Cloudy",
"forecast": [
{
"day": "Mon",
"high": 62,
"low": 48,
"conditions": "Sunny"
},
{
"day": "Tue",
"high": 59,
"low": 47,
"conditions": "Cloudy"
},
{
"day": "Wed",
"high": 55,
"low": 44,
"conditions": "Rain"
},
{
"day": "Thu",
"high": 57,
"low": 45,
"conditions": "Partly Cloudy"
},
{
"day": "Fri",
"high": 61,
"low": 49,
"conditions": "Sunny"
}
]
},
"assertions": [
"Shows current temperature prominently",
"Shows 5-day forecast strip",
"Uses weather icons/emoji for conditions"
]
},
{
"id": 3,
"tier": "smoke",
"prompt": "Create a sales dashboard with KPI cards and a monthly revenue chart.",
"data": {
"period": "Q1 2026",
"total_revenue": 1245000,
"target": 1500000,
"growth_pct": 12.3,
"deals_closed": 47,
"avg_deal_size": 26489,
"pipeline_value": 890000,
"by_month": [
{
"month": "Jan",
"revenue": 385000,
"target": 500000
},
{
"month": "Feb",
"revenue": 425000,
"target": 500000
},
{
"month": "Mar",
"revenue": 435000,
"target": 500000
}
],
"by_region": [
{
"region": "West",
"revenue": 520000,
"pct": 42
},
{
"region": "East",
"revenue": 380000,
"pct": 31
},
{
"region": "Central",
"revenue": 210000,
"pct": 17
},
{
"region": "South",
"revenue": 135000,
"pct": 10
}
],
"top_reps": [
{
"name": "Jordan Lee",
"revenue": 285000,
"deals": 12
},
{
"name": "Sam Torres",
"revenue": 215000,
"deals": 9
},
{
"name": "Casey Morgan",
"revenue": 198000,
"deals": 11
}
]
},
"assertions": [
"Shows key metrics as cards (revenue, target, growth)",
"Includes a bar or line chart",
"Formats currency values with $ and commas"
]
},
{
"id": 4,
"tier": "smoke",
"prompt": "Create a task/ticket list showing sprint tasks with status and priority.",
"data": {
"project": "CloudSync v3.2",
"sprint": "Sprint 14",
"tasks": [
{
"id": "CS-421",
"title": "Implement dark mode toggle",
"status": "done",
"priority": "high",
"assignee": "Maria Garcia",
"points": 5
},
{
"id": "CS-422",
"title": "Fix sync conflict on mobile",
"status": "in_progress",
"priority": "critical",
"assignee": "Priya Patel",
"points": 8
},
{
"id": "CS-423",
"title": "Add bulk file operations",
"status": "in_progress",
"priority": "high",
"assignee": "James Wilson",
"points": 8
},
{
"id": "CS-424",
"title": "Update onboarding flow",
"status": "todo",
"priority": "medium",
"assignee": "Ana Costa",
"points": 3
},
{
"id": "CS-425",
"title": "Performance audit for large repos",
"status": "todo",
"priority": "medium",
"assignee": "Marcus Johnson",
"points": 5
},
{
"id": "CS-426",
"title": "Write API rate limit docs",
"status": "done",
"priority": "low",
"assignee": "Sarah Chen",
"points": 2
},
{
"id": "CS-427",
"title": "Webhook retry configuration",
"status": "in_progress",
"priority": "high",
"assignee": "Yuki Tanaka",
"points": 5
}
]
},
"assertions": [
"Shows task cards or rows",
"Color-codes by status or priority",
"Shows assignee and story points"
]
},
{
"id": 5,
"tier": "full",
"prompt": "Create a product comparison widget showing headphones side by side.",
"data": {
"category": "Wireless Headphones",
"products": [
{
"name": "Aura QuietMax 5",
"price": 349.99,
"rating": 4.7,
"noise_canceling": "Best-in-class ANC",
"battery": "30 hours",
"weight": "250g",
"connectivity": "Bluetooth 5.2, multipoint",
"highlights": [
"Industry-leading noise cancellation",
"Auto NC optimizer",
"Speak-to-chat"
]
},
{
"name": "Zenith AirSound Pro",
"price": 549,
"rating": 4.5,
"noise_canceling": "Active NC with transparency",
"battery": "20 hours",
"weight": "384g",
"connectivity": "Bluetooth 5.0, Zenith ecosystem",
"highlights": [
"Spatial audio with head tracking",
"Digital Crown controls",
"Premium build quality"
]
},
{
"name": "Voss NoiseFree Ultra",
"price": 429,
"rating": 4.6,
"noise_canceling": "CustomTune ANC",
"battery": "24 hours",
"weight": "250g",
"connectivity": "Bluetooth 5.3, multipoint",
"highlights": [
"Immersive audio mode",
"CustomTune technology",
"Plush comfort fit"
]
}
]
},
"assertions": [
"Shows products in columns or cards",
"Displays price, rating, and key specs",
"Highlights differences between products"
]
},
{
"id": 6,
"tier": "full",
"prompt": "Create an event schedule widget for a tech conference.",
"data": {
"conference": "TechConnect 2026",
"location": "Emerald City Conference Center",
"date": "March 25-27, 2026",
"events": [
{
"time": "9:00 AM",
"title": "Opening Keynote: The Next Platform Shift",
"speaker": "Diane Zhao",
"track": "Main Stage",
"duration": "60 min",
"day": "Day 1"
},
{
"time": "10:30 AM",
"title": "Building with AI Agents",
"speaker": "Ethan Novak",
"track": "AI Track",
"duration": "45 min",
"day": "Day 1"
},
{
"time": "11:30 AM",
"title": "Zero-Trust Architecture in Practice",
"speaker": "Rachel Tsai",
"track": "Security Track",
"duration": "45 min",
"day": "Day 1"
},
{
"time": "1:00 PM",
"title": "Lunch & Networking",
"speaker": null,
"track": "Main Hall",
"duration": "60 min",
"day": "Day 1"
},
{
"time": "2:00 PM",
"title": "The Future of WebAssembly",
"speaker": "Maya Chen",
"track": "Web Track",
"duration": "45 min",
"day": "Day 1"
},
{
"time": "3:00 PM",
"title": "Panel: Open Source Sustainability",
"speaker": "Multiple",
"track": "Main Stage",
"duration": "60 min",
"day": "Day 1"
},
{
"time": "9:00 AM",
"title": "Hands-on Workshop: MCP Apps",
"speaker": "Priya Anand",
"track": "Workshop Room A",
"duration": "120 min",
"day": "Day 2"
}
]
},
"assertions": [
"Shows events in chronological order",
"Displays time, title, speaker, and track",
"Visually distinguishes tracks"
]
},
{
"id": 7,
"tier": "full",
"prompt": "Create a code review summary widget for a pull request.",
"data": {
"pull_request": "#1247",
"title": "Add webhook retry configuration",
"author": "John Doe",
"branch": "feature/webhook-retry",
"base": "main",
"status": "ready_for_review",
"files_changed": 8,
"additions": 342,
"deletions": 45,
"comments": 5,
"summary": "Adds configurable retry logic for webhook deliveries with exponential backoff, max retries, and dead letter queue support.",
"files": [
{
"path": "src/webhooks/retry.ts",
"additions": 145,
"deletions": 0,
"status": "added"
},
{
"path": "src/webhooks/delivery.ts",
"additions": 52,
"deletions": 18,
"status": "modified"
},
{
"path": "src/webhooks/types.ts",
"additions": 28,
"deletions": 3,
"status": "modified"
},
{
"path": "src/config/defaults.ts",
"additions": 8,
"deletions": 0,
"status": "modified"
},
{
"path": "tests/webhooks/retry.test.ts",
"additions": 89,
"deletions": 0,
"status": "added"
},
{
"path": "tests/webhooks/delivery.test.ts",
"additions": 12,
"deletions": 20,
"status": "modified"
},
{
"path": "docs/webhooks.md",
"additions": 6,
"deletions": 2,
"status": "modified"
},
{
"path": "migrations/003_dead_letter_queue.sql",
"additions": 2,
"deletions": 2,
"status": "modified"
}
],
"checks": {
"build": "passed",
"tests": "passed",
"lint": "passed",
"coverage": "92%"
}
},
"assertions": [
"Shows PR title, author, and stats",
"Lists changed files with additions/deletions",
"Shows CI check statuses"
]
},
{
"id": 8,
"tier": "full",
"prompt": "Create a restaurant menu widget with grouped categories and dietary badges.",
"data": {
"restaurant": "Sakura Japanese Kitchen",
"cuisine": "Japanese",
"categories": [
{
"name": "Appetizers",
"items": [
{
"name": "Edamame",
"price": 6.5,
"description": "Steamed soybeans with sea salt",
"dietary": [
"vegan",
"gluten-free"
]
},
{
"name": "Gyoza",
"price": 9,
"description": "Pan-fried pork dumplings (6 pcs)",
"dietary": []
},
{
"name": "Miso Soup",
"price": 4.5,
"description": "Traditional soybean soup with tofu and seaweed",
"dietary": [
"vegetarian"
]
}
]
},
{
"name": "Sushi Rolls",
"items": [
{
"name": "Spicy Tuna Roll",
"price": 14,
"description": "Tuna, spicy mayo, cucumber, sesame",
"dietary": [
"contains-raw-fish"
]
},
{
"name": "Dragon Roll",
"price": 16.5,
"description": "Shrimp tempura, avocado, eel sauce",
"dietary": []
},
{
"name": "Veggie Roll",
"price": 11,
"description": "Avocado, cucumber, carrot, asparagus",
"dietary": [
"vegan"
]
}
]
},
{
"name": "Entrees",
"items": [
{
"name": "Chicken Teriyaki",
"price": 18,
"description": "Grilled chicken thigh with teriyaki glaze, rice, and vegetables",
"dietary": [
"gluten-free"
]
},
{
"name": "Tonkotsu Ramen",
"price": 16,
"description": "Rich pork bone broth, chashu, egg, noodles",
"dietary": []
},
{
"name": "Salmon Sashimi",
"price": 22,
"description": "Fresh Atlantic salmon, 12 pieces",
"dietary": [
"contains-raw-fish",
"gluten-free"
]
}
]
}
]
},
"assertions": [
"Groups items by category",
"Shows name, price, and description",
"Displays dietary badges (vegan, gluten-free, etc.)"
]
},
{
"id": 9,
"tier": "full",
"prompt": "Create a translation widget showing source and target text with alternatives.",
"data": {
"source_language": "English",
"target_language": "Japanese",
"source_text": "The quick brown fox jumps over the lazy dog. This sentence contains every letter of the English alphabet.",
"translation": "素早い茶色の狐が怠惰な犬を飛び越える。この文は英語のアルファベットの全ての文字を含んでいます。",
"alternatives": [
{
"text": "速い茶色のキツネが怠け者の犬を飛び越える。",
"note": "More literal translation"
},
{
"text": "茶色い狐がすばしこく怠け犬を飛び越えた。",
"note": "More natural Japanese phrasing"
}
],
"confidence": 0.94,
"word_count": {
"source": 18,
"target": 2
}
},
"assertions": [
"Shows source and target text",
"Displays language labels",
"Shows confidence indicator",
"Lists alternative translations"
]
},
{
"id": 10,
"tier": "full",
"prompt": "Create a dashboard overview widget showing app health metrics and service status.",
"data": {
"app": "CloudSync Pro",
"period": "Today",
"active_users": 2847,
"active_users_change": 5.2,
"files_synced": 145230,
"storage_used_gb": 1247,
"storage_limit_gb": 2000,
"api_calls": 89400,
"error_rate": 0.3,
"uptime_pct": 99.97,
"response_time_ms": 42,
"top_actions": [
{
"action": "File Upload",
"count": 45200
},
{
"action": "File Download",
"count": 38100
},
{
"action": "Share Link Created",
"count": 12400
},
{
"action": "Folder Sync",
"count": 9800
}
],
"status_indicators": [
{
"service": "Sync Engine",
"status": "healthy"
},
{
"service": "API Gateway",
"status": "healthy"
},
{
"service": "Search Index",
"status": "degraded"
},
{
"service": "Notification Service",
"status": "healthy"
}
]
},
"assertions": [
"Shows KPI cards for key metrics",
"Displays service status indicators",
"Shows top actions or activity"
]
},
{
"id": 11,
"tier": "full",
"prompt": "Create a stock portfolio widget showing holdings with price and daily change.",
"data": {
"portfolio_name": "Tech Growth Portfolio",
"total_value": 125430.5,
"daily_change": 1.23,
"holdings": [
{
"ticker": "APEX",
"name": "Apex Technologies Inc.",
"shares": 50,
"price": 178.52,
"change_pct": 1.85,
"day_high": 179.1,
"day_low": 175.3
},
{
"ticker": "MRDN",
"name": "Meridian Software Corp.",
"shares": 30,
"price": 415.2,
"change_pct": 0.92,
"day_high": 417,
"day_low": 412.5
},
{
"ticker": "LMNR",
"name": "Luminar Search Inc.",
"shares": 20,
"price": 141.8,
"change_pct": -0.45,
"day_high": 143.2,
"day_low": 140.9
},
{
"ticker": "VTXG",
"name": "Vertex Graphics Corp.",
"shares": 15,
"price": 875.3,
"change_pct": 3.21,
"day_high": 880,
"day_low": 855.1
},
{
"ticker": "PNCL",
"name": "Pinnacle Commerce Inc.",
"shares": 25,
"price": 182.5,
"change_pct": 0.65,
"day_high": 183.8,
"day_low": 181.2
}
]
},
"assertions": [
"Shows total portfolio value",
"Lists holdings with ticker, price, change %",
"Colors positive green and negative red using Fluent tokens"
]
},
{
"id": 12,
"tier": "full",
"prompt": "Create a flight status widget showing departure and arrival info.",
"data": {
"flight_number": "PA 1547",
"airline": "Pacific Airways",
"status": "On Time",
"departure": {
"airport": "SFO",
"city": "San Francisco",
"terminal": "3",
"gate": "G92",
"scheduled": "2026-03-19T14:30:00",
"actual": "2026-03-19T14:30:00"
},
"arrival": {
"airport": "JFK",
"city": "New York",
"terminal": "7",
"gate": "B21",
"scheduled": "2026-03-19T23:05:00",
"estimated": "2026-03-19T22:50:00"
},
"aircraft": "Skyline S900",
"duration": "5h 35m",
"distance_miles": 2586
},
"assertions": [
"Shows flight number and airline",
"Displays departure and arrival side by side",
"Shows status badge"
]
},
{
"id": 13,
"tier": "full",
"prompt": "Create a recipe card widget with ingredients, steps, and nutrition.",
"data": {
"name": "Classic Margherita Pizza",
"prep_time": "20 min",
"cook_time": "12 min",
"servings": 4,
"difficulty": "Easy",
"ingredients": [
{
"item": "Pizza dough",
"amount": "1 lb"
},
{
"item": "Crushed tomatoes",
"amount": "1 can (14 oz)"
},
{
"item": "Fresh mozzarella",
"amount": "8 oz"
},
{
"item": "Fresh basil leaves",
"amount": "10-12"
},
{
"item": "Extra virgin olive oil",
"amount": "2 tbsp"
},
{
"item": "Salt",
"amount": "to taste"
},
{
"item": "Garlic",
"amount": "2 cloves"
}
],
"steps": [
"Preheat oven to 500°F with pizza stone inside for 30 minutes.",
"Crush tomatoes by hand, mix with minced garlic and salt.",
"Stretch dough into 12-inch round on floured surface.",
"Spread thin layer of tomato sauce, leaving 1-inch border.",
"Tear mozzarella into pieces and distribute evenly.",
"Bake on pizza stone for 10-12 minutes until crust is golden.",
"Top with fresh basil and drizzle with olive oil. Serve immediately."
],
"nutrition": {
"calories": 285,
"protein": "12g",
"carbs": "36g",
"fat": "10g",
"fiber": "2g"
}
},
"assertions": [
"Shows recipe name and time badges",
"Lists ingredients",
"Shows numbered steps",
"Includes nutrition summary"
]
},
{
"id": 14,
"tier": "full",
"prompt": "Create a fitness tracker widget showing steps, calories, heart rate, and weekly trend.",
"data": {
"date": "2026-03-19",
"steps": 8432,
"step_goal": 10000,
"calories_burned": 2150,
"calories_goal": 2500,
"active_minutes": 45,
"active_goal": 60,
"heart_rate": {
"current": 72,
"resting": 62,
"max_today": 145,
"zone_minutes": {
"fat_burn": 18,
"cardio": 22,
"peak": 5
}
},
"sleep_last_night": {
"hours": 7.2,
"quality": "Good",
"deep_pct": 22,
"rem_pct": 25
},
"weekly_trend": [
{
"day": "Mon",
"steps": 9200
},
{
"day": "Tue",
"steps": 7800
},
{
"day": "Wed",
"steps": 11200
},
{
"day": "Thu",
"steps": 6500
},
{
"day": "Fri",
"steps": 8432
}
]
},
"assertions": [
"Shows progress toward goals",
"Displays heart rate info",
"Shows weekly trend visualization"
]
},
{
"id": 15,
"tier": "full",
"prompt": "Create a meeting notes widget with attendees, decisions, and action items.",
"data": {
"title": "Q1 Planning Review",
"date": "2026-03-18",
"duration": "45 min",
"attendees": [
{
"name": "Sarah Chen",
"role": "Product Manager"
},
{
"name": "James Wilson",
"role": "Engineering Lead"
},
{
"name": "Maria Garcia",
"role": "Design Lead"
},
{
"name": "Alex Kim",
"role": "Data Analyst"
}
],
"summary": "Reviewed Q1 progress and set priorities for remaining weeks. Agreed to prioritize mobile performance and defer the dashboard redesign.",
"decisions": [
{
"decision": "Prioritize mobile performance optimization over dashboard redesign",
"owner": "James Wilson"
},
{
"decision": "Increase user research budget by 15%",
"owner": "Sarah Chen"
},
{
"decision": "Ship dark mode by end of Q1",
"owner": "Maria Garcia"
}
],
"action_items": [
{
"task": "Draft mobile performance RFC",
"assignee": "James Wilson",
"due": "2026-03-22"
},
{
"task": "Schedule user interviews for new onboarding flow",
"assignee": "Sarah Chen",
"due": "2026-03-25"
},
{
"task": "Finalize dark mode color tokens",
"assignee": "Maria Garcia",
"due": "2026-03-20"
},
{
"task": "Pull Q1 engagement metrics report",
"assignee": "Alex Kim",
"due": "2026-03-21"
}
]
},
"assertions": [
"Shows meeting title and date",
"Lists attendees",
"Shows decisions with owners",
"Shows action items with assignees and due dates"
]
},
{
"id": 16,
"tier": "full",
"prompt": "Create a customer feedback widget showing ratings, sentiment, and top themes.",
"data": {
"product": "CloudSync Pro",
"period": "Last 30 days",
"total_reviews": 342,
"average_rating": 4.2,
"rating_distribution": {
"1": 19,
"2": 28,
"3": 52,
"4": 98,
"5": 145
},
"sentiment": {
"positive": 71,
"neutral": 16,
"negative": 13
},
"top_themes": [
{
"theme": "Easy to use",
"count": 89,
"sentiment": "positive"
},
{
"theme": "Fast sync speed",
"count": 67,
"sentiment": "positive"
},
{
"theme": "Pricing concerns",
"count": 45,
"sentiment": "negative"
},
{
"theme": "Great support team",
"count": 38,
"sentiment": "positive"
},
{
"theme": "Mobile app needs work",
"count": 31,
"sentiment": "negative"
}
],
"recent_comments": [
{
"rating": 5,