nika-init 0.64.0

Nika project scaffolding — course generator, workflow templates, showcase
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
//! Exercise content for Levels 7-12 (22 advanced exercises)
//!
//! Swiss Knife (3), Gone Rogue (3), Data Heist (4), Open Protocol (3),
//! Pixel Pirate (4), SuperNovae boss (5).
//!
//! Templates have `# TODO:` markers; solutions are complete YAML.
//! LLM exercises use `{{PROVIDER}}`/`{{MODEL}}` placeholders.

use super::exercises::ExerciseContent;

// ─── All 22 advanced exercises ───────────────────────────────────────────────

pub static EXERCISES_ADVANCED: &[ExerciseContent] = &[
    // ═══════════════════════════════════════════════════════════════════════════
    // LEVEL 07: Swiss Knife — Builtin tools via invoke:
    // ═══════════════════════════════════════════════════════════════════════════
    ExerciseContent {
        level_slug: "swiss-knife",
        exercise_num: 1,
        filename: "01-core-builtins.nika.yaml",
        template: SWISS_KNIFE_01_TEMPLATE,
        solution: SWISS_KNIFE_01_SOLUTION,
    },
    ExerciseContent {
        level_slug: "swiss-knife",
        exercise_num: 2,
        filename: "02-file-tools.nika.yaml",
        template: SWISS_KNIFE_02_TEMPLATE,
        solution: SWISS_KNIFE_02_SOLUTION,
    },
    ExerciseContent {
        level_slug: "swiss-knife",
        exercise_num: 3,
        filename: "03-sub-workflows.nika.yaml",
        template: SWISS_KNIFE_03_TEMPLATE,
        solution: SWISS_KNIFE_03_SOLUTION,
    },
    // ═══════════════════════════════════════════════════════════════════════════
    // LEVEL 08: Gone Rogue — Autonomous agents
    // ═══════════════════════════════════════════════════════════════════════════
    ExerciseContent {
        level_slug: "gone-rogue",
        exercise_num: 1,
        filename: "01-basic-agent.nika.yaml",
        template: GONE_ROGUE_01_TEMPLATE,
        solution: GONE_ROGUE_01_SOLUTION,
    },
    ExerciseContent {
        level_slug: "gone-rogue",
        exercise_num: 2,
        filename: "02-agent-skills.nika.yaml",
        template: GONE_ROGUE_02_TEMPLATE,
        solution: GONE_ROGUE_02_SOLUTION,
    },
    ExerciseContent {
        level_slug: "gone-rogue",
        exercise_num: 3,
        filename: "03-agent-guardrails.nika.yaml",
        template: GONE_ROGUE_03_TEMPLATE,
        solution: GONE_ROGUE_03_SOLUTION,
    },
    // ═══════════════════════════════════════════════════════════════════════════
    // LEVEL 09: Data Heist — Advanced fetch: extraction
    // ═══════════════════════════════════════════════════════════════════════════
    ExerciseContent {
        level_slug: "data-heist",
        exercise_num: 1,
        filename: "01-fetch-markdown.nika.yaml",
        template: DATA_HEIST_01_TEMPLATE,
        solution: DATA_HEIST_01_SOLUTION,
    },
    ExerciseContent {
        level_slug: "data-heist",
        exercise_num: 2,
        filename: "02-fetch-metadata.nika.yaml",
        template: DATA_HEIST_02_TEMPLATE,
        solution: DATA_HEIST_02_SOLUTION,
    },
    ExerciseContent {
        level_slug: "data-heist",
        exercise_num: 3,
        filename: "03-fetch-jsonpath.nika.yaml",
        template: DATA_HEIST_03_TEMPLATE,
        solution: DATA_HEIST_03_SOLUTION,
    },
    ExerciseContent {
        level_slug: "data-heist",
        exercise_num: 4,
        filename: "04-fetch-binary.nika.yaml",
        template: DATA_HEIST_04_TEMPLATE,
        solution: DATA_HEIST_04_SOLUTION,
    },
    // ═══════════════════════════════════════════════════════════════════════════
    // LEVEL 10: Open Protocol — MCP integration
    // ═══════════════════════════════════════════════════════════════════════════
    ExerciseContent {
        level_slug: "open-protocol",
        exercise_num: 1,
        filename: "01-mcp-basics.nika.yaml",
        template: OPEN_PROTOCOL_01_TEMPLATE,
        solution: OPEN_PROTOCOL_01_SOLUTION,
    },
    ExerciseContent {
        level_slug: "open-protocol",
        exercise_num: 2,
        filename: "02-mcp-tools.nika.yaml",
        template: OPEN_PROTOCOL_02_TEMPLATE,
        solution: OPEN_PROTOCOL_02_SOLUTION,
    },
    ExerciseContent {
        level_slug: "open-protocol",
        exercise_num: 3,
        filename: "03-mcp-novanet.nika.yaml",
        template: OPEN_PROTOCOL_03_TEMPLATE,
        solution: OPEN_PROTOCOL_03_SOLUTION,
    },
    // ═══════════════════════════════════════════════════════════════════════════
    // LEVEL 11: Pixel Pirate — Media pipeline
    // ═══════════════════════════════════════════════════════════════════════════
    ExerciseContent {
        level_slug: "pixel-pirate",
        exercise_num: 1,
        filename: "01-media-import.nika.yaml",
        template: PIXEL_PIRATE_01_TEMPLATE,
        solution: PIXEL_PIRATE_01_SOLUTION,
    },
    ExerciseContent {
        level_slug: "pixel-pirate",
        exercise_num: 2,
        filename: "02-media-transform.nika.yaml",
        template: PIXEL_PIRATE_02_TEMPLATE,
        solution: PIXEL_PIRATE_02_SOLUTION,
    },
    ExerciseContent {
        level_slug: "pixel-pirate",
        exercise_num: 3,
        filename: "03-media-pipeline.nika.yaml",
        template: PIXEL_PIRATE_03_TEMPLATE,
        solution: PIXEL_PIRATE_03_SOLUTION,
    },
    ExerciseContent {
        level_slug: "pixel-pirate",
        exercise_num: 4,
        filename: "04-vision.nika.yaml",
        template: PIXEL_PIRATE_04_TEMPLATE,
        solution: PIXEL_PIRATE_04_SOLUTION,
    },
    // ═══════════════════════════════════════════════════════════════════════════
    // LEVEL 12: SuperNovae — BOSS (all 5 verbs, everything combined)
    // ═══════════════════════════════════════════════════════════════════════════
    ExerciseContent {
        level_slug: "supernovae",
        exercise_num: 1,
        filename: "01-seo-mega-audit.nika.yaml",
        template: SUPERNOVAE_01_TEMPLATE,
        solution: SUPERNOVAE_01_SOLUTION,
    },
    ExerciseContent {
        level_slug: "supernovae",
        exercise_num: 2,
        filename: "02-image-pipeline.nika.yaml",
        template: SUPERNOVAE_02_TEMPLATE,
        solution: SUPERNOVAE_02_SOLUTION,
    },
    ExerciseContent {
        level_slug: "supernovae",
        exercise_num: 3,
        filename: "03-content-factory.nika.yaml",
        template: SUPERNOVAE_03_TEMPLATE,
        solution: SUPERNOVAE_03_SOLUTION,
    },
    ExerciseContent {
        level_slug: "supernovae",
        exercise_num: 4,
        filename: "04-research-agent.nika.yaml",
        template: SUPERNOVAE_04_TEMPLATE,
        solution: SUPERNOVAE_04_SOLUTION,
    },
    ExerciseContent {
        level_slug: "supernovae",
        exercise_num: 5,
        filename: "05-full-stack.nika.yaml",
        template: SUPERNOVAE_05_TEMPLATE,
        solution: SUPERNOVAE_05_SOLUTION,
    },
];

// ─── Lookup functions ────────────────────────────────────────────────────────

/// Get all advanced exercises for a given level slug
pub fn get_advanced_exercises(level_slug: &str) -> Vec<&'static ExerciseContent> {
    EXERCISES_ADVANCED
        .iter()
        .filter(|e| e.level_slug == level_slug)
        .collect()
}

/// Get a specific advanced exercise by level slug and exercise number
pub fn get_advanced_exercise(
    level_slug: &str,
    exercise_num: u8,
) -> Option<&'static ExerciseContent> {
    EXERCISES_ADVANCED
        .iter()
        .find(|e| e.level_slug == level_slug && e.exercise_num == exercise_num)
}

// ═════════════════════════════════════════════════════════════════════════════
// LEVEL 07: SWISS KNIFE
// ═════════════════════════════════════════════════════════════════════════════

// ── 07-01: Core Builtins ─────────────────────────────────────────────────────

const SWISS_KNIFE_01_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 7 — EXERCISE 1: Core Builtin Tools
# =============================================================================
#
# Use invoke: to call nika:log, nika:sleep, nika:assert, nika:emit.
# These run INSIDE the Nika process — no API cost, no network.
#
# TOOLS COVERED:
#   nika:sleep  — Pause execution (humantime: "1s", "500ms", "2m")
#   nika:log    — Structured log entry (trace|debug|info|warn|error)
#   nika:emit   — Custom event with JSON payload
#   nika:assert — Condition check (fails task if false)
#
# INSTRUCTIONS:
#   1. Fill in the TODO markers below
#   2. Run: nika check 01-core-builtins.nika.yaml
#   3. Run: nika run 01-core-builtins.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  # TODO: Use nika:sleep to pause for 1 second
  # Hint: params: { duration: "1s" }
  - id: pause
    invoke:
      tool: "nika:sleep"
      params:
        duration: "TODO: humantime format (e.g. 1s, 500ms, 2m)"

  # TODO: Use nika:log to write an info-level message
  - id: log_start
    depends_on: [pause]
    invoke:
      tool: "nika:log"
      params:
        level: "TODO: log level"
        message: "TODO: your message here"

  # TODO: Use nika:emit to emit a custom event with a payload
  - id: emit_progress
    depends_on: [log_start]
    invoke:
      tool: "nika:emit"
      params:
        name: "TODO: event name"
        payload:
          status: "TODO: custom fields"

  # TODO: Use nika:assert to check a condition
  - id: check
    depends_on: [emit_progress]
    invoke:
      tool: "nika:assert"
      params:
        condition: "TODO: true or false"
        message: "TODO: assertion message"
"##;

const SWISS_KNIFE_01_SOLUTION: &str = r##"# =============================================================================
# LEVEL 7 — EXERCISE 1: Core Builtin Tools
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  - id: pause
    invoke:
      tool: "nika:sleep"
      params:
        duration: "1s"

  - id: log_start
    depends_on: [pause]
    invoke:
      tool: "nika:log"
      params:
        level: "info"
        message: "Swiss Knife exercise started — all core builtins demo!"

  - id: emit_progress
    depends_on: [log_start]
    invoke:
      tool: "nika:emit"
      params:
        name: "exercise_progress"
        payload:
          level: 7
          exercise: 1
          status: "in_progress"
          tools_covered: 4

  - id: check
    depends_on: [emit_progress]
    invoke:
      tool: "nika:assert"
      params:
        condition: true
        message: "All 4 core builtins executed successfully"
"##;

// ── 07-02: File Tools ────────────────────────────────────────────────────────

const SWISS_KNIFE_02_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 7 — EXERCISE 2: File Tools
# =============================================================================
#
# The 5 file tools: nika:write, nika:read, nika:edit, nika:grep, nika:glob.
# Chain them: write a file, read it back, edit it, search it, find it.
#
# INSTRUCTIONS:
#   1. Fill in the TODO markers below
#   2. Run: nika run 02-file-tools.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  # TODO: Write a file using nika:write
  - id: write_file
    invoke:
      tool: "nika:write"
      params:
        file_path: "TODO: output path (e.g. .scratch/report.txt)"
        content: "TODO: file content"

  # TODO: Read the file back using nika:read
  - id: read_file
    depends_on: [write_file]
    invoke:
      tool: "nika:read"
      params:
        file_path: "TODO: same path as above"

  # TODO: Edit the file using nika:edit (find-and-replace)
  - id: edit_file
    depends_on: [read_file]
    invoke:
      tool: "nika:edit"
      params:
        file_path: "TODO: same path"
        old_string: "TODO: text to find (must be unique in file)"
        new_string: "TODO: replacement text"

  # TODO: Search for the edit using nika:grep
  - id: grep_file
    depends_on: [edit_file]
    invoke:
      tool: "nika:grep"
      params:
        pattern: "TODO: regex pattern to search"
        path: "TODO: directory to search in"

  # TODO: Find all .txt files using nika:glob
  - id: glob_files
    depends_on: [edit_file]
    invoke:
      tool: "nika:glob"
      params:
        pattern: "TODO: glob pattern (e.g. .scratch/*.txt)"
"##;

const SWISS_KNIFE_02_SOLUTION: &str = r##"# =============================================================================
# LEVEL 7 — EXERCISE 2: File Tools
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  # Ensure idempotent: remove file from previous runs
  - id: cleanup
    exec:
      command: rm -f .scratch/swiss-knife-report.txt

  - id: write_file
    depends_on: [cleanup]
    invoke:
      tool: "nika:write"
      params:
        file_path: ".scratch/swiss-knife-report.txt"
        content: |
          Swiss Knife Report
          ==================
          Status: draft
          Tools tested: write, read, edit, grep, glob

  - id: read_file
    depends_on: [write_file]
    invoke:
      tool: "nika:read"
      params:
        file_path: ".scratch/swiss-knife-report.txt"

  - id: edit_file
    depends_on: [read_file]
    invoke:
      tool: "nika:edit"
      params:
        file_path: ".scratch/swiss-knife-report.txt"
        old_string: "Status: draft"
        new_string: "Status: verified by nika:edit"

  - id: grep_file
    depends_on: [edit_file]
    invoke:
      tool: "nika:grep"
      params:
        pattern: "verified by nika:edit"
        path: ".scratch"

  - id: glob_files
    depends_on: [edit_file]
    invoke:
      tool: "nika:glob"
      params:
        pattern: "*.txt"
        path: ".scratch"
"##;

// ── 07-03: Sub-Workflows ─────────────────────────────────────────────────────

const SWISS_KNIFE_03_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 7 — EXERCISE 3: Sub-Workflows
# =============================================================================
#
# nika:run executes a nested workflow — workflow composition!
# The parent workflow waits for the child to complete and receives its output.
#
# INSTRUCTIONS:
#   1. Fill in the TODO markers below
#   2. Make sure 02-file-tools.nika.yaml exists in the same directory
#   3. Run: nika run 03-sub-workflows.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  # TODO: Log that we are starting the parent workflow
  - id: log_parent_start
    invoke:
      tool: "nika:log"
      params:
        level: "info"
        message: "TODO: starting message"

  # TODO: Use nika:run to invoke a child workflow
  # Hint: params: { workflow: "02-file-tools.nika.yaml" }
  - id: run_child
    depends_on: [log_parent_start]
    invoke:
      tool: "nika:run"
      params:
        workflow: "TODO: path to child workflow"

  # TODO: Log the result from the child workflow
  - id: log_parent_done
    depends_on: [run_child]
    with:
      child_result: $run_child
    invoke:
      tool: "nika:log"
      params:
        level: "info"
        message: "TODO: use {{with.child_result}} in your message"
"##;

const SWISS_KNIFE_03_SOLUTION: &str = r##"# =============================================================================
# LEVEL 7 — EXERCISE 3: Sub-Workflows
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  - id: log_parent_start
    invoke:
      tool: "nika:log"
      params:
        level: "info"
        message: "Parent workflow starting — will invoke child workflow"

  - id: run_child
    depends_on: [log_parent_start]
    invoke:
      tool: "nika:run"
      params:
        workflow: "02-file-tools.nika.yaml"

  - id: log_parent_done
    depends_on: [run_child]
    with:
      child_result: $run_child
    invoke:
      tool: "nika:log"
      params:
        level: "info"
        message: "Child workflow completed: {{with.child_result}}"
"##;

// ═════════════════════════════════════════════════════════════════════════════
// LEVEL 08: GONE ROGUE
// ═════════════════════════════════════════════════════════════════════════════

// ── 08-01: Basic Agent ───────────────────────────────────────────────────────

const GONE_ROGUE_01_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 8 — EXERCISE 1: Basic Agent
# =============================================================================
#
# agent: creates an LLM that loops autonomously, calling tools until done.
#
# HOW IT WORKS:
#   1. Agent receives a prompt (its mission)
#   2. LLM decides which tool to call (or responds with text)
#   3. Tool result is fed back to the LLM
#   4. Loop continues until: nika:complete, max_turns, or token_budget
#
# KEY FIELDS (inside agent: block):
#   prompt:        — The agent's mission
#   tools:         — Available tools: [builtin], [nika:log, nika:complete], etc.
#   max_turns:     — Max loop iterations (safety limit)
#   max_tokens:    — Max tokens per LLM response
#   token_budget:  — Total token budget across ALL turns
#   tool_choice:   — "auto" (default), "required", "none"
#
# provider: and model: go at WORKFLOW level (inherited by all tasks)
#
# INSTRUCTIONS:
#   1. Fill in the TODO markers below
#   2. Run: nika run 01-basic-agent.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

provider: "{{PROVIDER}}"
model: "{{MODEL}}"

tasks:
  - id: analyzer
    agent:
      prompt: |
        You are a project analysis agent. Your mission:
        1. Log "Starting analysis" using nika_log
        2. Analyze the Nika workflow engine architecture:
           - 5 verbs: infer, exec, fetch, invoke, agent
           - DAG scheduler for parallel execution
           - YAML DSL with schema validation
        3. Log your key findings
        4. Call nika_complete with a brief summary report
      # TODO: Set the tools the agent can use
      # Hint: [builtin] gives access to all nika:* tools
      tools: [builtin]  # TODO: change this value
      # TODO: Set safety limits
      max_turns: 5  # TODO: change this value (e.g. 8)
      max_tokens: 500  # TODO: change this value (e.g. 800)
      token_budget: 5000  # TODO: change this value (e.g. 6000)
"##;

const GONE_ROGUE_01_SOLUTION: &str = r##"# =============================================================================
# LEVEL 8 — EXERCISE 1: Basic Agent
# =============================================================================

schema: "nika/workflow@0.12"

provider: "{{PROVIDER}}"
model: "{{MODEL}}"

tasks:
  - id: analyzer
    agent:
      prompt: |
        You are a project analysis agent. Your mission:
        1. Log "Starting analysis" using nika_log
        2. Analyze the Nika workflow engine architecture:
           - 5 verbs: infer, exec, fetch, invoke, agent
           - DAG scheduler for parallel execution
           - YAML DSL with schema validation
        3. Log your key findings
        4. Call nika_complete with a brief summary report
      tools: [builtin]
      max_turns: 8
      max_tokens: 800
      token_budget: 6000
      tool_choice: auto
    artifact:
      path: output/analysis-report.md
"##;

// ── 08-02: Agent Skills ──────────────────────────────────────────────────────

const GONE_ROGUE_02_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 8 — EXERCISE 2: Agent Skills & Completion
# =============================================================================
#
# completion: controls HOW the agent signals "I'm done":
#   explicit — Agent must call nika:complete (recommended for complex tasks)
#   natural  — Completes when LLM stops making tool calls
#   pattern  — Completes when output matches a regex
#
# Chain agents: second agent receives first agent's output via with: bindings.
#
# INSTRUCTIONS:
#   1. Set completion modes on both agents
#   2. Run: nika run 02-agent-skills.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

provider: "{{PROVIDER}}"
model: "{{MODEL}}"

tasks:
  # Agent 1: Research (explicit completion)
  - id: explicit_agent
    agent:
      prompt: |
        Research 3 innovative use cases for YAML workflow engines.
        For each, provide a title and 2-sentence description.
        Log each use case with nika_log.
        When done, call nika_complete with your ranked list.
      tools: [builtin]
      max_turns: 6
      max_tokens: 800
      token_budget: 5000
      # TODO: Set completion mode to explicit
      completion:
        mode: explicit  # TODO: change this value

  # Agent 2: Refine (chained — uses output from Agent 1)
  - id: refine_agent
    depends_on: [explicit_agent]
    with:
      research: $explicit_agent
    agent:
      prompt: |
        Review these use cases and pick the single best one:
        {{with.research}}
        Expand it into a 200-word pitch.
        Call nika_complete with your final pitch.
      tools: [builtin]
      max_turns: 4
      max_tokens: 600
      token_budget: 3000
      # TODO: Set completion mode with signal configuration
      completion:
        mode: explicit  # TODO: change this value
        signal:
          tool: nika:complete
          fields:
            required: [result]
            optional: [confidence]
"##;

const GONE_ROGUE_02_SOLUTION: &str = r##"# =============================================================================
# LEVEL 8 — EXERCISE 2: Agent Skills & Completion
# =============================================================================

schema: "nika/workflow@0.12"

provider: "{{PROVIDER}}"
model: "{{MODEL}}"

tasks:
  - id: explicit_agent
    agent:
      prompt: |
        Research 3 innovative use cases for YAML workflow engines.
        For each, provide a title and 2-sentence description.
        Log each use case with nika_log.
        When done, call nika_complete with your ranked list.
      tools: [builtin]
      max_turns: 6
      max_tokens: 800
      token_budget: 5000
      completion:
        mode: explicit

  - id: refine_agent
    depends_on: [explicit_agent]
    with:
      research: $explicit_agent
    agent:
      prompt: |
        Review these use cases and pick the single best one:
        {{with.research}}
        Expand it into a 200-word pitch.
        Call nika_complete with your final pitch.
      tools: [builtin]
      max_turns: 4
      max_tokens: 600
      token_budget: 3000
      completion:
        mode: explicit
        signal:
          tool: nika:complete
          fields:
            required: [result]
            optional: [confidence]
    artifact:
      path: output/best-use-case-pitch.md
"##;

// ── 08-03: Agent Guardrails ──────────────────────────────────────────────────

const GONE_ROGUE_03_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 8 — EXERCISE 3: Agent Guardrails & Limits
# =============================================================================
#
# guardrails: validate agent output BEFORE accepting it:
#   type: length — Check word count bounds (min_words, max_words)
#   type: regex  — Check output matches a pattern
#   type: schema — Validate JSON against a JSON Schema
#   type: llm    — Use a secondary LLM for validation
#
# limits: control cost and prevent runaway agents:
#   max_turns:         — Hard cap on loop iterations
#   max_cost_usd:      — Dollar cost ceiling
#   max_duration_secs: — Wall-clock timeout
#
# INSTRUCTIONS:
#   1. Add guardrails (length + regex) and limits
#   2. Run: nika run 03-agent-guardrails.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

provider: "{{PROVIDER}}"
model: "{{MODEL}}"

tasks:
  - id: writer_agent
    agent:
      prompt: |
        Write a technical article about declarative workflow engines.
        Requirements:
        - Between 200 and 400 words
        - Must start with "In the era of"
        - Must include at least one code example
        Log your progress, then call nika_complete with the article.
      tools: [builtin]
      max_turns: 8
      max_tokens: 1000
      token_budget: 8000
      # TODO: Add guardrails to validate output quality
      guardrails:
        # TODO: Length guardrail (200-400 words)
        - type: length  # TODO: change this value
          min_words: 100  # TODO: change this value
          max_words: 500  # TODO: change this value
          on_failure: retry
        # TODO: Regex guardrail (must start with "In the era of")
        - type: regex  # TODO: change this value
          pattern: ".*"  # TODO: change this regex
          message: "Output did not match expected pattern"  # TODO: change this message
          on_failure: retry
      # TODO: Add cost control limits
      limits:
        max_turns: 10  # TODO: change this value
        max_cost_usd: 0.50  # TODO: change this value
        max_duration_secs: 120  # TODO: change this value
      completion:
        mode: explicit
"##;

const GONE_ROGUE_03_SOLUTION: &str = r##"# =============================================================================
# LEVEL 8 — EXERCISE 3: Agent Guardrails & Limits
# =============================================================================

schema: "nika/workflow@0.12"

provider: "{{PROVIDER}}"
model: "{{MODEL}}"

tasks:
  - id: writer_agent
    agent:
      prompt: |
        Write a technical article about declarative workflow engines.
        Requirements:
        - Between 200 and 400 words
        - Must start with "In the era of"
        - Must include at least one code example
        Log your progress, then call nika_complete with the article.
      tools: [builtin]
      max_turns: 8
      max_tokens: 1000
      token_budget: 8000
      guardrails:
        - type: length
          min_words: 200
          max_words: 400
          on_failure: retry
        - type: regex
          pattern: "^In the era of"
          message: "Article must begin with 'In the era of'"
          on_failure: retry
      limits:
        max_turns: 10
        max_cost_usd: 0.50
        max_duration_secs: 120
      completion:
        mode: explicit
    artifact:
      path: output/declarative-article.md
"##;

// ═════════════════════════════════════════════════════════════════════════════
// LEVEL 09: DATA HEIST
// ═════════════════════════════════════════════════════════════════════════════

// ── 09-01: Fetch Markdown ────────────────────────────────────────────────────

const DATA_HEIST_01_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 9 — EXERCISE 1: Fetch Markdown & Article
# =============================================================================
#
# extract: markdown — Full HTML to clean Markdown (htmd library)
# extract: article  — Main content only, strips nav/ads/sidebars (Readability)
#
# REQUIRES: cargo install nika --features "fetch-markdown,fetch-article"
#
# INSTRUCTIONS:
#   1. Set the correct extract modes
#   2. Run: nika run 01-fetch-markdown.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

provider: "{{PROVIDER}}"
model: "{{MODEL}}"

tasks:
  # TODO: Fetch a webpage and convert to full Markdown
  - id: as_markdown
    fetch:
      url: "https://blog.rust-lang.org/"
      extract: markdown  # TODO: change this value
      timeout: 20

  # TODO: Fetch the same page but extract only the article content
  - id: as_article
    fetch:
      url: "https://blog.rust-lang.org/"
      extract: markdown  # TODO: change this value
      timeout: 20

  # Compare both outputs with an LLM
  - id: compare
    depends_on: [as_markdown, as_article]
    with:
      markdown: $as_markdown
      article: $as_article
    infer:
      prompt: |
        Compare these two extraction modes:

        ## Full Markdown (first 2000 chars)
        {{with.markdown | first(2000)}}

        ## Article Only (first 2000 chars)
        {{with.article | first(2000)}}

        Which is more useful for LLM consumption and why? Be specific.
      max_tokens: 500
"##;

const DATA_HEIST_01_SOLUTION: &str = r##"# =============================================================================
# LEVEL 9 — EXERCISE 1: Fetch Markdown & Article
# =============================================================================

schema: "nika/workflow@0.12"

provider: "{{PROVIDER}}"
model: "{{MODEL}}"

tasks:
  - id: as_markdown
    fetch:
      url: "https://blog.rust-lang.org/"
      extract: markdown
      timeout: 20
    artifact:
      path: output/rust-blog-full.md

  - id: as_article
    fetch:
      url: "https://blog.rust-lang.org/"
      extract: article
      timeout: 20
    artifact:
      path: output/rust-blog-article.md

  - id: compare
    depends_on: [as_markdown, as_article]
    with:
      markdown: $as_markdown
      article: $as_article
    infer:
      prompt: |
        Compare these two extraction modes:

        ## Full Markdown (first 2000 chars)
        {{with.markdown | first(2000)}}

        ## Article Only (first 2000 chars)
        {{with.article | first(2000)}}

        Which is more useful for LLM consumption and why? Be specific.
      max_tokens: 500
    artifact:
      path: output/extraction-comparison.md
"##;

// ── 09-02: Fetch Metadata ────────────────────────────────────────────────────

const DATA_HEIST_02_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 9 — EXERCISE 2: Fetch Metadata, Links & Selectors
# =============================================================================
#
# extract: metadata — OG tags, Twitter Cards, JSON-LD, SEO tags (JSON)
# extract: links    — Link classification: internal/external, nav/content/footer
# extract: selector — Raw HTML of elements matching a CSS selector
#                     (requires selector: field)
#
# REQUIRES: cargo install nika --features fetch-html
#
# INSTRUCTIONS:
#   1. Set the correct extract modes and add the CSS selector
#   2. Run: nika run 02-fetch-metadata.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  # TODO: Extract metadata (OG, Twitter, JSON-LD, SEO)
  - id: get_metadata
    fetch:
      url: "https://github.com"
      extract: metadata  # TODO: change this value
      timeout: 15

  # TODO: Extract and classify all links on the page
  - id: get_links
    fetch:
      url: "https://github.com"
      extract: links  # TODO: change this value
      timeout: 15

  # TODO: Extract specific HTML elements using a CSS selector
  # The selector: field is REQUIRED with extract: selector
  - id: get_headings
    fetch:
      url: "https://httpbin.org/html"
      extract: selector  # TODO: change this value
      selector: "h1"  # TODO: change this value
      timeout: 15
"##;

const DATA_HEIST_02_SOLUTION: &str = r##"# =============================================================================
# LEVEL 9 — EXERCISE 2: Fetch Metadata, Links & Selectors
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  - id: get_metadata
    fetch:
      url: "https://github.com"
      extract: metadata
      timeout: 15
    artifact:
      path: output/github-metadata.json
      format: json

  - id: get_links
    fetch:
      url: "https://github.com"
      extract: links
      timeout: 15
    artifact:
      path: output/github-links.json
      format: json

  - id: get_headings
    fetch:
      url: "https://httpbin.org/html"
      extract: selector
      selector: "h1, p"
      timeout: 15
    artifact:
      path: output/httpbin-headings.html
"##;

// ── 09-03: Fetch JSONPath ────────────────────────────────────────────────────

const DATA_HEIST_03_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 9 — EXERCISE 3: JSONPath, Feed & llm_txt
# =============================================================================
#
# extract: jsonpath — Query JSON APIs with JSONPath (zero deps, always available)
#                     Requires selector: with a JSONPath expression
# extract: feed    — Parse RSS/Atom/JSON Feed (requires fetch-feed feature)
# extract: llm_txt — AI-era content discovery (checks /.well-known/llm.txt)
#
# INSTRUCTIONS:
#   1. Set the correct extract modes and JSONPath selector
#   2. Run: nika run 03-fetch-jsonpath.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  # TODO: Query a JSON API using JSONPath
  - id: json_query
    fetch:
      url: "https://api.github.com"
      extract: jsonpath  # TODO: change this value
      selector: "$.current_user_url"  # TODO: change this value
      timeout: 10

  # TODO: Parse an RSS feed into structured data
  - id: rss_feed
    fetch:
      url: "https://blog.rust-lang.org/feed.xml"
      extract: feed  # TODO: change this value
      timeout: 15

  # TODO: Check for AI content discovery files (llm.txt)
  - id: llm_discovery
    fetch:
      url: "https://docs.anthropic.com"
      extract: llm_txt  # TODO: change this value
      timeout: 10
"##;

const DATA_HEIST_03_SOLUTION: &str = r##"# =============================================================================
# LEVEL 9 — EXERCISE 3: JSONPath, Feed & llm_txt
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  - id: json_query
    fetch:
      url: "https://api.github.com"
      extract: jsonpath
      selector: "$.current_user_url"
      timeout: 10
    artifact:
      path: output/github-jsonpath.json
      format: json

  - id: rss_feed
    fetch:
      url: "https://blog.rust-lang.org/feed.xml"
      extract: feed
      timeout: 15
    artifact:
      path: output/rust-feed.json
      format: json

  - id: llm_discovery
    fetch:
      url: "https://docs.anthropic.com"
      extract: llm_txt
      timeout: 10
    artifact:
      path: output/anthropic-llm-txt.md
"##;

// ── 09-04: Fetch Binary ──────────────────────────────────────────────────────

const DATA_HEIST_04_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 9 — EXERCISE 4: Binary & Full Response
# =============================================================================
#
# response: binary — Download raw bytes into CAS, returns the hash
#                    Perfect for images, PDFs, binary files
# response: full   — JSON with { status, headers, body, url }
#                    Perfect for debugging redirects, checking security headers
#
# No feature flags needed — both are always available.
#
# INSTRUCTIONS:
#   1. Set the correct response modes
#   2. Run: nika run 04-fetch-binary.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  # TODO: Download a binary file (image) into CAS
  - id: download_image
    fetch:
      url: "https://httpbin.org/image/png"
      response: binary  # TODO: change this value
      timeout: 15

  # TODO: Get the full HTTP response including headers
  - id: inspect_headers
    fetch:
      url: "https://httpbin.org/headers"
      response: full  # TODO: change this value
      timeout: 10

  # Log both results
  - id: log_results
    depends_on: [download_image, inspect_headers]
    with:
      image: $download_image
      headers: $inspect_headers
    invoke:
      tool: "nika:log"
      params:
        level: "info"
        message: "Image hash: {{with.image}} | Headers: {{with.headers}}"
"##;

const DATA_HEIST_04_SOLUTION: &str = r##"# =============================================================================
# LEVEL 9 — EXERCISE 4: Binary & Full Response
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  - id: download_image
    fetch:
      url: "https://httpbin.org/image/png"
      response: binary
      timeout: 15
    artifact:
      path: output/downloaded-image.png
      format: binary

  - id: inspect_headers
    fetch:
      url: "https://httpbin.org/headers"
      response: full
      timeout: 10
    artifact:
      path: output/full-response.json
      format: json

  - id: log_results
    depends_on: [download_image, inspect_headers]
    with:
      image: $download_image
      headers: $inspect_headers
    invoke:
      tool: "nika:log"
      params:
        level: "info"
        message: "Image hash: {{with.image}} | Headers: {{with.headers}}"
"##;

// ═════════════════════════════════════════════════════════════════════════════
// LEVEL 10: OPEN PROTOCOL
// ═════════════════════════════════════════════════════════════════════════════

// ── 10-01: MCP Basics ────────────────────────────────────────────────────────

const OPEN_PROTOCOL_01_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 10 — EXERCISE 1: MCP Basics
# =============================================================================
#
# mcp: configures external tool servers (Model Context Protocol).
# invoke: calls MCP tools by name — Nika routes to the right server.
#
# The MCP handshake:
#   1. Nika launches the MCP server process
#   2. Server exposes its tool list via the MCP protocol
#   3. Nika discovers tools at runtime (list_directory, read_file, etc.)
#   4. invoke: with mcp: field routes calls to the named server
#
# SETUP: npm install -g @anthropic/mcp-filesystem
#
# INSTRUCTIONS:
#   1. Configure the MCP server and fill in tool names
#   2. Run: nika run 01-mcp-basics.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

# TODO: Add MCP server configuration
mcp:
  filesystem:
    command: "npx"
    args:
      - "-y"
      - "TODO: MCP server package (e.g. @anthropic/mcp-filesystem)"

tasks:
  # TODO: List files using an MCP tool
  - id: list_files
    invoke:
      mcp: filesystem
      tool: "TODO: MCP tool name (e.g. list_directory)"
      params:
        path: "TODO: directory to list"

  # TODO: Read a file using an MCP tool
  - id: read_file
    depends_on: [list_files]
    invoke:
      mcp: filesystem
      tool: "TODO: MCP tool name (e.g. read_file)"
      params:
        path: "TODO: file path to read"
"##;

const OPEN_PROTOCOL_01_SOLUTION: &str = r##"# =============================================================================
# LEVEL 10 — EXERCISE 1: MCP Basics
# =============================================================================

schema: "nika/workflow@0.12"

mcp:
  filesystem:
    command: "npx"
    args:
      - "-y"
      - "@anthropic/mcp-filesystem"

tasks:
  - id: list_files
    invoke:
      mcp: filesystem
      tool: "list_directory"
      params:
        path: "."

  - id: read_file
    depends_on: [list_files]
    invoke:
      mcp: filesystem
      tool: "read_file"
      params:
        path: "./01-mcp-basics.nika.yaml"
    artifact:
      path: output/mcp-read-result.txt
"##;

// ── 10-02: MCP Tools ─────────────────────────────────────────────────────────

const OPEN_PROTOCOL_02_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 10 — EXERCISE 2: Agent + MCP Tools
# =============================================================================
#
# An agent that uses MCP tools AUTONOMOUSLY.
# The agent discovers tools at runtime via the MCP protocol.
#
# Inside agent: block:
#   mcp: [server_name]  — List of MCP servers the agent can access
#   tools: [builtin]    — Also include builtin nika:* tools
#
# The agent sees BOTH MCP tools and builtin tools in its tool list.
#
# INSTRUCTIONS:
#   1. Give the agent access to MCP tools and builtin tools
#   2. Run: nika run 02-mcp-tools.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

provider: "{{PROVIDER}}"
model: "{{MODEL}}"

mcp:
  filesystem:
    command: "npx"
    args:
      - "-y"
      - "@anthropic/mcp-filesystem"

tasks:
  - id: explorer
    agent:
      prompt: |
        You are a file explorer agent. Your mission:
        1. List the current directory
        2. Read any .yaml files you find
        3. Log what you discover with nika_log
        4. Complete with a summary of the project structure
      # TODO: Give the agent access to MCP servers
      # Hint: mcp: [filesystem]
      mcp: [filesystem]  # TODO: change this value
      # TODO: Also include builtin tools
      tools: [builtin]  # TODO: change this value
      max_turns: 10
      max_tokens: 600
      token_budget: 5000
      completion:
        mode: explicit
"##;

const OPEN_PROTOCOL_02_SOLUTION: &str = r##"# =============================================================================
# LEVEL 10 — EXERCISE 2: Agent + MCP Tools
# =============================================================================

schema: "nika/workflow@0.12"

provider: "{{PROVIDER}}"
model: "{{MODEL}}"

mcp:
  filesystem:
    command: "npx"
    args:
      - "-y"
      - "@anthropic/mcp-filesystem"

tasks:
  - id: explorer
    agent:
      prompt: |
        You are a file explorer agent. Your mission:
        1. List the current directory
        2. Read any .yaml files you find
        3. Log what you discover with nika_log
        4. Complete with a summary of the project structure
      mcp: [filesystem]
      tools: [builtin]
      max_turns: 10
      max_tokens: 600
      token_budget: 5000
      completion:
        mode: explicit
    artifact:
      path: output/exploration-report.md
"##;

// ── 10-03: MCP NovaNet ───────────────────────────────────────────────────────

const OPEN_PROTOCOL_03_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 10 — EXERCISE 3: NovaNet Knowledge Graph via MCP
# =============================================================================
#
# NovaNet is Nika's brain — a knowledge graph accessible ONLY via MCP.
# Zero Cypher rule: Nika NEVER uses raw Cypher. Use invoke: only.
#
# NovaNet MCP tools:
#   novanet:search   — Search nodes by label/properties
#   novanet:get      — Get a node by ID
#   novanet:create   — Create a new node
#   novanet:link     — Create an arc between nodes
#   novanet:traverse — Walk the graph from a node
#   novanet:query    — Run a stored query by name
#   novanet:schema   — Get the graph schema
#
# SETUP: Requires NovaNet MCP server running
#
# INSTRUCTIONS:
#   1. Configure the NovaNet MCP server and fill in tool params
#   2. Run: nika run 03-mcp-novanet.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

# TODO: Configure the NovaNet MCP server
mcp:
  novanet:
    command: "TODO: server command"
    args:
      - "TODO: server arguments"

tasks:
  # TODO: Get the knowledge graph schema
  - id: get_schema
    invoke:
      mcp: novanet
      tool: "novanet:schema"
      params: {}

  # TODO: Search for nodes by label
  - id: search_nodes
    depends_on: [get_schema]
    invoke:
      mcp: novanet
      tool: "novanet:search"
      params:
        label: "TODO: node label to search for"
        limit: 10

  # TODO: Create a new knowledge node
  - id: create_node
    depends_on: [search_nodes]
    invoke:
      mcp: novanet
      tool: "novanet:create"
      params:
        label: "TODO: node label"
        properties:
          name: "TODO: node name"
          description: "TODO: node description"
"##;

const OPEN_PROTOCOL_03_SOLUTION: &str = r##"# =============================================================================
# LEVEL 10 — EXERCISE 3: NovaNet Knowledge Graph via MCP
# =============================================================================

schema: "nika/workflow@0.12"

mcp:
  novanet:
    command: "cargo"
    args:
      - "run"
      - "--manifest-path"
      - "../novanet/Cargo.toml"
      - "--"
      - "mcp"

tasks:
  - id: get_schema
    invoke:
      mcp: novanet
      tool: "novanet:schema"
      params: {}
    artifact:
      path: output/novanet-schema.json
      format: json

  - id: search_nodes
    depends_on: [get_schema]
    invoke:
      mcp: novanet
      tool: "novanet:search"
      params:
        label: "Concept"
        limit: 10
    artifact:
      path: output/novanet-search.json
      format: json

  - id: create_node
    depends_on: [search_nodes]
    invoke:
      mcp: novanet
      tool: "novanet:create"
      params:
        label: "Concept"
        properties:
          name: "Workflow Orchestration"
          description: "The practice of coordinating multiple tasks in a defined sequence or DAG"
    artifact:
      path: output/novanet-created.json
      format: json
"##;

// ═════════════════════════════════════════════════════════════════════════════
// LEVEL 11: PIXEL PIRATE
// ═════════════════════════════════════════════════════════════════════════════

// ── 11-01: Media Import ──────────────────────────────────────────────────────

const PIXEL_PIRATE_01_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 11 — EXERCISE 1: Media Import & Analysis
# =============================================================================
#
# CAS = Content-Addressable Store. Files stored by their hash.
# Tier 1 tools (always-on, no feature flag):
#   nika:dimensions    — Image width/height from headers (~0.1ms)
#   nika:thumbhash     — 25-byte compact image placeholder
#   nika:dominant_color — Color palette extraction
#
# CAS hash pattern: {{with.alias.hash}}
#   When fetch response: binary stores a file, it returns a JSON object.
#   .hash is the CAS hash for use with all nika:* tools.
#
# INSTRUCTIONS:
#   1. Fill in the correct tool names and CAS hash references
#   2. Run: nika run 01-media-import.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  # Download an image into CAS
  - id: download
    fetch:
      url: "https://httpbin.org/image/png"
      response: binary
      timeout: 15

  # TODO: Get image dimensions (reads only headers, ~0.1ms)
  - id: get_dims
    depends_on: [download]
    with:
      img: $download
    invoke:
      tool: "nika:dimensions"  # TODO: change this value
      params:
        hash: "{{with.img.hash}}"  # TODO: change this value

  # TODO: Generate a thumbhash placeholder
  - id: get_thumbhash
    depends_on: [download]
    with:
      img: $download
    invoke:
      tool: "nika:thumbhash"  # TODO: change this value
      params:
        hash: "{{with.img.hash}}"  # TODO: change this value

  # TODO: Extract dominant colors
  - id: get_colors
    depends_on: [download]
    with:
      img: $download
    invoke:
      tool: "nika:dominant_color"  # TODO: change this value
      params:
        hash: "{{with.img.hash}}"  # TODO: change this value
        count: 5
"##;

const PIXEL_PIRATE_01_SOLUTION: &str = r##"# =============================================================================
# LEVEL 11 — EXERCISE 1: Media Import & Analysis
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  - id: download
    fetch:
      url: "https://httpbin.org/image/png"
      response: binary
      timeout: 15

  - id: get_dims
    depends_on: [download]
    with:
      img: $download
    invoke:
      tool: "nika:dimensions"
      params:
        hash: "{{with.img.hash}}"
    artifact:
      path: output/dimensions.json
      format: json

  - id: get_thumbhash
    depends_on: [download]
    with:
      img: $download
    invoke:
      tool: "nika:thumbhash"
      params:
        hash: "{{with.img.hash}}"
    artifact:
      path: output/thumbhash.json
      format: json

  - id: get_colors
    depends_on: [download]
    with:
      img: $download
    invoke:
      tool: "nika:dominant_color"
      params:
        hash: "{{with.img.hash}}"
        count: 5
    artifact:
      path: output/colors.json
      format: json
"##;

// ── 11-02: Media Transform ───────────────────────────────────────────────────

const PIXEL_PIRATE_02_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 11 — EXERCISE 2: Media Transforms
# =============================================================================
#
# Tier 2 tools (media-core feature):
#   nika:thumbnail — SIMD-accelerated Lanczos3 resize
#   nika:convert   — Format conversion (PNG/JPEG/WebP)
#   nika:optimize  — Lossless PNG optimization (oxipng)
#
# Each reads from CAS and writes the result back to CAS.
#
# REQUIRES: cargo install nika --features media-core
#
# INSTRUCTIONS:
#   1. Fill in tool names and CAS hash references
#   2. Run: nika run 02-media-transform.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  - id: download
    fetch:
      url: "https://picsum.photos/800/600.jpg"
      response: binary
      timeout: 20
      retry:
        max_attempts: 2
        backoff_ms: 1000
        multiplier: 2.0

  # TODO: Create a 256px thumbnail — change tool name and params
  - id: make_thumbnail
    depends_on: [download]
    with:
      photo: $download
    invoke:
      tool: "nika:thumbnail"  # TODO: change this value
      params:
        hash: "{{with.photo.hash}}"  # TODO: change this value
        width: 256  # TODO: change this value
        format: "jpeg"  # TODO: change this value (png|jpeg|webp)

  # TODO: Convert the original to WebP format — change tool name and params
  - id: convert_webp
    depends_on: [download]
    with:
      photo: $download
    invoke:
      tool: "nika:convert"  # TODO: change this value
      params:
        hash: "{{with.photo.hash}}"  # TODO: change this value
        format: "webp"  # TODO: change this value

  # TODO: Convert to PNG first (optimize only works on PNG!) — change tool name and params
  - id: convert_png
    depends_on: [download]
    with:
      photo: $download
    invoke:
      tool: "nika:convert"  # TODO: change this value
      params:
        hash: "{{with.photo.hash}}"  # TODO: change this value
        format: "png"  # TODO: change this value

  # TODO: Optimize the PNG losslessly — change tool name and params
  - id: optimize
    depends_on: [convert_png]
    with:
      png: $convert_png
    invoke:
      tool: "nika:optimize"  # TODO: change this value
      params:
        hash: "{{with.png.hash}}"  # TODO: change this value
        level: 3
"##;

const PIXEL_PIRATE_02_SOLUTION: &str = r##"# =============================================================================
# LEVEL 11 — EXERCISE 2: Media Transforms
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  - id: download
    fetch:
      url: "https://picsum.photos/800/600.jpg"
      response: binary
      timeout: 20
      retry:
        max_attempts: 2
        backoff_ms: 1000
        multiplier: 2.0

  - id: make_thumbnail
    depends_on: [download]
    with:
      photo: $download
    invoke:
      tool: "nika:thumbnail"
      params:
        hash: "{{with.photo.hash}}"
        width: 256
        format: "jpeg"
    artifact:
      path: output/photo-thumb-256.jpg
      format: binary

  - id: convert_webp
    depends_on: [download]
    with:
      photo: $download
    invoke:
      tool: "nika:convert"
      params:
        hash: "{{with.photo.hash}}"
        format: "webp"
        quality: 85
    artifact:
      path: output/photo-converted.webp
      format: binary

  - id: convert_png
    depends_on: [download]
    with:
      photo: $download
    invoke:
      tool: "nika:convert"
      params:
        hash: "{{with.photo.hash}}"
        format: "png"
    artifact:
      path: output/photo-converted.png
      format: binary

  - id: optimize
    depends_on: [convert_png]
    with:
      png: $convert_png
    invoke:
      tool: "nika:optimize"
      params:
        hash: "{{with.png.hash}}"
        level: 3
        strip: true
    artifact:
      path: output/photo-optimized.png
      format: binary
"##;

// ── 11-03: Media Pipeline ────────────────────────────────────────────────────

const PIXEL_PIRATE_03_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 11 — EXERCISE 3: Pipeline Chain
# =============================================================================
#
# nika:pipeline chains operations in-memory:
# 1 CAS read -> N in-memory transforms -> 1 CAS write.
# Budget charged ONCE for the final output, not per step.
#
# Available pipeline steps:
#   thumbnail: resize (width, height)
#   strip:     remove EXIF/metadata (decode + re-encode)
#   convert:   change format (png, jpeg, webp) with optional quality
#   optimize:  lossless PNG compression (level 1-6)
#
# INSTRUCTIONS:
#   1. Chain 3 operations in a single pipeline
#   2. Run: nika run 03-media-pipeline.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  - id: download
    fetch:
      url: "https://picsum.photos/1200/800.jpg"
      response: binary
      timeout: 20

  # TODO: Chain 3 operations in one pipeline call
  - id: process
    depends_on: [download]
    with:
      photo: $download
    invoke:
      tool: "nika:pipeline"
      params:
        hash: "TODO: CAS hash reference"
        steps:
          # TODO: Step 1 — Resize to 400px wide
          - op: "TODO: operation name"
            width: "TODO: pixels"
          # TODO: Step 2 — Strip EXIF metadata for privacy
          - op: "TODO: operation name"
          # TODO: Step 3 — Convert to WebP for web delivery
          - op: "TODO: operation name"
            format: "TODO: target format"

  - id: log_result
    depends_on: [process]
    with:
      result: $process
    invoke:
      tool: "nika:log"
      params:
        level: "info"
        message: "Pipeline complete: {{with.result}}"
"##;

const PIXEL_PIRATE_03_SOLUTION: &str = r##"# =============================================================================
# LEVEL 11 — EXERCISE 3: Pipeline Chain
# =============================================================================

schema: "nika/workflow@0.12"

tasks:
  - id: download
    fetch:
      url: "https://picsum.photos/1200/800.jpg"
      response: binary
      timeout: 20

  - id: process
    depends_on: [download]
    with:
      photo: $download
    invoke:
      tool: "nika:pipeline"
      params:
        hash: "{{with.photo.hash}}"
        steps:
          - op: thumbnail
            width: 400
          - op: strip
          - op: convert
            format: webp
            quality: 85
    artifact:
      path: output/pipeline-result.webp
      format: binary

  - id: log_result
    depends_on: [process]
    with:
      result: $process
    invoke:
      tool: "nika:log"
      params:
        level: "info"
        message: "Pipeline complete: {{with.result}}"
"##;

// ── 11-04: Vision ────────────────────────────────────────────────────────────

const PIXEL_PIRATE_04_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 11 — EXERCISE 4: Multimodal Vision
# =============================================================================
#
# content: sends images to vision-capable LLMs (infer: verb).
# CAS hashes are auto-resolved to base64 — paths never leak to APIs.
#
# content: array with two part types:
#   - type: image   — CAS image (source: hash, detail: low|high)
#   - type: text    — Text prompt
#
# Supported providers: Claude, OpenAI, Gemini, Groq, xAI
# NOT supported: DeepSeek (returns VisionNotSupported error)
#
# INSTRUCTIONS:
#   1. Build a content: array with an image part and a text part
#   2. Run: nika run 04-vision.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"

provider: "{{PROVIDER}}"
model: "{{MODEL}}"

tasks:
  - id: download_photo
    fetch:
      url: "https://picsum.photos/800/600.jpg"
      response: binary
      timeout: 20

  # TODO: Send the image to an LLM for description
  - id: describe_image
    depends_on: [download_photo]
    with:
      photo: $download_photo
    infer:
      # TODO: Use content: array with image + text parts
      content:
        - type: image  # TODO: change this value
          source: "{{with.photo.hash}}"  # TODO: change this value
          detail: high  # TODO: change this value (low or high)
        - type: text  # TODO: change this value
          text: "Describe this image in detail"  # TODO: change this value
      max_tokens: 500
"##;

const PIXEL_PIRATE_04_SOLUTION: &str = r##"# =============================================================================
# LEVEL 11 — EXERCISE 4: Multimodal Vision
# =============================================================================

schema: "nika/workflow@0.12"

provider: "{{PROVIDER}}"
model: "{{MODEL}}"

tasks:
  - id: download_photo
    fetch:
      url: "https://picsum.photos/800/600.jpg"
      response: binary
      timeout: 20

  - id: describe_image
    depends_on: [download_photo]
    with:
      photo: $download_photo
    infer:
      content:
        - type: image
          source: "{{with.photo.hash}}"
          detail: high
        - type: text
          text: |
            Describe this image in detail. Include:
            1. The main subject and composition
            2. Colors and lighting
            3. Mood and atmosphere
            4. Any text or notable details
      max_tokens: 500
      temperature: 0.3
    artifact:
      path: output/image-description.md
"##;

// ═════════════════════════════════════════════════════════════════════════════
// LEVEL 12: SUPERNOVAE (BOSS)
// ═════════════════════════════════════════════════════════════════════════════

// ── 12-01: SEO Mega Audit ────────────────────────────────────────────────────

const SUPERNOVAE_01_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 12 — BOSS 1: SEO Mega Audit
# =============================================================================
#
# Combines: fetch (4 extract modes), infer (analysis), agent (guardrails)
# This is a BOSS exercise — it requires concepts from Levels 2, 5, 8, 9.
#
# INSTRUCTIONS:
#   1. Set correct extract and response modes for all fetch tasks
#   2. Add guardrails and completion mode to the agent
#   3. Run: nika run 01-seo-mega-audit.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"
provider: "{{PROVIDER}}"
model: "{{MODEL}}"

tasks:
  # Phase 1: Scrape with 4 different extract/response modes
  - id: scrape_metadata
    fetch:
      url: "https://github.com"
      extract: metadata  # TODO: change this — mode for SEO metadata (OG, Twitter, JSON-LD)
      timeout: 20

  - id: scrape_content
    fetch:
      url: "https://github.com"
      extract: markdown  # TODO: change this — mode for clean Markdown
      timeout: 20

  - id: scrape_links
    fetch:
      url: "https://github.com"
      extract: links  # TODO: change this — mode for link classification
      timeout: 20

  - id: check_headers
    fetch:
      url: "https://github.com"
      response: full  # TODO: change this — mode for full HTTP response
      timeout: 15

  # Phase 2: LLM Analysis (combines all scraped data)
  - id: seo_analysis
    depends_on: [scrape_metadata, scrape_content, scrape_links, check_headers]
    with:
      metadata: $scrape_metadata
      content: $scrape_content
      links: $scrape_links
      headers: $check_headers
    infer:
      prompt: |
        Analyze this site's SEO:

        ## Metadata
        {{with.metadata}}

        ## Content (first 2000 chars)
        {{with.content | first(2000)}}

        ## Links
        {{with.links}}

        ## Headers
        {{with.headers}}

        Score each area /100 and list top 3 issues.
      temperature: 0.3
      max_tokens: 2000

  # Phase 3: Agent executive summary with guardrails
  - id: executive_summary
    depends_on: [seo_analysis]
    with:
      analysis: $seo_analysis
    agent:
      prompt: |
        Create an executive SEO summary from this analysis:
        {{with.analysis}}

        Include: scorecard, critical issues, quick wins, 30-day roadmap.
        Call nika_complete with your final report.
      tools: [builtin]
      max_turns: 6
      max_tokens: 2000
      token_budget: 10000
      # TODO: Add guardrails (length + regex for "roadmap")
      guardrails:
        - type: length  # TODO: change this
          min_words: 100  # TODO: change this
          on_failure: retry
        - type: regex  # TODO: change this
          pattern: "(?i)roadmap"  # TODO: change this — regex for "roadmap"
          message: "Must include a roadmap section"  # TODO: change this
          on_failure: retry
      # TODO: Set completion mode
      completion:
        mode: explicit  # TODO: change this
"##;

const SUPERNOVAE_01_SOLUTION: &str = r##"# =============================================================================
# LEVEL 12 — BOSS 1: SEO Mega Audit
# =============================================================================

schema: "nika/workflow@0.12"
provider: "{{PROVIDER}}"
model: "{{MODEL}}"

tasks:
  - id: scrape_metadata
    fetch:
      url: "https://github.com"
      extract: metadata
      timeout: 20
    artifact:
      path: output/seo-metadata.json
      format: json

  - id: scrape_content
    fetch:
      url: "https://github.com"
      extract: markdown
      timeout: 20

  - id: scrape_links
    fetch:
      url: "https://github.com"
      extract: links
      timeout: 20
    artifact:
      path: output/seo-links.json
      format: json

  - id: check_headers
    fetch:
      url: "https://github.com"
      response: full
      timeout: 15
    artifact:
      path: output/seo-headers.json
      format: json

  - id: seo_analysis
    depends_on: [scrape_metadata, scrape_content, scrape_links, check_headers]
    with:
      metadata: $scrape_metadata
      content: $scrape_content
      links: $scrape_links
      headers: $check_headers
    infer:
      prompt: |
        Analyze this site's SEO:

        ## Metadata
        {{with.metadata}}

        ## Content (first 2000 chars)
        {{with.content | first(2000)}}

        ## Links
        {{with.links}}

        ## Headers
        {{with.headers}}

        Score each area /100 and list top 3 issues.
      temperature: 0.3
      max_tokens: 2000
    artifact:
      path: output/seo-analysis.md

  - id: executive_summary
    depends_on: [seo_analysis]
    with:
      analysis: $seo_analysis
    agent:
      prompt: |
        Create an executive SEO summary from this analysis:
        {{with.analysis}}

        Include: scorecard, critical issues, quick wins, 30-day roadmap.
        Call nika_complete with your final report.
      tools: [builtin]
      max_turns: 6
      max_tokens: 2000
      token_budget: 10000
      guardrails:
        - type: length
          min_words: 200
          on_failure: retry
        - type: regex
          pattern: "(?i)roadmap"
          message: "Must include a roadmap section"
          on_failure: retry
      completion:
        mode: explicit
    artifact:
      path: output/seo-executive-summary.md
"##;

// ── 12-02: Image Pipeline ────────────────────────────────────────────────────

const SUPERNOVAE_02_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 12 — BOSS 2: Image Pipeline
# =============================================================================
#
# Combines: fetch binary, media tools, nika:pipeline, nika:chart, vision
# This is a BOSS exercise — it requires concepts from Levels 9, 11.
#
# INSTRUCTIONS:
#   1. Complete the vision report task with content: array
#   2. Run: nika run 02-image-pipeline.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"
provider: "{{PROVIDER}}"
model: "{{MODEL}}"

tasks:
  # Phase 1: Download images into CAS
  - id: download_png
    fetch:
      url: "https://httpbin.org/image/png"
      response: binary
      timeout: 15

  - id: download_photo
    fetch:
      url: "https://picsum.photos/800/600.jpg"
      response: binary
      timeout: 20

  # Phase 2: Analyze images
  - id: analyze_png
    depends_on: [download_png]
    with:
      img: $download_png
    invoke:
      tool: "nika:dimensions"
      params:
        hash: "{{with.img.hash}}"

  - id: colors_photo
    depends_on: [download_photo]
    with:
      img: $download_photo
    invoke:
      tool: "nika:dominant_color"
      params:
        hash: "{{with.img.hash}}"
        count: 5

  # Phase 3: Process with pipeline
  - id: process_photo
    depends_on: [download_photo]
    with:
      photo: $download_photo
    invoke:
      tool: "nika:pipeline"
      params:
        hash: "{{with.photo.hash}}"
        steps:
          - op: thumbnail
            width: 400
          - op: strip
          - op: convert
            format: webp

  # Phase 4: Generate comparison chart
  - id: chart
    invoke:
      tool: "nika:chart"
      params:
        type: "bar"
        title: "Image Processing Results"
        width: 800
        height: 500
        series:
          - name: "Original"
            data: [20000, 150000]
          - name: "Processed"
            data: [8000, 25000]
        labels: ["PNG", "Photo"]

  # TODO: Phase 5 — Vision report: send chart to LLM with analysis data
  - id: vision_report
    depends_on: [analyze_png, colors_photo, process_photo, chart]
    with:
      dims: $analyze_png
      colors: $colors_photo
      pipeline: $process_photo
      chart_img: $chart
    infer:
      # TODO: Build content: array with image (chart) + text (analysis)
      content:
        - type: image  # TODO: change this — image part
          source: "{{with.chart_img.hash}}"  # TODO: change this — chart CAS hash
          detail: high
        - type: text  # TODO: change this — text part
          text: |
            Analyze this image processing pipeline:
            Dimensions: {{with.dims}}
            Colors: {{with.colors}}
            Pipeline result: {{with.pipeline}}
            Write a technical summary with recommendations.
      max_tokens: 1500
"##;

const SUPERNOVAE_02_SOLUTION: &str = r##"# =============================================================================
# LEVEL 12 — BOSS 2: Image Pipeline
# =============================================================================

schema: "nika/workflow@0.12"
provider: "{{PROVIDER}}"
model: "{{MODEL}}"

tasks:
  - id: download_png
    fetch:
      url: "https://httpbin.org/image/png"
      response: binary
      timeout: 15

  - id: download_photo
    fetch:
      url: "https://picsum.photos/800/600.jpg"
      response: binary
      timeout: 20

  - id: analyze_png
    depends_on: [download_png]
    with:
      img: $download_png
    invoke:
      tool: "nika:dimensions"
      params:
        hash: "{{with.img.hash}}"

  - id: colors_photo
    depends_on: [download_photo]
    with:
      img: $download_photo
    invoke:
      tool: "nika:dominant_color"
      params:
        hash: "{{with.img.hash}}"
        count: 5

  - id: process_photo
    depends_on: [download_photo]
    with:
      photo: $download_photo
    invoke:
      tool: "nika:pipeline"
      params:
        hash: "{{with.photo.hash}}"
        steps:
          - op: thumbnail
            width: 400
          - op: strip
          - op: convert
            format: webp
    artifact:
      path: output/processed-photo.webp
      format: binary

  - id: chart
    invoke:
      tool: "nika:chart"
      params:
        type: "bar"
        title: "Image Processing Results"
        width: 800
        height: 500
        series:
          - name: "Original"
            data: [20000, 150000]
          - name: "Processed"
            data: [8000, 25000]
        labels: ["PNG", "Photo"]

  - id: vision_report
    depends_on: [analyze_png, colors_photo, process_photo, chart]
    with:
      dims: $analyze_png
      colors: $colors_photo
      pipeline: $process_photo
      chart_img: $chart
    infer:
      content:
        - type: image
          source: "{{with.chart_img.hash}}"
          detail: high
        - type: text
          text: |
            Analyze this image processing pipeline:

            ## Size Comparison Chart (above)
            Bar chart showing original vs processed file sizes.

            ## Image Dimensions
            {{with.dims}}

            ## Dominant Colors
            {{with.colors}}

            ## Pipeline Result
            {{with.pipeline}}

            Write a technical summary covering:
            1. Size reduction percentages
            2. Color palette analysis
            3. Pipeline efficiency
            4. Recommendations for web delivery
      max_tokens: 1500
      temperature: 0.3
    artifact:
      path: output/vision-pipeline-report.md
"##;

// ── 12-03: Content Factory ───────────────────────────────────────────────────

const SUPERNOVAE_03_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 12 — BOSS 3: Content Factory
# =============================================================================
#
# Combines: infer (structured), for_each (parallel), inputs, translation
# This is a BOSS exercise — it requires concepts from Levels 3, 5, 6.
#
# INSTRUCTIONS:
#   1. Add for_each to the write_sections task
#   2. Run: nika run 03-content-factory.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"
provider: "{{PROVIDER}}"
model: "{{MODEL}}"

inputs:
  topic:
    type: string
    default: "AI Workflow Engines in 2025"
  audience:
    type: string
    default: "senior developers"

tasks:
  # Phase 1: Research via fetch
  - id: research
    fetch:
      url: "https://news.ycombinator.com/"
      extract: article
      timeout: 20

  # Phase 2: Generate structured outline (JSON)
  - id: outline
    depends_on: [research]
    with:
      sources: $research
    infer:
      prompt: |
        Create a blog post outline about "{{inputs.topic}}" for {{inputs.audience}}.
        Use these sources: {{with.sources | first(2000)}}
        Return JSON with: title, sections (array of {heading, key_points, word_count_target})
      response_format: json
      temperature: 0.5
      max_tokens: 1000

  # TODO: Phase 3 — Write sections in parallel using for_each
  - id: write_sections
    depends_on: [outline]
    with:
      plan: $outline
    # TODO: Add for_each to iterate over outline sections
    # Hint: for_each: "$outline.sections"
    for_each: "$outline.sections"  # TODO: change this — iterate over sections
    # TODO: Name the loop variable
    as: section  # TODO: change this — loop variable name
    # TODO: Set parallelism
    concurrency: 3  # TODO: change this — number of parallel tasks
    infer:
      prompt: |
        Write this section of a blog post about "{{inputs.topic}}":
        Heading: {{with.section.heading}}
        Key points: {{with.section.key_points}}
        Target: {{with.section.word_count_target}} words
      temperature: 0.6
      max_tokens: 1200

  # Phase 4: Translate to 3 languages (for_each over language list)
  - id: translate
    depends_on: [write_sections]
    with:
      content: $write_sections
    for_each:
      - { code: "fr-FR", name: "French" }
      - { code: "es-ES", name: "Spanish" }
      - { code: "de-DE", name: "German" }
    as: lang
    concurrency: 3
    infer:
      prompt: |
        Translate this into {{with.lang.name}} ({{with.lang.code}}):
        {{with.content | first(3000)}}
        Keep Markdown formatting. Technical terms stay in English.
      temperature: 0.3
      max_tokens: 3000
"##;

const SUPERNOVAE_03_SOLUTION: &str = r##"# =============================================================================
# LEVEL 12 — BOSS 3: Content Factory
# =============================================================================

schema: "nika/workflow@0.12"
provider: "{{PROVIDER}}"
model: "{{MODEL}}"

inputs:
  topic:
    type: string
    default: "AI Workflow Engines in 2025"
  audience:
    type: string
    default: "senior developers"

tasks:
  - id: research
    fetch:
      url: "https://news.ycombinator.com/"
      extract: article
      timeout: 20
    artifact:
      path: output/research.md

  - id: outline
    depends_on: [research]
    with:
      sources: $research
    infer:
      prompt: |
        Create a blog post outline about "{{inputs.topic}}" for {{inputs.audience}}.
        Use these sources: {{with.sources | first(2000)}}
        Return JSON with: title, sections (array of {heading, key_points, word_count_target})
      response_format: json
      temperature: 0.5
      max_tokens: 1000
    artifact:
      path: output/outline.json
      format: json

  - id: write_sections
    depends_on: [outline]
    with:
      plan: $outline
    for_each: "$outline.sections"
    as: section
    concurrency: 3
    infer:
      prompt: |
        Write this section of a blog post about "{{inputs.topic}}":
        Heading: {{with.section.heading}}
        Key points: {{with.section.key_points}}
        Target: {{with.section.word_count_target}} words
      temperature: 0.6
      max_tokens: 1200
    artifact:
      path: "output/sections/{{with.section.heading | lower | trim}}.md"

  - id: translate
    depends_on: [write_sections]
    with:
      content: $write_sections
    for_each:
      - { code: "fr-FR", name: "French" }
      - { code: "es-ES", name: "Spanish" }
      - { code: "de-DE", name: "German" }
    as: lang
    concurrency: 3
    infer:
      prompt: |
        Translate this into {{with.lang.name}} ({{with.lang.code}}):
        {{with.content | first(3000)}}
        Keep Markdown formatting. Technical terms stay in English.
      temperature: 0.3
      max_tokens: 3000
    artifact:
      path: "output/translations/{{with.lang.code}}.md"
"##;

// ── 12-04: Research Agent ────────────────────────────────────────────────────

const SUPERNOVAE_04_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 12 — BOSS 4: Research Agent
# =============================================================================
#
# Combines: agent + MCP + fetch + with: bindings
# This is a BOSS exercise — it requires concepts from Levels 8, 9, 10.
#
# INSTRUCTIONS:
#   1. Configure the agent with MCP access, guardrails, and completion
#   2. Run: nika run 04-research-agent.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"
provider: "{{PROVIDER}}"
model: "{{MODEL}}"

mcp:
  filesystem:
    command: "npx"
    args:
      - "-y"
      - "@anthropic/mcp-filesystem"

tasks:
  # Phase 1: Gather data from multiple sources
  - id: scrape_source
    fetch:
      url: "https://blog.rust-lang.org/"
      extract: markdown
      timeout: 20

  - id: scrape_feed
    fetch:
      url: "https://blog.rust-lang.org/feed.xml"
      extract: feed
      timeout: 15

  # Phase 2: Agent analyzes everything
  - id: research_agent
    depends_on: [scrape_source, scrape_feed]
    with:
      source: $scrape_source
      feed: $scrape_feed
    agent:
      prompt: |
        You are a senior technical researcher. Your mission:

        ## Source Material
        {{with.source | first(3000)}}

        ## Feed Entries
        {{with.feed | first(2000)}}

        Tasks:
        1. Log "Starting research" with nika_log
        2. Analyze the source material for key trends
        3. Use the filesystem MCP tools to write your findings
        4. Produce a research brief with 5 key insights
        5. Call nika_complete with your final research brief
      # TODO: Configure MCP access and tools
      mcp: [filesystem]  # TODO: change this — MCP server list
      tools: [builtin]  # TODO: change this — tool list
      max_turns: 10
      max_tokens: 1500
      token_budget: 12000
      # TODO: Set completion mode
      completion:
        mode: explicit  # TODO: change this
      # TODO: Add guardrails (length + keyword check)
      guardrails:
        - type: length  # TODO: change this — length or regex?
          min_words: 100  # TODO: change this
          on_failure: retry
        - type: regex  # TODO: change this — length or regex?
          pattern: "(?i)insight"  # TODO: change this — regex to require 'insights' keyword
          message: "Research brief must include insights"  # TODO: change this — error message
          on_failure: retry

  # Phase 3: Summary
  - id: summary
    depends_on: [research_agent]
    with:
      research: $research_agent
    infer:
      prompt: |
        Summarize this research brief in 200 words:
        {{with.research}}
      max_tokens: 400
"##;

const SUPERNOVAE_04_SOLUTION: &str = r##"# =============================================================================
# LEVEL 12 — BOSS 4: Research Agent
# =============================================================================

schema: "nika/workflow@0.12"
provider: "{{PROVIDER}}"
model: "{{MODEL}}"

mcp:
  filesystem:
    command: "npx"
    args:
      - "-y"
      - "@anthropic/mcp-filesystem"

tasks:
  - id: scrape_source
    fetch:
      url: "https://blog.rust-lang.org/"
      extract: markdown
      timeout: 20
    artifact:
      path: output/rust-blog.md

  - id: scrape_feed
    fetch:
      url: "https://blog.rust-lang.org/feed.xml"
      extract: feed
      timeout: 15
    artifact:
      path: output/rust-feed.json
      format: json

  - id: research_agent
    depends_on: [scrape_source, scrape_feed]
    with:
      source: $scrape_source
      feed: $scrape_feed
    agent:
      prompt: |
        You are a senior technical researcher. Your mission:

        ## Source Material
        {{with.source | first(3000)}}

        ## Feed Entries
        {{with.feed | first(2000)}}

        Tasks:
        1. Log "Starting research" with nika_log
        2. Analyze the source material for key trends
        3. Use the filesystem MCP tools to write your findings
        4. Produce a research brief with 5 key insights
        5. Call nika_complete with your final research brief
      mcp: [filesystem]
      tools: [builtin]
      max_turns: 10
      max_tokens: 1500
      token_budget: 12000
      completion:
        mode: explicit
      guardrails:
        - type: length
          min_words: 150
          on_failure: retry
        - type: regex
          pattern: "(?i)insight"
          message: "Research brief must include insights"
          on_failure: retry
    artifact:
      path: output/research-brief.md

  - id: summary
    depends_on: [research_agent]
    with:
      research: $research_agent
    infer:
      prompt: |
        Summarize this research brief in 200 words:
        {{with.research}}
      max_tokens: 400
      temperature: 0.3
    artifact:
      path: output/research-summary.md
"##;

// ── 12-05: Full Stack ────────────────────────────────────────────────────────

const SUPERNOVAE_05_TEMPLATE: &str = r##"# =============================================================================
# LEVEL 12 — BOSS FINAL: Full Stack
# =============================================================================
#
# ALL 5 VERBS in one workflow: exec, fetch, invoke, infer, agent.
# Plus: MCP, media pipeline, structured output, vision, limits.
#
# NEW CONCEPT — limits: block (inside agent:)
#   max_turns:         — Max loop iterations
#   max_tokens:        — Total token budget (input + output)
#   max_cost_usd:      — Cost ceiling per execution
#   max_duration_secs: — Wall-clock timeout
#
# This is the FINAL BOSS. It requires mastery of ALL 11 previous levels.
#
# INSTRUCTIONS:
#   1. Configure the final agent with MCP, tools, guardrails, limits
#   2. Run: nika run 05-full-stack.nika.yaml
# =============================================================================

schema: "nika/workflow@0.12"
provider: "{{PROVIDER}}"
model: "{{MODEL}}"

mcp:
  filesystem:
    command: "npx"
    args:
      - "-y"
      - "@anthropic/mcp-filesystem"

inputs:
  topic:
    type: string
    default: "The Future of AI Orchestration"

tasks:
  # ── VERB 1: exec ─────────────────────────────────────────────
  - id: setup
    exec:
      command: |
        echo "Starting full-stack workflow"
        echo "Topic: {{inputs.topic}}"
        date +%Y-%m-%dT%H:%M:%S
      shell: true

  # ── VERB 2: fetch ────────────────────────────────────────────
  - id: scrape_data
    fetch:
      url: "https://blog.rust-lang.org/"
      extract: markdown
      timeout: 20

  - id: download_image
    fetch:
      url: "https://httpbin.org/image/png"
      response: binary
      timeout: 15

  # ── VERB 3: invoke (builtin tools) ──────────────────────────
  - id: log_start
    depends_on: [setup]
    invoke:
      tool: "nika:log"
      params:
        level: "info"
        message: "Full-stack workflow initiated"

  - id: process_image
    depends_on: [download_image]
    with:
      img: $download_image
    invoke:
      tool: "nika:pipeline"
      params:
        hash: "{{with.img.hash}}"
        steps:
          - op: thumbnail
            width: 300
          - op: convert
            format: webp

  - id: generate_chart
    invoke:
      tool: "nika:chart"
      params:
        type: "bar"
        title: "Workflow Verb Usage"
        width: 800
        height: 500
        series:
          - name: "Frequency"
            data: [15, 12, 20, 8, 5]
        labels: ["exec", "fetch", "invoke", "infer", "agent"]

  # ── VERB 4: infer (structured + vision) ─────────────────────
  - id: analyze
    depends_on: [scrape_data, generate_chart]
    with:
      content: $scrape_data
      chart: $generate_chart
    infer:
      content:
        - type: image
          source: "{{with.chart.hash}}"
          detail: high
        - type: text
          text: |
            Analyze this chart and content about {{inputs.topic}}:
            {{with.content | first(2000)}}
            Return JSON with: summary, key_insights (array), score (1-100)
      response_format: json
      max_tokens: 1000

  # ── VERB 5: agent ────────────────────────────────────────────
  # TODO: Configure the final synthesis agent
  - id: final_agent
    depends_on: [analyze, process_image, log_start]
    with:
      analysis: $analyze
      image: $process_image
    agent:
      prompt: |
        You are the final synthesis agent. You have:

        ## Analysis Results
        {{with.analysis}}

        ## Processed Image
        {{with.image}}

        Create a comprehensive report covering:
        1. Data analysis findings
        2. Image processing results
        3. Overall assessment
        4. Next steps

        Use nika_log for progress. Call nika_complete when done.
      # TODO: Give the agent MCP access
      mcp: [filesystem]  # TODO: change this — MCP server list
      # TODO: Give the agent builtin tools
      tools: [builtin]  # TODO: change this — tool list
      # TODO: Set per-response token limit
      max_tokens: 1500  # TODO: change this
      # TODO: Set completion mode
      completion:
        mode: explicit  # TODO: change this
      # TODO: Add guardrails
      guardrails:
        - type: length  # TODO: change this
          min_words: 200  # TODO: change this
          on_failure: retry
      # TODO: Add limits block (turns, cost, duration, token budget)
      # This is the BOSS way to control agent resources.
      limits:
        max_turns: 12  # TODO: change this
        max_tokens: 15000  # TODO: change this — total token budget
        max_cost_usd: 0.50  # TODO: change this
        max_duration_secs: 120  # TODO: change this

  # Completion log (exec)
  - id: done
    depends_on: [final_agent]
    with:
      result: $final_agent
    exec:
      command: |
        echo "============================================"
        echo "  FULL STACK WORKFLOW COMPLETE"
        echo "  5 verbs. MCP. Media. Vision. Agent."
        echo "  Report: {{with.result | length}} chars"
        echo "============================================"
      shell: true
"##;

const SUPERNOVAE_05_SOLUTION: &str = r##"# =============================================================================
# LEVEL 12 — BOSS FINAL: Full Stack
# =============================================================================

schema: "nika/workflow@0.12"
provider: "{{PROVIDER}}"
model: "{{MODEL}}"

mcp:
  filesystem:
    command: "npx"
    args:
      - "-y"
      - "@anthropic/mcp-filesystem"

inputs:
  topic:
    type: string
    default: "The Future of AI Orchestration"

tasks:
  # ── VERB 1: exec ─────────────────────────────────────────────
  - id: setup
    exec:
      command: |
        echo "Starting full-stack workflow"
        echo "Topic: {{inputs.topic}}"
        date +%Y-%m-%dT%H:%M:%S
      shell: true

  # ── VERB 2: fetch ────────────────────────────────────────────
  - id: scrape_data
    fetch:
      url: "https://blog.rust-lang.org/"
      extract: markdown
      timeout: 20

  - id: download_image
    fetch:
      url: "https://httpbin.org/image/png"
      response: binary
      timeout: 15

  # ── VERB 3: invoke (builtin tools) ──────────────────────────
  - id: log_start
    depends_on: [setup]
    invoke:
      tool: "nika:log"
      params:
        level: "info"
        message: "Full-stack workflow initiated"

  - id: process_image
    depends_on: [download_image]
    with:
      img: $download_image
    invoke:
      tool: "nika:pipeline"
      params:
        hash: "{{with.img.hash}}"
        steps:
          - op: thumbnail
            width: 300
          - op: convert
            format: webp
    artifact:
      path: output/processed-image.webp
      format: binary

  - id: generate_chart
    invoke:
      tool: "nika:chart"
      params:
        type: "bar"
        title: "Workflow Verb Usage"
        width: 800
        height: 500
        series:
          - name: "Frequency"
            data: [15, 12, 20, 8, 5]
        labels: ["exec", "fetch", "invoke", "infer", "agent"]

  # ── VERB 4: infer (structured + vision) ─────────────────────
  - id: analyze
    depends_on: [scrape_data, generate_chart]
    with:
      content: $scrape_data
      chart: $generate_chart
    infer:
      content:
        - type: image
          source: "{{with.chart.hash}}"
          detail: high
        - type: text
          text: |
            Analyze this chart and content about {{inputs.topic}}:
            {{with.content | first(2000)}}
            Return JSON with: summary, key_insights (array), score (1-100)
      response_format: json
      max_tokens: 1000
      temperature: 0.3
    artifact:
      path: output/analysis.json
      format: json

  # ── VERB 5: agent ────────────────────────────────────────────
  - id: final_agent
    depends_on: [analyze, process_image, log_start]
    with:
      analysis: $analyze
      image: $process_image
    agent:
      prompt: |
        You are the final synthesis agent. You have:

        ## Analysis Results
        {{with.analysis}}

        ## Processed Image
        {{with.image}}

        Create a comprehensive report covering:
        1. Data analysis findings
        2. Image processing results
        3. Overall assessment
        4. Next steps

        Use nika_log for progress. Call nika_complete when done.
      mcp: [filesystem]
      tools: [builtin]
      max_tokens: 2000
      completion:
        mode: explicit
      guardrails:
        - type: length
          min_words: 200
          on_failure: retry
      limits:
        max_turns: 10
        max_tokens: 50000
        max_cost_usd: 1.00
        max_duration_secs: 180
    artifact:
      path: output/final-report.md

  # Completion log (exec)
  - id: done
    depends_on: [final_agent]
    with:
      result: $final_agent
    exec:
      command: |
        echo "============================================"
        echo "  FULL STACK WORKFLOW COMPLETE"
        echo "  5 verbs. MCP. Media. Vision. Agent."
        echo "  Report: {{with.result | length}} chars"
        echo "============================================"
      shell: true
    artifact:
      path: output/completion-log.txt
"##;

// ─── Tests ───────────────────────────────────────────────────────────────────

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_total_advanced_exercises() {
        // L7:3 + L8:3 + L9:4 + L10:3 + L11:4 + L12:5 = 22
        assert_eq!(
            EXERCISES_ADVANCED.len(),
            22,
            "Must have exactly 22 advanced exercises"
        );
    }

    #[test]
    fn test_exercise_counts_per_level() {
        let expected = [
            ("swiss-knife", 3),
            ("gone-rogue", 3),
            ("data-heist", 4),
            ("open-protocol", 3),
            ("pixel-pirate", 4),
            ("supernovae", 5),
        ];
        for (slug, count) in expected {
            let found = get_advanced_exercises(slug).len();
            assert_eq!(
                found, count,
                "Level '{}' should have {} exercises, found {}",
                slug, count, found
            );
        }
    }

    #[test]
    fn test_exercise_numbers_sequential() {
        let levels = [
            "swiss-knife",
            "gone-rogue",
            "data-heist",
            "open-protocol",
            "pixel-pirate",
            "supernovae",
        ];
        for slug in levels {
            let exercises = get_advanced_exercises(slug);
            for (i, ex) in exercises.iter().enumerate() {
                assert_eq!(
                    ex.exercise_num,
                    (i + 1) as u8,
                    "Exercise at index {} in level '{}' should be number {}",
                    i,
                    slug,
                    i + 1
                );
            }
        }
    }

    #[test]
    fn test_all_templates_have_todo() {
        for ex in EXERCISES_ADVANCED {
            assert!(
                ex.template.contains("TODO"),
                "Template for {}/{} must contain at least one TODO marker",
                ex.level_slug,
                ex.filename
            );
        }
    }

    #[test]
    fn test_no_solutions_have_todo() {
        for ex in EXERCISES_ADVANCED {
            assert!(
                !ex.solution.contains("TODO"),
                "Solution for {}/{} must NOT contain TODO markers",
                ex.level_slug,
                ex.filename
            );
        }
    }

    #[test]
    fn test_all_have_schema_declaration() {
        for ex in EXERCISES_ADVANCED {
            assert!(
                ex.solution.contains("schema: \"nika/workflow@0.12\""),
                "Solution for {}/{} must declare schema",
                ex.level_slug,
                ex.filename
            );
            assert!(
                ex.template.contains("schema: \"nika/workflow@0.12\""),
                "Template for {}/{} must declare schema",
                ex.level_slug,
                ex.filename
            );
        }
    }

    #[test]
    fn test_filenames_match_pattern() {
        for ex in EXERCISES_ADVANCED {
            assert!(
                ex.filename.ends_with(".nika.yaml"),
                "Filename '{}' must end with .nika.yaml",
                ex.filename
            );
            assert!(
                ex.filename.starts_with(&format!("{:02}", ex.exercise_num)),
                "Filename '{}' must start with zero-padded exercise number {:02}",
                ex.filename,
                ex.exercise_num
            );
        }
    }

    #[test]
    fn test_get_advanced_exercise() {
        let ex = get_advanced_exercise("swiss-knife", 1);
        assert!(ex.is_some());
        assert_eq!(ex.unwrap().filename, "01-core-builtins.nika.yaml");
    }

    #[test]
    fn test_get_advanced_exercise_not_found() {
        assert!(get_advanced_exercise("nonexistent", 1).is_none());
        assert!(get_advanced_exercise("swiss-knife", 99).is_none());
    }

    #[test]
    fn test_supernovae_boss_is_comprehensive() {
        let boss_exercises = get_advanced_exercises("supernovae");
        assert_eq!(
            boss_exercises.len(),
            5,
            "SuperNovae boss must have 5 exercises"
        );

        // Boss 5 (Full Stack) should reference all 5 verbs
        let full_stack = get_advanced_exercise("supernovae", 5).unwrap();
        assert!(
            full_stack.solution.contains("exec:"),
            "Full Stack solution must use exec:"
        );
        assert!(
            full_stack.solution.contains("fetch:"),
            "Full Stack solution must use fetch:"
        );
        assert!(
            full_stack.solution.contains("invoke:"),
            "Full Stack solution must use invoke:"
        );
        assert!(
            full_stack.solution.contains("infer:"),
            "Full Stack solution must use infer:"
        );
        assert!(
            full_stack.solution.contains("agent:"),
            "Full Stack solution must use agent:"
        );
    }

    #[test]
    fn test_level_slugs_match_levels_rs() {
        let expected_slugs = [
            "swiss-knife",
            "gone-rogue",
            "data-heist",
            "open-protocol",
            "pixel-pirate",
            "supernovae",
        ];
        for slug in expected_slugs {
            assert!(
                !get_advanced_exercises(slug).is_empty(),
                "Must have exercises for level slug '{}'",
                slug
            );
        }
    }

    #[test]
    fn test_llm_exercises_use_provider_placeholder() {
        let llm_levels = ["gone-rogue", "supernovae"];
        for slug in llm_levels {
            for ex in get_advanced_exercises(slug) {
                assert!(
                    ex.template.contains("{{PROVIDER}}") || ex.template.contains("{{MODEL}}"),
                    "LLM exercise {}/{} should use provider/model placeholders",
                    ex.level_slug,
                    ex.filename
                );
            }
        }
    }
}