asupersync 0.3.1

Spec-first, cancel-correct, capability-secure async runtime for Rust.
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
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
//!
//! This module provides diagnostic queries that answer questions like:
//! - "Why can't this region close?"
//! - "What's blocking this task?"
//! - "Why was this task cancelled?"
//! - "Which obligations look leaked?"
//!
//! Explanations are intended to be deterministic (stable ordering) and
//! cancel-safe to compute (pure reads of runtime state).
//!
//! # Example
//!
//! ```ignore
//! use asupersync::observability::Diagnostics;
//!
//! let d = Diagnostics::new(state.clone());
//! let e = d.explain_region_open(region_id);
//! println!("{e}");
//! ```

use crate::console::Console;
use crate::observability::spectral_health::{
    SpectralHealthMonitor, SpectralHealthReport, SpectralThresholds,
};
use crate::record::ObligationState;
use crate::record::region::RegionState;
use crate::record::task::TaskState;
use crate::runtime::state::RuntimeState;
use crate::time::TimerDriverHandle;
use crate::tracing_compat::{debug, trace, warn};
use crate::types::{CancelKind, ObligationId, RegionId, TaskId, Time};
use serde::{Deserialize, Serialize};
use std::collections::BTreeMap;
use std::fmt;
use std::sync::Arc;

/// Diagnostics engine for runtime troubleshooting.
#[derive(Debug)]
pub struct Diagnostics {
    state: Arc<RuntimeState>,
    spectral_monitor: parking_lot::Mutex<SpectralHealthMonitor>,
}

impl Diagnostics {
    /// Create a new diagnostics engine.
    #[must_use]
    pub fn new(state: Arc<RuntimeState>) -> Self {
        Self {
            state,
            spectral_monitor: parking_lot::Mutex::new(SpectralHealthMonitor::new(
                SpectralThresholds::default(),
            )),
        }
    }

    /// Create a diagnostics engine with console output (used for richer rendering).
    #[must_use]
    pub fn with_console(state: Arc<RuntimeState>, _console: Console) -> Self {
        Self {
            state,
            spectral_monitor: parking_lot::Mutex::new(SpectralHealthMonitor::new(
                SpectralThresholds::default(),
            )),
        }
    }

    /// Get the current runtime time for observability.
    ///
    /// Live runtimes advance time through the timer driver, while timerless
    /// runtimes and many direct tests only move `RuntimeState::now`.
    /// Prefer the timer driver when present and fall back to the logical state
    /// clock so leak ages remain meaningful in both modes.
    fn now(&self) -> Time {
        self.state
            .timer_driver()
            .map_or(self.state.now, TimerDriverHandle::now)
    }

    fn build_task_wait_graph(&self) -> TaskWaitGraph {
        let mut task_ids: Vec<TaskId> = self
            .state
            .tasks_iter()
            .filter_map(|(_, task)| (!task.state.is_terminal()).then_some(task.id))
            .collect();
        task_ids.sort();
        let index_by_task: BTreeMap<TaskId, usize> = task_ids
            .iter()
            .enumerate()
            .map(|(i, id)| (*id, i))
            .collect();

        let mut directed_edges = Vec::new();
        for (_, task) in self.state.tasks_iter() {
            if task.state.is_terminal() {
                continue;
            }
            let Some(&target_idx) = index_by_task.get(&task.id) else {
                continue;
            };
            // waiter -> task dependency edges
            for waiter in &task.waiters {
                if let Some(&waiter_idx) = index_by_task.get(waiter) {
                    directed_edges.push((waiter_idx, target_idx));
                }
            }
        }
        directed_edges.sort_unstable();
        directed_edges.dedup();

        let undirected_edges: Vec<(usize, usize)> = directed_edges
            .iter()
            .map(|(u, v)| if u < v { (*u, *v) } else { (*v, *u) })
            .collect::<std::collections::BTreeSet<_>>()
            .into_iter()
            .collect();

        TaskWaitGraph {
            task_ids,
            directed_edges,
            undirected_edges,
        }
    }

    /// Analyze structural runtime health from the live task wait graph.
    ///
    /// This is a default diagnostics path and updates the monitor's spectral
    /// history each time it is called.
    #[must_use]
    pub fn analyze_structural_health(&self) -> SpectralHealthReport {
        let graph = self.build_task_wait_graph();
        let adjacency = wait_graph_adjacency(&graph);
        let mut monitor = self.spectral_monitor.lock();
        monitor.analyze_with_trapped_cycle(
            graph.task_ids.len(),
            &graph.undirected_edges,
            has_trapped_wait_cycle(&adjacency),
        )
    }

    /// Analyze directional deadlock risk from wait-for dependencies.
    #[must_use]
    pub fn analyze_directional_deadlock(&self) -> DirectionalDeadlockReport {
        let graph = self.build_task_wait_graph();
        if graph.task_ids.is_empty() {
            return DirectionalDeadlockReport::empty();
        }

        let adjacency = wait_graph_adjacency(&graph);

        let sccs = strongly_connected_components(&adjacency);
        let mut components = Vec::new();
        let mut trapped = 0_u32;
        let mut cycle_nodes = 0_usize;

        for nodes in sccs {
            let has_cycle = if nodes.len() > 1 {
                true
            } else {
                let n0 = nodes[0];
                adjacency[n0].contains(&n0)
            };
            if !has_cycle {
                continue;
            }
            cycle_nodes = cycle_nodes.saturating_add(nodes.len());
            let mut ingress = 0_u32;
            let mut egress = 0_u32;
            for &u in &nodes {
                for &v in &adjacency[u] {
                    if nodes.binary_search(&v).is_ok() {
                        continue;
                    }
                    egress = egress.saturating_add(1);
                }
            }
            let node_set: std::collections::BTreeSet<usize> = nodes.iter().copied().collect();
            for (u, edges) in adjacency.iter().enumerate() {
                if node_set.contains(&u) {
                    continue;
                }
                for &v in edges {
                    if node_set.contains(&v) {
                        ingress = ingress.saturating_add(1);
                    }
                }
            }
            let trapped_component = egress == 0;
            if trapped_component {
                trapped = trapped.saturating_add(1);
            }
            let mut tasks: Vec<TaskId> = nodes.iter().map(|idx| graph.task_ids[*idx]).collect();
            tasks.sort();
            components.push(DeadlockCycle {
                tasks,
                ingress_edges: ingress,
                egress_edges: egress,
                trapped: trapped_component,
            });
        }

        components.sort_by_key(|c| c.tasks.len());
        components.reverse();

        #[allow(clippy::cast_precision_loss)]
        let cycle_ratio = if graph.task_ids.is_empty() {
            0.0
        } else {
            cycle_nodes as f64 / graph.task_ids.len() as f64
        };
        #[allow(clippy::cast_precision_loss)]
        let trapped_ratio = if components.is_empty() {
            0.0
        } else {
            f64::from(trapped) / components.len() as f64
        };
        let risk_score = 0.6f64
            .mul_add(trapped_ratio, 0.4 * cycle_ratio)
            .clamp(0.0, 1.0);
        let severity = if trapped > 0 {
            DeadlockSeverity::Critical
        } else if !components.is_empty() {
            DeadlockSeverity::Elevated
        } else {
            DeadlockSeverity::None
        };

        DirectionalDeadlockReport {
            severity,
            risk_score,
            cycles: components,
        }
    }

    /// Explain why a region cannot close.
    ///
    /// This inspects region state, children, live tasks, and held obligations.
    #[must_use]
    pub fn explain_region_open(&self, region_id: RegionId) -> RegionOpenExplanation {
        trace!(region_id = ?region_id, "diagnostics: explain_region_open");

        let Some(region) = self.state.region(region_id) else {
            return RegionOpenExplanation {
                region_id,
                region_state: None,
                reasons: vec![Reason::RegionNotFound],
                recommendations: vec!["Verify region id is valid".to_string()],
            };
        };

        let region_state = region.state();
        if region_state == RegionState::Closed {
            return RegionOpenExplanation {
                region_id,
                region_state: Some(region_state),
                reasons: Vec::new(),
                recommendations: Vec::new(),
            };
        }

        let mut reasons = Vec::new();

        // Children first (structural).
        let mut child_ids = region.child_ids();
        child_ids.sort();
        for child_id in child_ids {
            if let Some(child) = self.state.region(child_id) {
                let child_state = child.state();
                if child_state != RegionState::Closed {
                    reasons.push(Reason::ChildRegionOpen {
                        child_id,
                        child_state,
                    });
                }
            }
        }

        // Live tasks.
        let mut task_ids = region.task_ids();
        task_ids.sort();
        for task_id in task_ids {
            if let Some(task) = self.state.task(task_id) {
                if !task.state.is_terminal() {
                    reasons.push(Reason::TaskRunning {
                        task_id,
                        task_state: task.state_name().to_string(),
                        poll_count: task.total_polls,
                    });
                }
            }
        }

        // Held obligations in this region.
        let mut held = Vec::new();
        for (_, ob) in self.state.obligations_iter() {
            if ob.region == region_id && ob.state == ObligationState::Reserved {
                held.push((ob.id, ob.holder, ob.kind));
            }
        }
        held.sort_by_key(|(id, _, _)| *id);
        for (id, holder, kind) in held {
            reasons.push(Reason::ObligationHeld {
                obligation_id: id,
                obligation_type: format!("{kind:?}"),
                holder_task: holder,
            });
        }

        let mut recommendations = Vec::new();
        if reasons
            .iter()
            .any(|r| matches!(r, Reason::ChildRegionOpen { .. }))
        {
            recommendations.push("Wait for child regions to close, or cancel them.".to_string());
        }
        if reasons
            .iter()
            .any(|r| matches!(r, Reason::TaskRunning { .. }))
        {
            recommendations
                .push("Wait for live tasks to complete, or cancel the region.".to_string());
        }
        if reasons
            .iter()
            .any(|r| matches!(r, Reason::ObligationHeld { .. }))
        {
            recommendations
                .push("Ensure obligations are committed/aborted before closing.".to_string());
        }

        let deadlock = self.analyze_directional_deadlock();
        if deadlock.severity != DeadlockSeverity::None {
            recommendations.push(format!(
                "Directional deadlock risk {:?} (score {:.3}); inspect cycles and break wait-for loops.",
                deadlock.severity, deadlock.risk_score
            ));
        }

        debug!(
            region_id = ?region_id,
            region_state = ?region_state,
            reason_count = reasons.len(),
            "diagnostics: region open explanation computed"
        );

        RegionOpenExplanation {
            region_id,
            region_state: Some(region_state),
            reasons,
            recommendations,
        }
    }

    /// Explain what is blocking a task.
    #[must_use]
    pub fn explain_task_blocked(&self, task_id: TaskId) -> TaskBlockedExplanation {
        trace!(task_id = ?task_id, "diagnostics: explain_task_blocked");

        let Some(task) = self.state.task(task_id) else {
            return TaskBlockedExplanation {
                task_id,
                block_reason: BlockReason::TaskNotFound,
                details: Vec::new(),
                recommendations: vec!["Verify task id is valid".to_string()],
            };
        };

        let mut details = Vec::new();
        let mut recommendations = Vec::new();

        let block_reason = match &task.state {
            TaskState::Created => {
                recommendations.push("Task has not started polling yet.".to_string());
                BlockReason::NotStarted
            }
            TaskState::Running => {
                // We cannot introspect await points yet, but we can surface wake state.
                if task.wake_state.is_notified() {
                    recommendations
                        .push("Task has a pending wake; it should be scheduled soon.".to_string());
                    BlockReason::AwaitingSchedule
                } else {
                    recommendations
                        .push("Task appears to be awaiting an async operation.".to_string());
                    BlockReason::AwaitingFuture {
                        description: "unknown await point".to_string(),
                    }
                }
            }
            TaskState::CancelRequested { reason, .. } => {
                details.push(format!("cancel kind: {}", reason.kind));
                if let Some(msg) = &reason.message.as_deref() {
                    details.push(format!("message: {msg}"));
                }
                recommendations.push("Task is cancelling; wait for drain/finalizers.".to_string());
                BlockReason::CancelRequested {
                    reason: CancelReasonInfo::from_reason(reason.kind, reason.message.as_deref()),
                }
            }
            TaskState::Cancelling {
                reason,
                cleanup_budget,
            } => {
                details.push(format!("cancel kind: {}", reason.kind));
                details.push(format!(
                    "cleanup polls remaining: {}",
                    cleanup_budget.poll_quota
                ));
                BlockReason::RunningCleanup {
                    reason: CancelReasonInfo::from_reason(reason.kind, reason.message.as_deref()),
                    polls_remaining: cleanup_budget.poll_quota,
                }
            }
            TaskState::Finalizing {
                reason,
                cleanup_budget,
            } => {
                details.push(format!("cancel kind: {}", reason.kind));
                details.push(format!(
                    "cleanup polls remaining: {}",
                    cleanup_budget.poll_quota
                ));
                BlockReason::Finalizing {
                    reason: CancelReasonInfo::from_reason(reason.kind, reason.message.as_deref()),
                    polls_remaining: cleanup_budget.poll_quota,
                }
            }
            TaskState::Completed(outcome) => {
                details.push(format!("outcome: {outcome:?}"));
                BlockReason::Completed
            }
        };

        // Include waiter info as additional context.
        if !task.waiters.is_empty() {
            details.push(format!("waiters: {}", task.waiters.len()));
        }

        TaskBlockedExplanation {
            task_id,
            block_reason,
            details,
            recommendations,
        }
    }

    /// Find obligations that look leaked (still reserved) and return a snapshot.
    ///
    /// This is a low-level heuristic. For stronger guarantees, prefer lab oracles.
    #[must_use]
    pub fn find_leaked_obligations(&self) -> Vec<ObligationLeak> {
        let now = self.now();
        let mut leaks = Vec::new();

        for (_, ob) in self.state.obligations_iter() {
            if ob.state == ObligationState::Reserved {
                // Skip obligations whose holder task has already completed.
                // A completed holder will tear down its obligations via
                // the normal scope-exit path, so flagging them here would
                // produce false positives in leak detection.
                if let Some(holder) = self.state.task(ob.holder) {
                    if matches!(holder.state, TaskState::Completed(_)) {
                        continue;
                    }
                }
                let age = std::time::Duration::from_nanos(now.duration_since(ob.reserved_at));
                leaks.push(ObligationLeak {
                    obligation_id: ob.id,
                    obligation_type: format!("{:?}", ob.kind),
                    holder_task: Some(ob.holder),
                    region_id: ob.region,
                    age,
                });
            }
        }

        // Deterministic ordering.
        leaks.sort_by_key(|l| (l.region_id, l.obligation_id));

        if !leaks.is_empty() {
            warn!(
                count = leaks.len(),
                "diagnostics: potential obligation leaks detected"
            );
        }

        leaks
    }
}

#[derive(Debug, Clone)]
struct TaskWaitGraph {
    task_ids: Vec<TaskId>,
    directed_edges: Vec<(usize, usize)>,
    undirected_edges: Vec<(usize, usize)>,
}

fn wait_graph_adjacency(graph: &TaskWaitGraph) -> Vec<Vec<usize>> {
    let mut adjacency = vec![Vec::new(); graph.task_ids.len()];
    for &(u, v) in &graph.directed_edges {
        if u < adjacency.len() && v < adjacency.len() {
            adjacency[u].push(v);
        }
    }
    for edges in &mut adjacency {
        edges.sort_unstable();
        edges.dedup();
    }
    adjacency
}

fn has_trapped_wait_cycle(adjacency: &[Vec<usize>]) -> bool {
    for nodes in strongly_connected_components(adjacency) {
        let has_cycle = if nodes.len() > 1 {
            true
        } else {
            let n0 = nodes[0];
            adjacency[n0].contains(&n0)
        };
        if !has_cycle {
            continue;
        }

        let node_set: std::collections::BTreeSet<usize> = nodes.iter().copied().collect();
        let has_egress = nodes
            .iter()
            .any(|&u| adjacency[u].iter().any(|v| !node_set.contains(v)));
        if !has_egress {
            return true;
        }
    }

    false
}

/// Directional deadlock severity from wait-for graph analysis.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum DeadlockSeverity {
    /// No directed cycle risk observed.
    None,
    /// Directed cycles were found, but all have external exits.
    Elevated,
    /// At least one cycle is trapped (no outgoing edge).
    Critical,
}

/// A directed wait-for cycle component.
#[derive(Debug, Clone)]
pub struct DeadlockCycle {
    /// Tasks participating in the cycle.
    pub tasks: Vec<TaskId>,
    /// Incoming edges from outside the SCC.
    pub ingress_edges: u32,
    /// Outgoing edges to nodes outside the SCC.
    pub egress_edges: u32,
    /// Whether the cycle has no outgoing edge.
    pub trapped: bool,
}

/// Directional deadlock risk report.
#[derive(Debug, Clone)]
pub struct DirectionalDeadlockReport {
    /// Severity level.
    pub severity: DeadlockSeverity,
    /// Composite risk score in `[0, 1]`.
    pub risk_score: f64,
    /// Cycle components sorted by descending size.
    pub cycles: Vec<DeadlockCycle>,
}

impl DirectionalDeadlockReport {
    #[must_use]
    fn empty() -> Self {
        Self {
            severity: DeadlockSeverity::None,
            risk_score: 0.0,
            cycles: Vec::new(),
        }
    }
}

/// Tarjan SCC decomposition over adjacency lists.
#[must_use]
fn strongly_connected_components(adjacency: &[Vec<usize>]) -> Vec<Vec<usize>> {
    struct Tarjan<'a> {
        adjacency: &'a [Vec<usize>],
        index: usize,
        stack: Vec<usize>,
        on_stack: Vec<bool>,
        indices: Vec<Option<usize>>,
        lowlink: Vec<usize>,
        sccs: Vec<Vec<usize>>,
    }

    impl Tarjan<'_> {
        fn strongconnect(&mut self, v: usize) {
            self.indices[v] = Some(self.index);
            self.lowlink[v] = self.index;
            self.index += 1;
            self.stack.push(v);
            self.on_stack[v] = true;

            for &w in &self.adjacency[v] {
                if self.indices[w].is_none() {
                    self.strongconnect(w);
                    self.lowlink[v] = self.lowlink[v].min(self.lowlink[w]);
                } else if self.on_stack[w] {
                    self.lowlink[v] = self.lowlink[v].min(self.indices[w].unwrap_or(usize::MAX));
                }
            }

            if self.lowlink[v] == self.indices[v].unwrap_or(usize::MAX) {
                let mut scc = Vec::new();
                while let Some(w) = self.stack.pop() {
                    self.on_stack[w] = false;
                    scc.push(w);
                    if w == v {
                        break;
                    }
                }
                scc.sort_unstable();
                self.sccs.push(scc);
            }
        }
    }

    let n = adjacency.len();
    let mut tarjan = Tarjan {
        adjacency,
        index: 0,
        stack: Vec::new(),
        on_stack: vec![false; n],
        indices: vec![None; n],
        lowlink: vec![0; n],
        sccs: Vec::new(),
    };

    for v in 0..n {
        if tarjan.indices[v].is_none() {
            tarjan.strongconnect(v);
        }
    }
    tarjan.sccs
}

/// Explanation for why a region is still open.
#[derive(Debug, Clone)]
pub struct RegionOpenExplanation {
    /// Region being explained.
    pub region_id: RegionId,
    /// Current region state (if found).
    pub region_state: Option<RegionState>,
    /// Reasons preventing close.
    pub reasons: Vec<Reason>,
    /// Suggested follow-ups.
    pub recommendations: Vec<String>,
}

impl fmt::Display for RegionOpenExplanation {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        writeln!(f, "Region {:?} is still open.", self.region_id)?;
        if let Some(st) = self.region_state {
            writeln!(f, "  state: {st:?}")?;
        }
        for r in &self.reasons {
            writeln!(f, "  - {r}")?;
        }
        for rec in &self.recommendations {
            writeln!(f, "  -> {rec}")?;
        }
        Ok(())
    }
}

/// A reason a region cannot close.
#[derive(Debug, Clone)]
pub enum Reason {
    /// Region id not present in runtime state.
    RegionNotFound,
    /// A child region is still open.
    ChildRegionOpen {
        /// Child id.
        child_id: RegionId,
        /// Child state.
        child_state: RegionState,
    },
    /// A task in the region is still running.
    TaskRunning {
        /// Task id.
        task_id: TaskId,
        /// State name.
        task_state: String,
        /// Poll count observed.
        poll_count: u64,
    },
    /// An obligation is still reserved/held.
    ObligationHeld {
        /// Obligation id.
        obligation_id: ObligationId,
        /// Obligation kind/type.
        obligation_type: String,
        /// Task holding the obligation.
        holder_task: TaskId,
    },
}

impl fmt::Display for Reason {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::RegionNotFound => write!(f, "region not found"),
            Self::ChildRegionOpen {
                child_id,
                child_state,
            } => write!(f, "child region {child_id:?} still open ({child_state:?})"),
            Self::TaskRunning {
                task_id,
                task_state,
                poll_count,
            } => write!(
                f,
                "task {task_id:?} still running (state={task_state}, polls={poll_count})"
            ),
            Self::ObligationHeld {
                obligation_id,
                obligation_type,
                holder_task,
            } => write!(
                f,
                "obligation {obligation_id:?} held by task {holder_task:?} (type={obligation_type})"
            ),
        }
    }
}

/// Explanation for why a task appears blocked.
#[derive(Debug, Clone)]
pub struct TaskBlockedExplanation {
    /// Task being explained.
    pub task_id: TaskId,
    /// Primary classification of the block.
    pub block_reason: BlockReason,
    /// Additional details (freeform, deterministic order).
    pub details: Vec<String>,
    /// Suggested follow-ups.
    pub recommendations: Vec<String>,
}

impl fmt::Display for TaskBlockedExplanation {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        writeln!(f, "Task {:?} blocked: {}", self.task_id, self.block_reason)?;
        for d in &self.details {
            writeln!(f, "  - {d}")?;
        }
        for rec in &self.recommendations {
            writeln!(f, "  -> {rec}")?;
        }
        Ok(())
    }
}

/// High-level classifications for why a task is blocked.
#[derive(Debug, Clone)]
pub enum BlockReason {
    /// Task id not present.
    TaskNotFound,
    /// Task has not started.
    NotStarted,
    /// Task is runnable but waiting to be scheduled.
    AwaitingSchedule,
    /// Task is awaiting an async operation.
    AwaitingFuture {
        /// Short, human-readable description of what the task is awaiting.
        description: String,
    },
    /// Cancellation requested.
    CancelRequested {
        /// Cancellation reason as observed on the task.
        reason: CancelReasonInfo,
    },
    /// Task is running cancellation cleanup.
    RunningCleanup {
        /// Cancellation reason driving cleanup.
        reason: CancelReasonInfo,
        /// Remaining poll budget at the time of inspection.
        polls_remaining: u32,
    },
    /// Task is finalizing.
    Finalizing {
        /// Cancellation reason driving finalization.
        reason: CancelReasonInfo,
        /// Remaining poll budget at the time of inspection.
        polls_remaining: u32,
    },
    /// Task is completed.
    Completed,
}

impl fmt::Display for BlockReason {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::TaskNotFound => f.write_str("task not found"),
            Self::NotStarted => f.write_str("not started"),
            Self::AwaitingSchedule => f.write_str("awaiting schedule"),
            Self::AwaitingFuture { description } => write!(f, "awaiting future ({description})"),
            Self::CancelRequested { reason } => write!(f, "cancel requested ({reason})"),
            Self::RunningCleanup {
                reason,
                polls_remaining,
            } => write!(
                f,
                "running cleanup ({reason}, polls_remaining={polls_remaining})"
            ),
            Self::Finalizing {
                reason,
                polls_remaining,
            } => write!(
                f,
                "finalizing ({reason}, polls_remaining={polls_remaining})"
            ),
            Self::Completed => f.write_str("completed"),
        }
    }
}

/// Explanation of a cancellation chain.
#[derive(Debug, Clone)]
pub struct CancellationExplanation {
    /// The observed cancellation kind.
    pub kind: CancelKind,
    /// Optional message/context.
    pub message: Option<String>,
    /// The propagation path (root -> leaf).
    pub propagation_path: Vec<CancellationStep>,
}

/// A single step in a cancellation propagation chain.
#[derive(Debug, Clone)]
pub struct CancellationStep {
    /// Region at this step.
    pub region_id: RegionId,
    /// Cancellation kind.
    pub kind: CancelKind,
}

/// Cancellation reason info rendered for humans.
#[derive(Debug, Clone)]
pub struct CancelReasonInfo {
    /// Cancellation kind.
    pub kind: CancelKind,
    /// Optional message.
    pub message: Option<String>,
}

impl CancelReasonInfo {
    fn from_reason(kind: CancelKind, message: Option<&str>) -> Self {
        Self {
            kind,
            message: message.map(str::to_string),
        }
    }
}

impl fmt::Display for CancelReasonInfo {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        if let Some(msg) = &self.message {
            write!(f, "{} ({msg})", self.kind)
        } else {
            write!(f, "{}", self.kind)
        }
    }
}

/// A suspected leaked obligation.
#[derive(Debug, Clone)]
pub struct ObligationLeak {
    /// Obligation id.
    pub obligation_id: ObligationId,
    /// Kind/type as string for stable printing.
    pub obligation_type: String,
    /// Task holding the obligation, if known.
    pub holder_task: Option<TaskId>,
    /// Region where the obligation was created/held.
    pub region_id: RegionId,
    /// Age since creation.
    pub age: std::time::Duration,
}

/// Advanced observability taxonomy contract version.
pub const ADVANCED_OBSERVABILITY_CONTRACT_VERSION: &str = "doctor-observability-v1";
/// Baseline contract version consumed by advanced taxonomy mapping.
pub const ADVANCED_OBSERVABILITY_BASELINE_VERSION: &str = "doctor-logging-v1";

/// Advanced event classes for operator-facing diagnostics.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub enum AdvancedEventClass {
    /// Command lifecycle in execution flow.
    CommandLifecycle,
    /// Cross-system synchronization and error boundaries.
    IntegrationReliability,
    /// Guided remediation lifecycle and verification.
    RemediationSafety,
    /// Deterministic replay lifecycle.
    ReplayDeterminism,
    /// Verification and gate-level summary events.
    VerificationGovernance,
}

impl AdvancedEventClass {
    /// Stable canonical string for schema/docs/export use.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::CommandLifecycle => "command_lifecycle",
            Self::IntegrationReliability => "integration_reliability",
            Self::RemediationSafety => "remediation_safety",
            Self::ReplayDeterminism => "replay_determinism",
            Self::VerificationGovernance => "verification_governance",
        }
    }
}

/// Severity semantics for advanced diagnostics.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub enum AdvancedSeverity {
    /// Informational event without operator action requirement.
    Info,
    /// Event that should be reviewed.
    Warning,
    /// Event indicates an actionable failure.
    Error,
    /// Event indicates taxonomy/contract contradiction requiring immediate attention.
    Critical,
}

impl AdvancedSeverity {
    /// Stable canonical string for schema/docs/export use.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Info => "info",
            Self::Warning => "warning",
            Self::Error => "error",
            Self::Critical => "critical",
        }
    }
}

/// Troubleshooting dimensions used for fast triage and filtering.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub enum TroubleshootingDimension {
    /// Cancellation protocol and drain/finalize lifecycle.
    CancellationPath,
    /// Schema/contract conformance and validation behavior.
    ContractCompliance,
    /// Determinism/replay and schedule stability.
    Determinism,
    /// External integration/dependency boundary behavior.
    ExternalDependency,
    /// Immediate operator action and investigation intent.
    OperatorAction,
    /// Recovery planning and remediation follow-through.
    RecoveryPlanning,
    /// Runtime-state/invariant integrity.
    RuntimeInvariant,
}

impl TroubleshootingDimension {
    /// Stable canonical string for schema/docs/export use.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::CancellationPath => "cancellation_path",
            Self::ContractCompliance => "contract_compliance",
            Self::Determinism => "determinism",
            Self::ExternalDependency => "external_dependency",
            Self::OperatorAction => "operator_action",
            Self::RecoveryPlanning => "recovery_planning",
            Self::RuntimeInvariant => "runtime_invariant",
        }
    }
}

/// Event-class specification for taxonomy contract export.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct AdvancedEventClassSpec {
    /// Canonical identifier.
    pub class_id: String,
    /// Description for operator-facing diagnostics.
    pub description: String,
}

/// Severity specification for taxonomy contract export.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct AdvancedSeveritySpec {
    /// Canonical severity identifier.
    pub severity: String,
    /// Meaning/intent of this severity.
    pub meaning: String,
}

/// Troubleshooting-dimension specification for taxonomy contract export.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TroubleshootingDimensionSpec {
    /// Canonical dimension identifier.
    pub dimension: String,
    /// Why this dimension is useful during triage.
    pub purpose: String,
}

/// Advanced observability contract layered on top of baseline doctor logging.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct AdvancedObservabilityContract {
    /// Advanced contract version.
    pub contract_version: String,
    /// Required baseline contract version for mapping.
    pub baseline_contract_version: String,
    /// Event classes in lexical order.
    pub event_classes: Vec<AdvancedEventClassSpec>,
    /// Severity semantics in lexical order.
    pub severity_semantics: Vec<AdvancedSeveritySpec>,
    /// Troubleshooting dimensions in lexical order.
    pub troubleshooting_dimensions: Vec<TroubleshootingDimensionSpec>,
    /// Compatibility notes for downstream readers.
    pub compatibility_notes: Vec<String>,
}

/// Tail-latency taxonomy contract version.
pub const TAIL_LATENCY_TAXONOMY_CONTRACT_VERSION: &str = "runtime-tail-latency-taxonomy-v1";

/// Stable structured-log field defined by the tail-latency taxonomy contract.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct TailLatencyLogFieldSpec {
    /// Stable structured-log field key.
    pub key: String,
    /// Unit for this field.
    pub unit: String,
    /// Whether every tail-latency emission must include the field.
    pub required: bool,
    /// Operator-facing meaning of the field.
    pub meaning: String,
}

/// Concrete source binding for one tail-latency signal.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct TailLatencySignalSpec {
    /// Stable signal identifier.
    pub signal_id: String,
    /// Stable structured-log key emitted by runtime/test harnesses.
    pub structured_log_key: String,
    /// Unit for the signal.
    pub unit: String,
    /// Classification of the signal source.
    pub producer_kind: String,
    /// Fully qualified Rust symbol or explicit contract surface.
    pub producer_symbol: String,
    /// Repository-relative file path containing the producer.
    pub producer_file: String,
    /// Whether the signal is direct, proxy, or the unknown bucket.
    pub measurement_class: String,
    /// Whether the signal belongs to the compact always-on core.
    pub core: bool,
    /// Additional interpretation notes.
    pub notes: String,
}

/// One term in the canonical tail decomposition.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct TailLatencyTermSpec {
    /// Stable term identifier.
    pub term_id: String,
    /// Operator-facing description of the contribution.
    pub description: String,
    /// Reserved structured-log key for direct duration attribution.
    pub direct_duration_key: String,
    /// Structured-log key describing whether attribution is measured/proxy/unknown.
    pub attribution_state_key: String,
    /// Concrete signals that feed the term.
    pub signals: Vec<TailLatencySignalSpec>,
}

/// Versioned tail-latency decomposition contract.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct TailLatencyTaxonomyContract {
    /// Contract version for artifacts and logs.
    pub contract_version: String,
    /// Canonical decomposition equation.
    pub equation: String,
    /// Stable field for the total latency under analysis.
    pub total_latency_key: String,
    /// Explicit bucket for unmeasured or ambiguous contribution.
    pub unknown_bucket_key: String,
    /// Compact always-on field set every emitter must understand.
    pub required_log_fields: Vec<TailLatencyLogFieldSpec>,
    /// Decomposition terms in canonical equation order.
    pub terms: Vec<TailLatencyTermSpec>,
    /// Required sampling/retention policy notes.
    pub sampling_policy: Vec<String>,
    /// Compatibility notes for downstream tools.
    pub compatibility_notes: Vec<String>,
}

fn tail_latency_log_field(
    key: &str,
    unit: &str,
    required: bool,
    meaning: &str,
) -> TailLatencyLogFieldSpec {
    TailLatencyLogFieldSpec {
        key: key.to_string(),
        unit: unit.to_string(),
        required,
        meaning: meaning.to_string(),
    }
}

#[allow(clippy::too_many_arguments)]
fn tail_latency_signal(
    signal_id: &str,
    structured_log_key: &str,
    unit: &str,
    producer_kind: &str,
    producer_symbol: &str,
    producer_file: &str,
    measurement_class: &str,
    core: bool,
    notes: &str,
) -> TailLatencySignalSpec {
    TailLatencySignalSpec {
        signal_id: signal_id.to_string(),
        structured_log_key: structured_log_key.to_string(),
        unit: unit.to_string(),
        producer_kind: producer_kind.to_string(),
        producer_symbol: producer_symbol.to_string(),
        producer_file: producer_file.to_string(),
        measurement_class: measurement_class.to_string(),
        core,
        notes: notes.to_string(),
    }
}

fn queueing_tail_latency_term() -> TailLatencyTermSpec {
    TailLatencyTermSpec {
        term_id: "queueing".to_string(),
        description:
            "Backlog before useful work begins, spanning ready queues, waiters, and drain queues."
                .to_string(),
        direct_duration_key: "tail.queueing.ns".to_string(),
        attribution_state_key: "tail.queueing.attribution_state".to_string(),
        signals: vec![
            tail_latency_signal(
                "queueing.ready_queue_depth",
                "tail.queueing.ready_queue_depth",
                "count",
                "snapshot_field",
                "asupersync::obligation::lyapunov::StateSnapshot::ready_queue_depth",
                "src/obligation/lyapunov.rs",
                "proxy_signal",
                true,
                "Canonical scheduler backlog proxy used by the three-lane decision contract.",
            ),
            tail_latency_signal(
                "queueing.draining_regions",
                "tail.queueing.draining_regions",
                "count",
                "snapshot_field",
                "asupersync::obligation::lyapunov::StateSnapshot::draining_regions",
                "src/obligation/lyapunov.rs",
                "proxy_signal",
                true,
                "Captures cancellation/finalizer drain backlog that elongates queueing tails.",
            ),
            tail_latency_signal(
                "queueing.bulkhead_queue_depth",
                "tail.queueing.bulkhead_queue_depth",
                "count",
                "stats_struct",
                "asupersync::combinator::bulkhead::BulkheadMetrics::queue_depth",
                "src/combinator/bulkhead.rs",
                "proxy_signal",
                false,
                "Extended queueing proxy for admission-controlled bulkhead lanes.",
            ),
            tail_latency_signal(
                "queueing.pool_waiters",
                "tail.queueing.pool_waiters",
                "count",
                "stats_struct",
                "asupersync::sync::pool::PoolStats::waiters",
                "src/sync/pool.rs",
                "proxy_signal",
                false,
                "Extended backlog proxy for pool acquisition queues.",
            ),
        ],
    }
}

fn service_tail_latency_term() -> TailLatencyTermSpec {
    TailLatencyTermSpec {
        term_id: "service".to_string(),
        description:
            "CPU work once the task is scheduled, including poll consumption and budget burn."
                .to_string(),
        direct_duration_key: "tail.service.ns".to_string(),
        attribution_state_key: "tail.service.attribution_state".to_string(),
        signals: vec![
            tail_latency_signal(
                "service.poll_count",
                "tail.service.poll_count",
                "count",
                "snapshot_field",
                "asupersync::runtime::state::TaskSnapshot::poll_count",
                "src/runtime/state.rs",
                "proxy_signal",
                true,
                "Canonical always-on service proxy derived from task budget consumption.",
            ),
            tail_latency_signal(
                "service.poll_quota_consumed",
                "tail.service.poll_quota_consumed",
                "quota_units",
                "stats_struct",
                "asupersync::observability::resource_accounting::ResourceAccountingSnapshot::poll_quota_consumed",
                "src/observability/resource_accounting.rs",
                "proxy_signal",
                true,
                "Aggregated service-pressure counter for runtime/test emitters.",
            ),
            tail_latency_signal(
                "service.cost_quota_consumed",
                "tail.service.cost_quota_consumed",
                "cost_units",
                "stats_struct",
                "asupersync::observability::resource_accounting::ResourceAccountingSnapshot::cost_quota_consumed",
                "src/observability/resource_accounting.rs",
                "proxy_signal",
                false,
                "Extended service-pressure counter for cost-aware workloads.",
            ),
        ],
    }
}

fn io_or_network_tail_latency_term() -> TailLatencyTermSpec {
    TailLatencyTermSpec {
        term_id: "io_or_network".to_string(),
        description: "Latency spent waiting on or draining reactor/network activity.".to_string(),
        direct_duration_key: "tail.io_or_network.ns".to_string(),
        attribution_state_key: "tail.io_or_network.attribution_state".to_string(),
        signals: vec![
            tail_latency_signal(
                "io_or_network.events_received",
                "tail.io_or_network.events_received",
                "count",
                "stats_struct",
                "asupersync::runtime::io_driver::IoStats::events_received",
                "src/runtime/io_driver.rs",
                "proxy_signal",
                true,
                "Canonical always-on I/O/network pressure proxy from the reactor driver.",
            ),
            tail_latency_signal(
                "io_or_network.polls",
                "tail.io_or_network.polls",
                "count",
                "stats_struct",
                "asupersync::runtime::io_driver::IoStats::polls",
                "src/runtime/io_driver.rs",
                "proxy_signal",
                false,
                "Extended reactor activity proxy for sustained polling pressure.",
            ),
            tail_latency_signal(
                "io_or_network.wakers_dispatched",
                "tail.io_or_network.wakers_dispatched",
                "count",
                "stats_struct",
                "asupersync::runtime::io_driver::IoStats::wakers_dispatched",
                "src/runtime/io_driver.rs",
                "proxy_signal",
                false,
                "Extended proxy for wake fan-out caused by readiness events.",
            ),
        ],
    }
}

fn retries_tail_latency_term() -> TailLatencyTermSpec {
    TailLatencyTermSpec {
        term_id: "retries".to_string(),
        description:
            "Backoff and reattempt inflation introduced by retry/rate-limit/circuit-breaker control loops."
                .to_string(),
        direct_duration_key: "tail.retries.ns".to_string(),
        attribution_state_key: "tail.retries.attribution_state".to_string(),
        signals: vec![
            tail_latency_signal(
                "retries.total_delay_ns",
                "tail.retries.total_delay_ns",
                "ns",
                "state_field",
                "asupersync::combinator::retry::RetryState::total_delay",
                "src/combinator/retry.rs",
                "direct_duration",
                true,
                "Direct retry-delay contribution from the retry combinator.",
            ),
            tail_latency_signal(
                "retries.rate_limit_total_wait_ns",
                "tail.retries.rate_limit_total_wait_ns",
                "ns",
                "stats_struct",
                "asupersync::combinator::rate_limit::RateLimitMetrics::total_wait_time",
                "src/combinator/rate_limit.rs",
                "direct_duration",
                false,
                "Extended direct delay when token-bucket admission defers work.",
            ),
            tail_latency_signal(
                "retries.circuit_rejected_total",
                "tail.retries.circuit_rejected_total",
                "count",
                "stats_struct",
                "asupersync::combinator::circuit_breaker::CircuitBreakerMetrics::total_rejected",
                "src/combinator/circuit_breaker.rs",
                "proxy_signal",
                false,
                "Extended retry/control-loop pressure proxy when open circuits reject work.",
            ),
        ],
    }
}

fn synchronization_tail_latency_term() -> TailLatencyTermSpec {
    TailLatencyTermSpec {
        term_id: "synchronization".to_string(),
        description:
            "Coordination delay from locks, pools, obligations, and cancellation-aware rendezvous."
                .to_string(),
        direct_duration_key: "tail.synchronization.ns".to_string(),
        attribution_state_key: "tail.synchronization.attribution_state".to_string(),
        signals: vec![
            tail_latency_signal(
                "synchronization.lock_wait_ns",
                "tail.synchronization.lock_wait_ns",
                "ns",
                "stats_struct",
                "asupersync::sync::contended_mutex::LockMetricsSnapshot::wait_ns",
                "src/sync/contended_mutex.rs",
                "direct_duration",
                true,
                "Canonical direct synchronization delay from contention-instrumented locks.",
            ),
            tail_latency_signal(
                "synchronization.lock_hold_ns",
                "tail.synchronization.lock_hold_ns",
                "ns",
                "stats_struct",
                "asupersync::sync::contended_mutex::LockMetricsSnapshot::hold_ns",
                "src/sync/contended_mutex.rs",
                "proxy_signal",
                false,
                "Extended proxy for convoying and long critical sections.",
            ),
            tail_latency_signal(
                "synchronization.pool_total_wait_ns",
                "tail.synchronization.pool_total_wait_ns",
                "ns",
                "stats_struct",
                "asupersync::sync::pool::PoolStats::total_wait_time",
                "src/sync/pool.rs",
                "direct_duration",
                false,
                "Extended direct delay from resource-pool acquisition waits.",
            ),
            tail_latency_signal(
                "synchronization.obligations_pending",
                "tail.synchronization.obligations_pending",
                "count",
                "stats_struct",
                "asupersync::observability::resource_accounting::ResourceAccountingSnapshot::obligations_pending",
                "src/observability/resource_accounting.rs",
                "proxy_signal",
                true,
                "Captures obligation/cancellation backlog that can extend synchronization tails.",
            ),
        ],
    }
}

fn allocator_or_cache_tail_latency_term() -> TailLatencyTermSpec {
    TailLatencyTermSpec {
        term_id: "allocator_or_cache".to_string(),
        description:
            "Allocator and cache-locality pressure observable from region-heap churn and memory high-water marks."
                .to_string(),
        direct_duration_key: "tail.allocator_or_cache.ns".to_string(),
        attribution_state_key: "tail.allocator_or_cache.attribution_state".to_string(),
        signals: vec![
            tail_latency_signal(
                "allocator_or_cache.live_allocations",
                "tail.allocator_or_cache.live_allocations",
                "count",
                "stats_struct",
                "asupersync::runtime::region_heap::HeapStats::live",
                "src/runtime/region_heap.rs",
                "proxy_signal",
                true,
                "Canonical allocator-pressure proxy from live region-heap allocations.",
            ),
            tail_latency_signal(
                "allocator_or_cache.bytes_live",
                "tail.allocator_or_cache.bytes_live",
                "bytes",
                "stats_struct",
                "asupersync::runtime::region_heap::HeapStats::bytes_live",
                "src/runtime/region_heap.rs",
                "proxy_signal",
                false,
                "Extended allocator-pressure proxy for live retained bytes.",
            ),
            tail_latency_signal(
                "allocator_or_cache.heap_bytes_peak",
                "tail.allocator_or_cache.heap_bytes_peak",
                "bytes",
                "stats_struct",
                "asupersync::observability::resource_accounting::ResourceAccountingSnapshot::heap_bytes_peak",
                "src/observability/resource_accounting.rs",
                "proxy_signal",
                false,
                "Extended region-level memory high-water mark for cache/allocator analysis.",
            ),
        ],
    }
}

fn unknown_tail_latency_term() -> TailLatencyTermSpec {
    TailLatencyTermSpec {
        term_id: "unknown".to_string(),
        description:
            "Residual latency that remains unattributed after measured terms and proxies are accounted for."
                .to_string(),
        direct_duration_key: "tail.unknown.unmeasured_ns".to_string(),
        attribution_state_key: "tail.unknown.attribution_state".to_string(),
        signals: vec![tail_latency_signal(
            "unknown.unmeasured_ns",
            "tail.unknown.unmeasured_ns",
            "ns",
            "contract_field",
            "asupersync::observability::diagnostics::tail_latency_taxonomy_contract",
            "src/observability/diagnostics.rs",
            "unknown_bucket",
            true,
            "Must be emitted whenever any term lacks direct attribution so latency does not disappear from evidence bundles.",
        )],
    }
}

/// Returns the tail-latency decomposition contract used by runtime-ascension work.
#[must_use]
pub fn tail_latency_taxonomy_contract() -> TailLatencyTaxonomyContract {
    TailLatencyTaxonomyContract {
        contract_version: TAIL_LATENCY_TAXONOMY_CONTRACT_VERSION.to_string(),
        equation: "tail_latency_ns = queueing_ns + service_ns + io_or_network_ns + retries_ns + synchronization_ns + allocator_or_cache_ns + unknown_ns".to_string(),
        total_latency_key: "tail.total_latency_ns".to_string(),
        unknown_bucket_key: "tail.unknown.unmeasured_ns".to_string(),
        required_log_fields: vec![
            tail_latency_log_field(
                "tail.contract_version",
                "schema_id",
                true,
                "Versioned tail-latency taxonomy contract identifier.",
            ),
            tail_latency_log_field(
                "tail.total_latency_ns",
                "ns",
                true,
                "Observed end-to-end tail latency for the operation under analysis.",
            ),
            tail_latency_log_field(
                "tail.queueing.ready_queue_depth",
                "count",
                true,
                "Always-on queueing proxy based on runnable backlog.",
            ),
            tail_latency_log_field(
                "tail.service.poll_count",
                "count",
                true,
                "Service-side work proxy based on task poll demand.",
            ),
            tail_latency_log_field(
                "tail.io_or_network.events_received",
                "count",
                true,
                "I/O or network pressure proxy based on reactor event volume.",
            ),
            tail_latency_log_field(
                "tail.retries.total_delay_ns",
                "ns",
                true,
                "Direct retry/backoff delay accumulated by retry combinators.",
            ),
            tail_latency_log_field(
                "tail.synchronization.lock_wait_ns",
                "ns",
                true,
                "Direct synchronization delay from contention-instrumented locks.",
            ),
            tail_latency_log_field(
                "tail.allocator_or_cache.live_allocations",
                "count",
                true,
                "Allocator/cache pressure proxy based on live region-heap allocations.",
            ),
            tail_latency_log_field(
                "tail.unknown.unmeasured_ns",
                "ns",
                true,
                "Residual latency that remains unattributed after measured terms and proxies are recorded.",
            ),
        ],
        terms: vec![
            queueing_tail_latency_term(),
            service_tail_latency_term(),
            io_or_network_tail_latency_term(),
            retries_tail_latency_term(),
            synchronization_tail_latency_term(),
            allocator_or_cache_tail_latency_term(),
            unknown_tail_latency_term(),
        ],
        sampling_policy: vec![
            "Always emit the required core fields for any tail-latency event, even when extended observability sampling is disabled.".to_string(),
            "Extended fields may be sampled or emitted only in replay/forensics modes, but they must retain the stable keys defined here.".to_string(),
            "If a direct-duration field is unavailable for a term, preserve proxy signals and roll the residual duration into tail.unknown.unmeasured_ns.".to_string(),
        ],
        compatibility_notes: vec![
            "Structured-log keys are append-only within a contract version; removals or unit changes require a new contract version.".to_string(),
            "Proxy signals are not interchangeable with direct-duration fields; emitters must preserve both semantics explicitly.".to_string(),
            "Unknown contribution is mandatory whenever attribution is incomplete so downstream controllers never treat missing data as zero.".to_string(),
        ],
    }
}

/// Baseline flow/event/outcome tuple consumed by the advanced classifier.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct BaselineLogEvent<'a> {
    /// Baseline flow identifier.
    pub flow_id: &'a str,
    /// Baseline event kind.
    pub event_kind: &'a str,
    /// Baseline outcome class.
    pub outcome_class: &'a str,
}

/// Conflict detected while mapping baseline fields to advanced semantics.
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum AdvancedClassificationConflict {
    /// Event kind is not allowed for this flow in baseline contract.
    FlowEventMismatch {
        /// Baseline flow identifier.
        flow_id: String,
        /// Baseline event kind.
        event_kind: String,
    },
    /// Outcome conflicts with event-kind semantics.
    OutcomeEventMismatch {
        /// Baseline event kind.
        event_kind: String,
        /// Baseline outcome class.
        outcome_class: String,
    },
}

/// Classified advanced semantic view of one baseline event.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct AdvancedLogClassification {
    /// Advanced event class.
    pub event_class: AdvancedEventClass,
    /// Resolved severity.
    pub severity: AdvancedSeverity,
    /// Troubleshooting dimensions in deterministic lexical order.
    pub dimensions: Vec<TroubleshootingDimension>,
    /// Operator-facing narrative sentence.
    pub narrative: String,
    /// Recommended next action.
    pub recommended_action: String,
    /// Conflicts discovered during mapping/resolution.
    pub conflicts: Vec<AdvancedClassificationConflict>,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum BaselineFlowId {
    Execution,
    Integration,
    Remediation,
    Replay,
}

impl BaselineFlowId {
    fn parse(raw: &str) -> Option<Self> {
        match raw {
            "execution" => Some(Self::Execution),
            "integration" => Some(Self::Integration),
            "remediation" => Some(Self::Remediation),
            "replay" => Some(Self::Replay),
            _ => None,
        }
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum BaselineEventKind {
    CommandComplete,
    CommandStart,
    IntegrationError,
    IntegrationSync,
    RemediationApply,
    RemediationVerify,
    ReplayComplete,
    ReplayStart,
    VerificationSummary,
}

impl BaselineEventKind {
    fn parse(raw: &str) -> Option<Self> {
        match raw {
            "command_complete" => Some(Self::CommandComplete),
            "command_start" => Some(Self::CommandStart),
            "integration_error" => Some(Self::IntegrationError),
            "integration_sync" => Some(Self::IntegrationSync),
            "remediation_apply" => Some(Self::RemediationApply),
            "remediation_verify" => Some(Self::RemediationVerify),
            "replay_complete" => Some(Self::ReplayComplete),
            "replay_start" => Some(Self::ReplayStart),
            "verification_summary" => Some(Self::VerificationSummary),
            _ => None,
        }
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum BaselineOutcomeClass {
    Cancelled,
    Failed,
    Success,
}

impl BaselineOutcomeClass {
    fn parse(raw: &str) -> Option<Self> {
        match raw {
            "cancelled" => Some(Self::Cancelled),
            "failed" => Some(Self::Failed),
            "success" => Some(Self::Success),
            _ => None,
        }
    }
}

/// Returns the advanced observability taxonomy contract.
#[must_use]
pub fn advanced_observability_contract() -> AdvancedObservabilityContract {
    AdvancedObservabilityContract {
        contract_version: ADVANCED_OBSERVABILITY_CONTRACT_VERSION.to_string(),
        baseline_contract_version: ADVANCED_OBSERVABILITY_BASELINE_VERSION.to_string(),
        event_classes: vec![
            AdvancedEventClassSpec {
                class_id: AdvancedEventClass::CommandLifecycle.as_str().to_string(),
                description: "Execution command lifecycle and gate telemetry.".to_string(),
            },
            AdvancedEventClassSpec {
                class_id: AdvancedEventClass::IntegrationReliability
                    .as_str()
                    .to_string(),
                description: "Cross-system integration health and boundary reliability."
                    .to_string(),
            },
            AdvancedEventClassSpec {
                class_id: AdvancedEventClass::RemediationSafety.as_str().to_string(),
                description: "Remediation safety, application, and post-fix verification."
                    .to_string(),
            },
            AdvancedEventClassSpec {
                class_id: AdvancedEventClass::ReplayDeterminism.as_str().to_string(),
                description: "Replay lifecycle and deterministic reproducibility.".to_string(),
            },
            AdvancedEventClassSpec {
                class_id: AdvancedEventClass::VerificationGovernance
                    .as_str()
                    .to_string(),
                description: "Verification summary and governance gate posture.".to_string(),
            },
        ],
        severity_semantics: vec![
            AdvancedSeveritySpec {
                severity: AdvancedSeverity::Critical.as_str().to_string(),
                meaning: "Contract/taxonomy contradiction requiring immediate correction."
                    .to_string(),
            },
            AdvancedSeveritySpec {
                severity: AdvancedSeverity::Error.as_str().to_string(),
                meaning: "Actionable failure impacting reliability or correctness.".to_string(),
            },
            AdvancedSeveritySpec {
                severity: AdvancedSeverity::Info.as_str().to_string(),
                meaning: "Expected state transition with no direct intervention required."
                    .to_string(),
            },
            AdvancedSeveritySpec {
                severity: AdvancedSeverity::Warning.as_str().to_string(),
                meaning: "Non-terminal issue or cancellation requiring review.".to_string(),
            },
        ],
        troubleshooting_dimensions: vec![
            TroubleshootingDimensionSpec {
                dimension: TroubleshootingDimension::CancellationPath
                    .as_str()
                    .to_string(),
                purpose: "Track request/drain/finalize behavior for cancelled runs.".to_string(),
            },
            TroubleshootingDimensionSpec {
                dimension: TroubleshootingDimension::ContractCompliance
                    .as_str()
                    .to_string(),
                purpose: "Validate schema, gate, and policy conformance.".to_string(),
            },
            TroubleshootingDimensionSpec {
                dimension: TroubleshootingDimension::Determinism.as_str().to_string(),
                purpose: "Confirm replay stability and deterministic artifact lineage.".to_string(),
            },
            TroubleshootingDimensionSpec {
                dimension: TroubleshootingDimension::ExternalDependency
                    .as_str()
                    .to_string(),
                purpose: "Isolate third-party/system boundary failures.".to_string(),
            },
            TroubleshootingDimensionSpec {
                dimension: TroubleshootingDimension::OperatorAction
                    .as_str()
                    .to_string(),
                purpose: "Prioritize immediate operator decision paths.".to_string(),
            },
            TroubleshootingDimensionSpec {
                dimension: TroubleshootingDimension::RecoveryPlanning
                    .as_str()
                    .to_string(),
                purpose: "Drive remediation and verify-after-change sequencing.".to_string(),
            },
            TroubleshootingDimensionSpec {
                dimension: TroubleshootingDimension::RuntimeInvariant
                    .as_str()
                    .to_string(),
                purpose: "Connect events to runtime invariant health.".to_string(),
            },
        ],
        compatibility_notes: vec![
            "Additive dimensions/classes may be introduced without baseline schema changes."
                .to_string(),
            "Field removals or semantic redefinitions require a contract-version bump.".to_string(),
            "Unknown baseline flow/event/outcome values are hard validation errors.".to_string(),
        ],
    }
}

/// Classifies one baseline doctor logging event into advanced semantics.
///
/// Conflict resolution is deterministic:
/// 1. Start with outcome-based severity (`success` -> info, `cancelled` -> warning, `failed` -> error).
/// 2. Escalate for semantic contradictions (for example, `integration_error` + `success`).
/// 3. Escalate to `critical` when flow/event pairing violates baseline contract.
pub fn classify_baseline_log_event(
    event: BaselineLogEvent<'_>,
) -> Result<AdvancedLogClassification, String> {
    let flow = BaselineFlowId::parse(event.flow_id)
        .ok_or_else(|| format!("unknown flow_id {}", event.flow_id))?;
    let kind = BaselineEventKind::parse(event.event_kind)
        .ok_or_else(|| format!("unknown event_kind {}", event.event_kind))?;
    let outcome = BaselineOutcomeClass::parse(event.outcome_class)
        .ok_or_else(|| format!("unknown outcome_class {}", event.outcome_class))?;

    let (event_class, mut dimensions, kind_narrative, action_hint) = kind_semantics(kind);
    let mut conflicts = Vec::new();
    let mut severity = match outcome {
        BaselineOutcomeClass::Success => AdvancedSeverity::Info,
        BaselineOutcomeClass::Cancelled => AdvancedSeverity::Warning,
        BaselineOutcomeClass::Failed => AdvancedSeverity::Error,
    };

    if !flow_allows_event(flow, kind) {
        conflicts.push(AdvancedClassificationConflict::FlowEventMismatch {
            flow_id: event.flow_id.to_string(),
            event_kind: event.event_kind.to_string(),
        });
        severity = AdvancedSeverity::Critical;
        dimensions.push(TroubleshootingDimension::ContractCompliance);
    }

    if kind == BaselineEventKind::IntegrationError && outcome == BaselineOutcomeClass::Success {
        conflicts.push(AdvancedClassificationConflict::OutcomeEventMismatch {
            event_kind: event.event_kind.to_string(),
            outcome_class: event.outcome_class.to_string(),
        });
        severity = severity.max(AdvancedSeverity::Error);
        dimensions.push(TroubleshootingDimension::ContractCompliance);
    }

    if outcome == BaselineOutcomeClass::Cancelled {
        dimensions.push(TroubleshootingDimension::CancellationPath);
    }
    if outcome == BaselineOutcomeClass::Failed {
        dimensions.push(TroubleshootingDimension::RecoveryPlanning);
    }
    dimensions.sort_unstable();
    dimensions.dedup();
    conflicts.sort();

    let outcome_phrase = match outcome {
        BaselineOutcomeClass::Success => "completed successfully",
        BaselineOutcomeClass::Cancelled => "was cancelled",
        BaselineOutcomeClass::Failed => "failed",
    };

    Ok(AdvancedLogClassification {
        event_class,
        severity,
        dimensions,
        narrative: format!(
            "{}:{} {}. {}",
            event.flow_id, event.event_kind, outcome_phrase, kind_narrative
        ),
        recommended_action: if conflicts.is_empty() {
            action_hint.to_string()
        } else {
            format!(
                "{action_hint} Resolve taxonomy conflicts before trusting downstream automation."
            )
        },
        conflicts,
    })
}

/// Classifies a baseline event stream in-order.
pub fn classify_baseline_log_events(
    events: &[BaselineLogEvent<'_>],
) -> Result<Vec<AdvancedLogClassification>, String> {
    events
        .iter()
        .map(|event| classify_baseline_log_event(*event))
        .collect()
}

fn flow_allows_event(flow: BaselineFlowId, kind: BaselineEventKind) -> bool {
    match flow {
        BaselineFlowId::Execution => matches!(
            kind,
            BaselineEventKind::CommandComplete
                | BaselineEventKind::CommandStart
                | BaselineEventKind::VerificationSummary
        ),
        BaselineFlowId::Integration => matches!(
            kind,
            BaselineEventKind::IntegrationError
                | BaselineEventKind::IntegrationSync
                | BaselineEventKind::VerificationSummary
        ),
        BaselineFlowId::Remediation => matches!(
            kind,
            BaselineEventKind::RemediationApply
                | BaselineEventKind::RemediationVerify
                | BaselineEventKind::VerificationSummary
        ),
        BaselineFlowId::Replay => matches!(
            kind,
            BaselineEventKind::ReplayComplete
                | BaselineEventKind::ReplayStart
                | BaselineEventKind::VerificationSummary
        ),
    }
}

fn kind_semantics(
    kind: BaselineEventKind,
) -> (
    AdvancedEventClass,
    Vec<TroubleshootingDimension>,
    &'static str,
    &'static str,
) {
    match kind {
        BaselineEventKind::CommandComplete => (
            AdvancedEventClass::CommandLifecycle,
            vec![
                TroubleshootingDimension::ContractCompliance,
                TroubleshootingDimension::OperatorAction,
            ],
            "Execution gate completed and emitted a deterministic artifact pointer",
            "Review gate summary and continue pipeline progression.",
        ),
        BaselineEventKind::CommandStart => (
            AdvancedEventClass::CommandLifecycle,
            vec![TroubleshootingDimension::OperatorAction],
            "Execution gate started with reproducible command provenance",
            "Monitor for completion and verify emitted command provenance.",
        ),
        BaselineEventKind::IntegrationError => (
            AdvancedEventClass::IntegrationReliability,
            vec![
                TroubleshootingDimension::ExternalDependency,
                TroubleshootingDimension::OperatorAction,
            ],
            "Integration boundary reported an error at an external/system edge",
            "Inspect integration target, retry posture, and boundary adapter diagnostics.",
        ),
        BaselineEventKind::IntegrationSync => (
            AdvancedEventClass::IntegrationReliability,
            vec![TroubleshootingDimension::ExternalDependency],
            "Integration synchronization event captured adapter boundary state",
            "Verify upstream/downstream contract alignment for this sync point.",
        ),
        BaselineEventKind::RemediationApply => (
            AdvancedEventClass::RemediationSafety,
            vec![
                TroubleshootingDimension::ContractCompliance,
                TroubleshootingDimension::RecoveryPlanning,
            ],
            "Remediation apply phase executed against diagnosed findings",
            "Confirm changes are scoped and queue remediation verification.",
        ),
        BaselineEventKind::RemediationVerify => (
            AdvancedEventClass::RemediationSafety,
            vec![
                TroubleshootingDimension::ContractCompliance,
                TroubleshootingDimension::RecoveryPlanning,
            ],
            "Post-remediation verification assessed health deltas and invariants",
            "Evaluate health delta and close or reopen remediation loops.",
        ),
        BaselineEventKind::ReplayComplete => (
            AdvancedEventClass::ReplayDeterminism,
            vec![
                TroubleshootingDimension::Determinism,
                TroubleshootingDimension::RuntimeInvariant,
            ],
            "Replay completion captured deterministic scenario convergence status",
            "Compare replay artifacts against baseline and investigate divergence.",
        ),
        BaselineEventKind::ReplayStart => (
            AdvancedEventClass::ReplayDeterminism,
            vec![TroubleshootingDimension::Determinism],
            "Replay start established deterministic execution context",
            "Track replay progress and preserve trace/evidence join keys.",
        ),
        BaselineEventKind::VerificationSummary => (
            AdvancedEventClass::VerificationGovernance,
            vec![
                TroubleshootingDimension::ContractCompliance,
                TroubleshootingDimension::Determinism,
                TroubleshootingDimension::RuntimeInvariant,
            ],
            "Verification summary synthesized gate outcomes for governance review",
            "Use summary to decide promotion, rollback, or targeted investigation.",
        ),
    }
}

#[cfg(test)]
#[allow(clippy::arc_with_non_send_sync)]
mod tests {
    use super::*;
    use crate::observability::spectral_health::HealthClassification;
    use crate::record::obligation::{ObligationKind, ObligationRecord};
    use crate::record::region::RegionRecord;
    use crate::record::task::{TaskRecord, TaskState};
    use crate::time::{TimerDriverHandle, VirtualClock};
    use crate::types::{Budget, CancelReason, Outcome};
    use crate::util::ArenaIndex;
    use serde_json::{Value, json};
    use std::fmt::Write as _;
    use std::sync::Arc;

    fn init_test(name: &str) {
        crate::test_utils::init_test_logging();
        crate::test_phase!(name);
    }

    fn insert_child_region(state: &mut RuntimeState, parent: RegionId) -> RegionId {
        let idx = state.regions.insert(RegionRecord::new(
            RegionId::from_arena(ArenaIndex::new(0, 0)),
            Some(parent),
            Budget::INFINITE,
        ));
        let id = RegionId::from_arena(idx);
        let record = state.regions.get_mut(idx).expect("child region missing");
        record.id = id;
        let added = state
            .regions
            .get(parent.arena_index())
            .expect("parent missing")
            .add_child(id);
        crate::assert_with_log!(added.is_ok(), "child added", true, added.is_ok());
        id
    }

    fn insert_task(state: &mut RuntimeState, region: RegionId, task_state: TaskState) -> TaskId {
        let idx = state.insert_task(TaskRecord::new(
            TaskId::from_arena(ArenaIndex::new(0, 0)),
            region,
            Budget::INFINITE,
        ));
        let id = TaskId::from_arena(idx);
        let record = state.task_mut(id).expect("task missing");
        record.id = id;
        record.state = task_state;
        let added = state
            .regions
            .get(region.arena_index())
            .expect("region missing")
            .add_task(id);
        crate::assert_with_log!(added.is_ok(), "task added", true, added.is_ok());
        id
    }

    fn insert_obligation(
        state: &mut RuntimeState,
        region: RegionId,
        holder: TaskId,
        kind: ObligationKind,
        reserved_at: Time,
    ) -> ObligationId {
        let idx = state.obligations.insert(ObligationRecord::new(
            ObligationId::from_arena(ArenaIndex::new(0, 0)),
            kind,
            holder,
            region,
            reserved_at,
        ));
        let id = ObligationId::from_arena(idx);
        let record = state.obligations.get_mut(idx).expect("obligation missing");
        record.id = id;
        id
    }

    fn render_structured_diagnostic_report(
        scenario: &str,
        generated_at: &str,
        region: Option<&RegionOpenExplanation>,
        task: Option<&TaskBlockedExplanation>,
        leaks: &[ObligationLeak],
    ) -> String {
        let mut rendered = String::new();
        writeln!(&mut rendered, "scenario: {scenario}").expect("write scenario");
        writeln!(&mut rendered, "generated_at: {generated_at}").expect("write timestamp");

        rendered.push_str("\n[region]\n");
        if let Some(region) = region {
            rendered.push_str(&region.to_string());
        } else {
            rendered.push_str("none\n");
        }

        rendered.push_str("\n[task]\n");
        if let Some(task) = task {
            rendered.push_str(&task.to_string());
        } else {
            rendered.push_str("none\n");
        }

        rendered.push_str("\n[leaks]\n");
        if leaks.is_empty() {
            rendered.push_str("none\n");
        } else {
            for leak in leaks {
                writeln!(
                    &mut rendered,
                    "- {:?} region={:?} holder={:?} type={} age_ms={}",
                    leak.obligation_id,
                    leak.region_id,
                    leak.holder_task,
                    leak.obligation_type,
                    leak.age.as_millis()
                )
                .expect("write leak");
            }
        }

        rendered.trim_end().to_string()
    }

    fn render_structured_diagnostic_report_v2(sections: &[(&str, &str)]) -> String {
        let mut rendered = String::from("report_version: v2");
        for (label, section) in sections {
            writeln!(&mut rendered, "\n\n[{label}]").expect("write section label");
            rendered.push_str(section);
        }
        rendered.trim_end().to_string()
    }

    struct DiagnosticResourceAccounting {
        total_regions: usize,
        open_regions: usize,
        total_tasks: usize,
        live_tasks: usize,
        total_obligations: usize,
        leaked_obligations: usize,
    }

    struct DiagnosticReportV3Section<'a> {
        label: &'a str,
        status: &'a str,
        accounting: DiagnosticResourceAccounting,
        rendered: &'a str,
    }

    #[derive(Debug, Clone)]
    struct DiagnosticMetricHistogram {
        name: String,
        buckets: Vec<(String, u64)>, // (bucket_name, count)
        total_count: u64,
        percentiles: Vec<(f64, f64)>, // (percentile, value)
    }

    struct DiagnosticReportV4Section<'a> {
        label: &'a str,
        status: &'a str,
        accounting: DiagnosticResourceAccounting,
        histograms: Vec<DiagnosticMetricHistogram>,
        rendered: &'a str,
    }

    fn diagnostic_resource_accounting(
        diagnostics: &Diagnostics,
        leaked_obligations: usize,
    ) -> DiagnosticResourceAccounting {
        let total_regions = diagnostics.state.regions.iter().count();
        let open_regions = diagnostics
            .state
            .regions
            .iter()
            .filter(|(_, region)| region.state() != RegionState::Closed)
            .count();
        let total_tasks = diagnostics.state.tasks_iter().count();
        let live_tasks = diagnostics
            .state
            .tasks_iter()
            .filter(|(_, task)| !task.state.is_terminal())
            .count();
        let total_obligations = diagnostics.state.obligations.iter().count();

        DiagnosticResourceAccounting {
            total_regions,
            open_regions,
            total_tasks,
            live_tasks,
            total_obligations,
            leaked_obligations,
        }
    }

    fn render_structured_diagnostic_report_v3(
        sections: &[DiagnosticReportV3Section<'_>],
    ) -> String {
        let mut rendered = String::from("report_version: v3");
        let passing_count = sections
            .iter()
            .filter(|section| section.status == "passing")
            .count();
        let degraded_count = sections
            .iter()
            .filter(|section| section.status == "degraded")
            .count();
        let critical_count = sections
            .iter()
            .filter(|section| section.status == "critical")
            .count();

        writeln!(&mut rendered, "\n\n[summary]").expect("write summary label");
        writeln!(&mut rendered, "scenario_count: {}", sections.len())
            .expect("write scenario count");
        writeln!(&mut rendered, "passing_count: {passing_count}").expect("write passing count");
        writeln!(&mut rendered, "degraded_count: {degraded_count}").expect("write degraded count");
        writeln!(&mut rendered, "critical_count: {critical_count}").expect("write critical count");

        for section in sections {
            writeln!(&mut rendered, "\n\n[{}]", section.label).expect("write section label");
            writeln!(&mut rendered, "status: {}", section.status).expect("write status");
            rendered.push_str("resource_accounting:\n");
            writeln!(
                &mut rendered,
                "  - regions_total: {}",
                section.accounting.total_regions
            )
            .expect("write total regions");
            writeln!(
                &mut rendered,
                "  - regions_open: {}",
                section.accounting.open_regions
            )
            .expect("write open regions");
            writeln!(
                &mut rendered,
                "  - tasks_total: {}",
                section.accounting.total_tasks
            )
            .expect("write total tasks");
            writeln!(
                &mut rendered,
                "  - tasks_live: {}",
                section.accounting.live_tasks
            )
            .expect("write live tasks");
            writeln!(
                &mut rendered,
                "  - obligations_total: {}",
                section.accounting.total_obligations
            )
            .expect("write total obligations");
            writeln!(
                &mut rendered,
                "  - obligations_leaked: {}",
                section.accounting.leaked_obligations
            )
            .expect("write leaked obligations");
            rendered.push_str("report:\n");
            for line in section.rendered.lines() {
                writeln!(&mut rendered, "  {line}").expect("write report line");
            }
        }

        rendered.trim_end().to_string()
    }

    fn render_structured_diagnostic_report_v4(
        sections: &[DiagnosticReportV4Section<'_>],
    ) -> String {
        let mut rendered = String::from("report_version: v4");
        let passing_count = sections
            .iter()
            .filter(|section| section.status == "passing")
            .count();
        let degraded_count = sections
            .iter()
            .filter(|section| section.status == "degraded")
            .count();
        let critical_count = sections
            .iter()
            .filter(|section| section.status == "critical")
            .count();

        // Extended summary with histogram metrics
        writeln!(&mut rendered, "\n\n[summary]").expect("write summary label");
        writeln!(&mut rendered, "scenario_count: {}", sections.len())
            .expect("write scenario count");
        writeln!(&mut rendered, "passing_count: {passing_count}").expect("write passing count");
        writeln!(&mut rendered, "degraded_count: {degraded_count}").expect("write degraded count");
        writeln!(&mut rendered, "critical_count: {critical_count}").expect("write critical count");

        // Aggregate histogram metrics across all sections
        let total_histogram_count: u64 = sections
            .iter()
            .flat_map(|section| &section.histograms)
            .map(|h| h.total_count)
            .sum();
        writeln!(
            &mut rendered,
            "total_histogram_samples: {total_histogram_count}"
        )
        .expect("write total histogram samples");

        let histogram_types: std::collections::BTreeSet<&String> = sections
            .iter()
            .flat_map(|section| &section.histograms)
            .map(|h| &h.name)
            .collect();
        writeln!(
            &mut rendered,
            "histogram_types: [{}]",
            histogram_types
                .iter()
                .map(|s| s.as_str())
                .collect::<Vec<_>>()
                .join(", ")
        )
        .expect("write histogram types");

        for section in sections {
            writeln!(&mut rendered, "\n\n[{}]", section.label).expect("write section label");
            writeln!(&mut rendered, "status: {}", section.status).expect("write status");

            // Resource accounting
            rendered.push_str("resource_accounting:\n");
            writeln!(
                &mut rendered,
                "  - regions_total: {}",
                section.accounting.total_regions
            )
            .expect("write total regions");
            writeln!(
                &mut rendered,
                "  - regions_open: {}",
                section.accounting.open_regions
            )
            .expect("write open regions");
            writeln!(
                &mut rendered,
                "  - tasks_total: {}",
                section.accounting.total_tasks
            )
            .expect("write total tasks");
            writeln!(
                &mut rendered,
                "  - tasks_live: {}",
                section.accounting.live_tasks
            )
            .expect("write live tasks");
            writeln!(
                &mut rendered,
                "  - obligations_total: {}",
                section.accounting.total_obligations
            )
            .expect("write total obligations");
            writeln!(
                &mut rendered,
                "  - obligations_leaked: {}",
                section.accounting.leaked_obligations
            )
            .expect("write leaked obligations");

            // Extended metric histograms (v4 feature)
            if !section.histograms.is_empty() {
                rendered.push_str("extended_metrics:\n");
                for histogram in &section.histograms {
                    writeln!(&mut rendered, "  - name: {}", histogram.name)
                        .expect("write histogram name");
                    writeln!(
                        &mut rendered,
                        "    total_samples: {}",
                        histogram.total_count
                    )
                    .expect("write histogram total");

                    if !histogram.buckets.is_empty() {
                        rendered.push_str("    buckets:\n");
                        for (bucket_name, count) in &histogram.buckets {
                            writeln!(&mut rendered, "      - {}: {}", bucket_name, count)
                                .expect("write bucket");
                        }
                    }

                    if !histogram.percentiles.is_empty() {
                        rendered.push_str("    percentiles:\n");
                        for (percentile, value) in &histogram.percentiles {
                            writeln!(
                                &mut rendered,
                                "      - p{:.1}: {:.3}",
                                percentile * 100.0,
                                value
                            )
                            .expect("write percentile");
                        }
                    }
                }
            }

            // Diagnostic report content
            rendered.push_str("report:\n");
            for line in section.rendered.lines() {
                writeln!(&mut rendered, "  {line}").expect("write report line");
            }
        }

        rendered.trim_end().to_string()
    }

    fn scrub_diagnostic_report_timestamps(rendered: &str) -> String {
        rendered
            .lines()
            .map(|line| {
                let trimmed = line.trim_start();
                let detail = trimmed.strip_prefix("- ").unwrap_or(trimmed);
                if line.starts_with("generated_at: ") {
                    "generated_at: <scrubbed>".to_string()
                } else if detail.starts_with("next_retry_at: ") {
                    "  - next_retry_at: <scrubbed>".to_string()
                } else if detail.starts_with("observed_at: ") {
                    "  - observed_at: <scrubbed>".to_string()
                } else if detail.starts_with("deadline_at: ") {
                    "  - deadline_at: <scrubbed>".to_string()
                } else {
                    line.to_string()
                }
            })
            .collect::<Vec<_>>()
            .join("\n")
    }

    fn assert_diagnostic_report_snapshot(snapshot_name: &str, rendered: &str) {
        insta::with_settings!({
            snapshot_path => "../../tests/snapshots",
            prepend_module_to_snapshot => false,
        }, {
            insta::assert_snapshot!(snapshot_name, rendered);
        });
    }

    fn insert_wait_path(state: &mut RuntimeState, region: RegionId, len: usize) -> Vec<TaskId> {
        let tasks: Vec<TaskId> = (0..len)
            .map(|_| insert_task(state, region, TaskState::Running))
            .collect();
        for pair in tasks.windows(2) {
            state
                .task_mut(pair[0])
                .expect("path task missing")
                .waiters
                .push(pair[1]);
        }
        tasks
    }

    fn round_metric(value: f64) -> f64 {
        (value * 1_000.0).round() / 1_000.0
    }

    fn deadlock_severity_label(severity: DeadlockSeverity) -> &'static str {
        match severity {
            DeadlockSeverity::None => "none",
            DeadlockSeverity::Elevated => "elevated",
            DeadlockSeverity::Critical => "critical",
        }
    }

    fn health_classification_json(classification: &HealthClassification) -> Value {
        match classification {
            HealthClassification::Deadlocked => json!({
                "kind": "deadlocked",
            }),
            HealthClassification::Healthy { margin } => json!({
                "kind": "healthy",
                "margin": round_metric(*margin),
            }),
            HealthClassification::Degraded {
                fiedler,
                bottleneck_nodes,
            } => json!({
                "kind": "degraded",
                "fiedler": round_metric(*fiedler),
                "bottleneck_nodes": bottleneck_nodes,
            }),
            HealthClassification::Critical {
                fiedler,
                approaching_disconnect,
            } => json!({
                "kind": "critical",
                "fiedler": round_metric(*fiedler),
                "approaching_disconnect": approaching_disconnect,
            }),
            HealthClassification::Fragmented { components } => json!({
                "kind": "fragmented",
                "components": components,
            }),
        }
    }

    fn overall_health_status(
        health: &SpectralHealthReport,
        deadlock: &DirectionalDeadlockReport,
        leak_count: usize,
    ) -> &'static str {
        if deadlock.severity == DeadlockSeverity::Critical
            || matches!(
                health.classification,
                HealthClassification::Deadlocked
                    | HealthClassification::Critical { .. }
                    | HealthClassification::Fragmented { .. }
            )
        {
            "critical"
        } else if leak_count > 0
            || deadlock.severity == DeadlockSeverity::Elevated
            || matches!(health.classification, HealthClassification::Degraded { .. })
        {
            "degraded"
        } else {
            "passing"
        }
    }

    fn render_diagnostic_healthcheck_json(
        diagnostics: &Diagnostics,
        region_id: RegionId,
        generated_at: &str,
        pid: u32,
    ) -> Value {
        let health = diagnostics.analyze_structural_health();
        let deadlock = diagnostics.analyze_directional_deadlock();
        let region = diagnostics.explain_region_open(region_id);
        let leaks = diagnostics.find_leaked_obligations();
        let leak_count = leaks.len();
        let max_age_ms = leaks
            .iter()
            .map(|leak| u64::try_from(leak.age.as_millis()).unwrap_or(u64::MAX))
            .max()
            .unwrap_or(0);

        json!({
            "generated_at": generated_at,
            "pid": pid,
            "status": overall_health_status(&health, &deadlock, leak_count),
            "structural_health": {
                "classification": health_classification_json(&health.classification),
                "fiedler_value": round_metric(health.decomposition.fiedler_value),
                "spectral_gap": round_metric(health.decomposition.spectral_gap),
                "spectral_radius": round_metric(health.decomposition.spectral_radius),
                "iterations_used": health.decomposition.iterations_used,
                "bottleneck_count": health.bottlenecks.len(),
            },
            "directional_deadlock": {
                "severity": deadlock_severity_label(deadlock.severity),
                "risk_score": round_metric(deadlock.risk_score),
                "cycle_count": deadlock.cycles.len(),
                "trapped_cycle_count": deadlock.cycles.iter().filter(|cycle| cycle.trapped).count(),
                "cycles": deadlock.cycles.iter().map(|cycle| json!({
                    "tasks": cycle.tasks.iter().map(|task| format!("{task:?}")).collect::<Vec<_>>(),
                    "trapped": cycle.trapped,
                    "ingress_edges": cycle.ingress_edges,
                    "egress_edges": cycle.egress_edges,
                })).collect::<Vec<_>>(),
            },
            "region": {
                "id": format!("{:?}", region.region_id),
                "state": region.region_state.map(|state| format!("{state:?}")),
                "reason_count": region.reasons.len(),
                "recommendation_count": region.recommendations.len(),
            },
            "obligations": {
                "leak_count": leak_count,
                "max_age_ms": max_age_ms,
                "leaks": leaks.iter().map(|leak| json!({
                    "obligation_id": format!("{:?}", leak.obligation_id),
                    "region_id": format!("{:?}", leak.region_id),
                    "holder_task": leak.holder_task.map(|task| format!("{task:?}")),
                    "obligation_type": &leak.obligation_type,
                    "age_ms": u64::try_from(leak.age.as_millis()).unwrap_or(u64::MAX),
                })).collect::<Vec<_>>(),
            },
        })
    }

    fn scrub_diagnostic_healthcheck_json(mut value: Value) -> Value {
        let Some(object) = value.as_object_mut() else {
            return value;
        };
        object.insert(
            "generated_at".to_string(),
            Value::String("<scrubbed>".to_string()),
        );
        object.insert("pid".to_string(), Value::String("<scrubbed>".to_string()));
        value
    }

    fn assert_diagnostic_healthcheck_snapshot(snapshot_name: &str, value: &Value) {
        insta::with_settings!({
            snapshot_path => "../../tests/snapshots",
            prepend_module_to_snapshot => false,
        }, {
            insta::assert_json_snapshot!(snapshot_name, value);
        });
    }

    #[test]
    fn test_explain_region_open_unknown_region_returns_reason() {
        init_test("test_explain_region_open_unknown_region_returns_reason");
        let state = Arc::new(RuntimeState::new());
        let diagnostics = Diagnostics::new(state);
        let missing = RegionId::new_for_test(99, 0);

        let explanation = diagnostics.explain_region_open(missing);
        crate::assert_with_log!(
            explanation.region_state.is_none(),
            "region_state none",
            true,
            explanation.region_state.is_none()
        );
        crate::assert_with_log!(
            explanation.reasons.len() == 1,
            "single reason",
            1usize,
            explanation.reasons.len()
        );
        let is_not_found = matches!(explanation.reasons.first(), Some(Reason::RegionNotFound));
        crate::assert_with_log!(is_not_found, "region not found reason", true, is_not_found);
        let has_recommendation = explanation
            .recommendations
            .iter()
            .any(|rec| rec.contains("Verify region id"));
        crate::assert_with_log!(
            has_recommendation,
            "recommendation present",
            true,
            has_recommendation
        );
        crate::test_complete!("test_explain_region_open_unknown_region_returns_reason");
    }

    #[test]
    fn test_explain_region_open_closed_region_has_no_reasons() {
        init_test("test_explain_region_open_closed_region_has_no_reasons");
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let region = state.region(root).expect("root missing");
        let did_close =
            region.begin_close(None) && region.begin_finalize() && region.complete_close();
        crate::assert_with_log!(did_close, "region closed", true, did_close);

        let diagnostics = Diagnostics::new(Arc::new(state));
        let explanation = diagnostics.explain_region_open(root);
        crate::assert_with_log!(
            explanation.region_state == Some(RegionState::Closed),
            "closed state",
            true,
            explanation.region_state == Some(RegionState::Closed)
        );
        crate::assert_with_log!(
            explanation.reasons.is_empty(),
            "no reasons",
            true,
            explanation.reasons.is_empty()
        );
        crate::assert_with_log!(
            explanation.recommendations.is_empty(),
            "no recommendations",
            true,
            explanation.recommendations.is_empty()
        );
        crate::test_complete!("test_explain_region_open_closed_region_has_no_reasons");
    }

    #[test]
    fn test_explain_region_open_reports_children_tasks_obligations() {
        init_test("test_explain_region_open_reports_children_tasks_obligations");
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let child = insert_child_region(&mut state, root);

        let task_id = insert_task(&mut state, root, TaskState::Running);
        let task = state.task_mut(task_id).expect("task missing");
        task.total_polls = 7;

        let obligation_id = insert_obligation(
            &mut state,
            root,
            task_id,
            ObligationKind::SendPermit,
            Time::from_millis(10),
        );

        let diagnostics = Diagnostics::new(Arc::new(state));
        let explanation = diagnostics.explain_region_open(root);

        let mut saw_child = false;
        let mut saw_task = false;
        let mut saw_obligation = false;
        for reason in &explanation.reasons {
            match reason {
                Reason::ChildRegionOpen { child_id, .. } if *child_id == child => {
                    saw_child = true;
                }
                Reason::TaskRunning {
                    task_id: id,
                    poll_count,
                    ..
                } if *id == task_id && *poll_count == 7 => {
                    saw_task = true;
                }
                Reason::ObligationHeld {
                    obligation_id: id,
                    holder_task,
                    ..
                } if *id == obligation_id && *holder_task == task_id => {
                    saw_obligation = true;
                }
                _ => {}
            }
        }
        crate::assert_with_log!(saw_child, "child reason", true, saw_child);
        crate::assert_with_log!(saw_task, "task reason", true, saw_task);
        crate::assert_with_log!(saw_obligation, "obligation reason", true, saw_obligation);

        let recs = &explanation.recommendations;
        let has_child_rec = recs.iter().any(|r| r.contains("child regions"));
        let has_task_rec = recs.iter().any(|r| r.contains("live tasks"));
        let has_obligation_rec = recs.iter().any(|r| r.contains("obligations"));
        crate::assert_with_log!(has_child_rec, "child rec", true, has_child_rec);
        crate::assert_with_log!(has_task_rec, "task rec", true, has_task_rec);
        crate::assert_with_log!(
            has_obligation_rec,
            "obligation rec",
            true,
            has_obligation_rec
        );

        let rendered = explanation.to_string();
        crate::assert_with_log!(
            rendered.contains("child region"),
            "display includes child",
            true,
            rendered.contains("child region")
        );
        crate::assert_with_log!(
            rendered.contains("obligation"),
            "display includes obligation",
            true,
            rendered.contains("obligation")
        );
        crate::test_complete!("test_explain_region_open_reports_children_tasks_obligations");
    }

    #[test]
    fn test_explain_region_open_nested_child_reports_immediate_child() {
        init_test("test_explain_region_open_nested_child_reports_immediate_child");
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let child = insert_child_region(&mut state, root);
        let grandchild = insert_child_region(&mut state, child);

        let diagnostics = Diagnostics::new(Arc::new(state));
        let explanation = diagnostics.explain_region_open(child);

        let saw_grandchild = explanation.reasons.iter().any(|reason| {
            matches!(
                reason,
                Reason::ChildRegionOpen { child_id, .. } if *child_id == grandchild
            )
        });
        crate::assert_with_log!(saw_grandchild, "grandchild reason", true, saw_grandchild);
        crate::test_complete!("test_explain_region_open_nested_child_reports_immediate_child");
    }

    #[test]
    fn test_explain_task_blocked_running_notified_reports_schedule() {
        init_test("test_explain_task_blocked_running_notified_reports_schedule");
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let task_id = insert_task(&mut state, root, TaskState::Running);
        let task = state.task_mut(task_id).expect("task missing");
        let notified = task.wake_state.notify();
        crate::assert_with_log!(notified, "wake notified", true, notified);
        task.waiters.push(TaskId::new_for_test(77, 0));

        let diagnostics = Diagnostics::new(Arc::new(state));
        let explanation = diagnostics.explain_task_blocked(task_id);
        crate::assert_with_log!(
            matches!(explanation.block_reason, BlockReason::AwaitingSchedule),
            "awaiting schedule",
            true,
            matches!(explanation.block_reason, BlockReason::AwaitingSchedule)
        );
        let has_waiters = explanation.details.iter().any(|d| d.contains("waiters"));
        crate::assert_with_log!(has_waiters, "waiters detail", true, has_waiters);
        crate::test_complete!("test_explain_task_blocked_running_notified_reports_schedule");
    }

    #[test]
    fn test_explain_task_blocked_cancel_requested_includes_reason() {
        init_test("test_explain_task_blocked_cancel_requested_includes_reason");
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let reason = CancelReason::user("stop");
        let cleanup_budget = reason.cleanup_budget();
        let task_id = insert_task(
            &mut state,
            root,
            TaskState::CancelRequested {
                reason,
                cleanup_budget,
            },
        );

        let diagnostics = Diagnostics::new(Arc::new(state));
        let explanation = diagnostics.explain_task_blocked(task_id);
        let matches_reason = matches!(
            explanation.block_reason,
            BlockReason::CancelRequested {
                reason: CancelReasonInfo {
                    kind: CancelKind::User,
                    message: Some(_)
                }
            }
        );
        crate::assert_with_log!(matches_reason, "cancel requested", true, matches_reason);
        let rendered = explanation.to_string();
        crate::assert_with_log!(
            rendered.contains("cancel requested"),
            "display includes cancel",
            true,
            rendered.contains("cancel requested")
        );
        crate::test_complete!("test_explain_task_blocked_cancel_requested_includes_reason");
    }

    #[test]
    fn test_explain_task_blocked_completed_reports_completed() {
        init_test("test_explain_task_blocked_completed_reports_completed");
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let task_id = insert_task(&mut state, root, TaskState::Completed(Outcome::Ok(())));

        let diagnostics = Diagnostics::new(Arc::new(state));
        let explanation = diagnostics.explain_task_blocked(task_id);
        crate::assert_with_log!(
            matches!(explanation.block_reason, BlockReason::Completed),
            "completed",
            true,
            matches!(explanation.block_reason, BlockReason::Completed)
        );
        crate::test_complete!("test_explain_task_blocked_completed_reports_completed");
    }

    #[test]
    fn test_find_leaked_obligations_sorted_and_aged() {
        init_test("test_find_leaked_obligations_sorted_and_aged");
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let child = insert_child_region(&mut state, root);

        let clock = Arc::new(VirtualClock::starting_at(Time::from_millis(100)));
        state.set_timer_driver(TimerDriverHandle::with_virtual_clock(Arc::clone(&clock)));

        let root_task = insert_task(&mut state, root, TaskState::Running);
        let child_task = insert_task(&mut state, child, TaskState::Running);

        let root_ob = insert_obligation(
            &mut state,
            root,
            root_task,
            ObligationKind::Ack,
            Time::from_millis(10),
        );
        let child_ob = insert_obligation(
            &mut state,
            child,
            child_task,
            ObligationKind::Lease,
            Time::from_millis(20),
        );

        let diagnostics = Diagnostics::new(Arc::new(state));
        let leaks = diagnostics.find_leaked_obligations();
        crate::assert_with_log!(leaks.len() == 2, "two leaks", 2usize, leaks.len());

        crate::assert_with_log!(
            leaks[0].region_id == root,
            "root first",
            true,
            leaks[0].region_id == root
        );
        crate::assert_with_log!(
            leaks[1].region_id == child,
            "child second",
            true,
            leaks[1].region_id == child
        );
        crate::assert_with_log!(
            leaks[0].obligation_id == root_ob,
            "root obligation id",
            true,
            leaks[0].obligation_id == root_ob
        );
        crate::assert_with_log!(
            leaks[1].obligation_id == child_ob,
            "child obligation id",
            true,
            leaks[1].obligation_id == child_ob
        );

        let root_age_ms = leaks[0].age.as_millis();
        let child_age_ms = leaks[1].age.as_millis();
        crate::assert_with_log!(root_age_ms == 90, "root age", 90u128, root_age_ms);
        crate::assert_with_log!(child_age_ms == 80, "child age", 80u128, child_age_ms);

        crate::test_complete!("test_find_leaked_obligations_sorted_and_aged");
    }

    #[test]
    fn test_find_leaked_obligations_uses_state_clock_without_timer_driver() {
        init_test("test_find_leaked_obligations_uses_state_clock_without_timer_driver");
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let task_id = insert_task(&mut state, root, TaskState::Running);
        state.now = Time::from_millis(250);

        let obligation_id = insert_obligation(
            &mut state,
            root,
            task_id,
            ObligationKind::Lease,
            Time::from_millis(10),
        );

        let diagnostics = Diagnostics::new(Arc::new(state));
        let leaks = diagnostics.find_leaked_obligations();
        crate::assert_with_log!(leaks.len() == 1, "single leak", 1usize, leaks.len());
        crate::assert_with_log!(
            leaks[0].obligation_id == obligation_id,
            "obligation id preserved",
            true,
            leaks[0].obligation_id == obligation_id
        );

        let age_ms = leaks[0].age.as_millis();
        crate::assert_with_log!(age_ms == 240, "age uses state clock", 240u128, age_ms);

        crate::test_complete!("test_find_leaked_obligations_uses_state_clock_without_timer_driver");
    }

    // Pure data-type tests (wave 18 – CyanBarn)

    #[test]
    fn reason_debug_clone() {
        let r = Reason::RegionNotFound;
        let r2 = r;
        assert!(format!("{r2:?}").contains("RegionNotFound"));
    }

    #[test]
    fn reason_display_all_variants() {
        let r1 = Reason::RegionNotFound;
        assert!(r1.to_string().contains("not found"));

        let r2 = Reason::ChildRegionOpen {
            child_id: RegionId::new_for_test(1, 0),
            child_state: RegionState::Open,
        };
        assert!(r2.to_string().contains("child region"));

        let r3 = Reason::TaskRunning {
            task_id: TaskId::new_for_test(1, 0),
            task_state: "Running".into(),
            poll_count: 5,
        };
        assert!(r3.to_string().contains("task"));
        assert!(r3.to_string().contains("polls=5"));

        let r4 = Reason::ObligationHeld {
            obligation_id: ObligationId::new_for_test(1, 0),
            obligation_type: "Lease".into(),
            holder_task: TaskId::new_for_test(2, 0),
        };
        assert!(r4.to_string().contains("obligation"));
        assert!(r4.to_string().contains("Lease"));
    }

    #[test]
    fn region_open_explanation_debug_clone() {
        let explanation = RegionOpenExplanation {
            region_id: RegionId::new_for_test(1, 0),
            region_state: Some(RegionState::Open),
            reasons: vec![Reason::RegionNotFound],
            recommendations: vec!["check it".into()],
        };
        let explanation2 = explanation;
        assert!(format!("{explanation2:?}").contains("RegionOpenExplanation"));
    }

    #[test]
    fn region_open_explanation_display() {
        let explanation = RegionOpenExplanation {
            region_id: RegionId::new_for_test(1, 0),
            region_state: Some(RegionState::Open),
            reasons: vec![Reason::RegionNotFound],
            recommendations: vec!["fix it".into()],
        };
        let s = explanation.to_string();
        assert!(s.contains("still open"));
        assert!(s.contains("fix it"));
    }

    #[test]
    fn task_blocked_explanation_debug_clone() {
        let explanation = TaskBlockedExplanation {
            task_id: TaskId::new_for_test(1, 0),
            block_reason: BlockReason::NotStarted,
            details: vec!["detail".into()],
            recommendations: vec!["wait".into()],
        };
        let explanation2 = explanation;
        assert!(format!("{explanation2:?}").contains("TaskBlockedExplanation"));
    }

    #[test]
    fn task_blocked_explanation_display() {
        let explanation = TaskBlockedExplanation {
            task_id: TaskId::new_for_test(1, 0),
            block_reason: BlockReason::AwaitingSchedule,
            details: vec!["pending wake".into()],
            recommendations: vec!["wait for scheduler".into()],
        };
        let s = explanation.to_string();
        assert!(s.contains("blocked"));
        assert!(s.contains("awaiting schedule"));
    }

    #[test]
    fn block_reason_debug_clone() {
        let r = BlockReason::TaskNotFound;
        let r2 = r;
        assert!(format!("{r2:?}").contains("TaskNotFound"));
    }

    #[test]
    fn block_reason_display_all_variants() {
        let variants: Vec<BlockReason> = vec![
            BlockReason::TaskNotFound,
            BlockReason::NotStarted,
            BlockReason::AwaitingSchedule,
            BlockReason::AwaitingFuture {
                description: "channel recv".into(),
            },
            BlockReason::CancelRequested {
                reason: CancelReasonInfo {
                    kind: CancelKind::User,
                    message: Some("stop".into()),
                },
            },
            BlockReason::RunningCleanup {
                reason: CancelReasonInfo {
                    kind: CancelKind::User,
                    message: None,
                },
                polls_remaining: 10,
            },
            BlockReason::Finalizing {
                reason: CancelReasonInfo {
                    kind: CancelKind::User,
                    message: None,
                },
                polls_remaining: 5,
            },
            BlockReason::Completed,
        ];
        for v in &variants {
            assert!(!v.to_string().is_empty());
        }
    }

    #[test]
    fn cancellation_explanation_debug_clone() {
        let explanation = CancellationExplanation {
            kind: CancelKind::User,
            message: Some("timeout".into()),
            propagation_path: vec![CancellationStep {
                region_id: RegionId::new_for_test(1, 0),
                kind: CancelKind::User,
            }],
        };
        let explanation2 = explanation;
        assert!(format!("{explanation2:?}").contains("CancellationExplanation"));
    }

    #[test]
    fn cancellation_step_debug_clone() {
        let step = CancellationStep {
            region_id: RegionId::new_for_test(1, 0),
            kind: CancelKind::User,
        };
        let step2 = step;
        assert!(format!("{step2:?}").contains("CancellationStep"));
    }

    #[test]
    fn cancel_reason_info_debug_clone_display() {
        let info = CancelReasonInfo {
            kind: CancelKind::User,
            message: Some("stop".into()),
        };
        let info2 = info.clone();
        assert!(format!("{info2:?}").contains("CancelReasonInfo"));
        let s = info.to_string();
        assert!(s.contains("stop"));

        let info_no_msg = CancelReasonInfo {
            kind: CancelKind::User,
            message: None,
        };
        assert!(!info_no_msg.to_string().is_empty());
    }

    #[test]
    fn obligation_leak_debug_clone() {
        let leak = ObligationLeak {
            obligation_id: ObligationId::new_for_test(1, 0),
            obligation_type: "Ack".into(),
            holder_task: Some(TaskId::new_for_test(2, 0)),
            region_id: RegionId::new_for_test(1, 0),
            age: std::time::Duration::from_secs(60),
        };
        let leak2 = leak;
        assert!(format!("{leak2:?}").contains("ObligationLeak"));
    }

    #[test]
    fn directional_deadlock_cycle_detection_reports_critical() {
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let t1 = insert_task(&mut state, root, TaskState::Running);
        let t2 = insert_task(&mut state, root, TaskState::Running);
        state.task_mut(t1).expect("t1").waiters.push(t2); // t2 -> t1
        state.task_mut(t2).expect("t2").waiters.push(t1); // t1 -> t2

        let diagnostics = Diagnostics::new(Arc::new(state));
        let report = diagnostics.analyze_directional_deadlock();
        assert_eq!(report.severity, DeadlockSeverity::Critical);
        assert!(!report.cycles.is_empty());
        assert!(report.cycles[0].trapped);
        assert!(report.cycles[0].tasks.contains(&t1));
        assert!(report.cycles[0].tasks.contains(&t2));
    }

    #[test]
    fn structural_health_reports_deadlocked_for_trapped_cycle() {
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let t1 = insert_task(&mut state, root, TaskState::Running);
        let t2 = insert_task(&mut state, root, TaskState::Running);
        state.task_mut(t1).expect("t1").waiters.push(t2);
        state.task_mut(t2).expect("t2").waiters.push(t1);

        let diagnostics = Diagnostics::new(Arc::new(state));
        let report = diagnostics.analyze_structural_health();
        assert!(matches!(
            report.classification,
            crate::observability::spectral_health::HealthClassification::Deadlocked
        ));
    }

    #[test]
    fn explain_region_open_includes_directional_deadlock_recommendation() {
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let t1 = insert_task(&mut state, root, TaskState::Running);
        let t2 = insert_task(&mut state, root, TaskState::Running);
        state.task_mut(t1).expect("t1").waiters.push(t2);
        state.task_mut(t2).expect("t2").waiters.push(t1);

        let diagnostics = Diagnostics::new(Arc::new(state));
        let explanation = diagnostics.explain_region_open(root);
        assert!(
            explanation
                .recommendations
                .iter()
                .any(|r| r.contains("Directional deadlock risk")),
            "expected directional deadlock recommendation"
        );
    }

    #[test]
    fn advanced_observability_contract_has_sorted_dimensions_and_classes() {
        let contract = advanced_observability_contract();

        let classes: Vec<&str> = contract
            .event_classes
            .iter()
            .map(|item| item.class_id.as_str())
            .collect();
        let mut sorted_classes = classes.clone();
        sorted_classes.sort_unstable();
        sorted_classes.dedup();
        assert_eq!(classes, sorted_classes);

        let dimensions: Vec<&str> = contract
            .troubleshooting_dimensions
            .iter()
            .map(|item| item.dimension.as_str())
            .collect();
        let mut sorted_dimensions = dimensions.clone();
        sorted_dimensions.sort_unstable();
        sorted_dimensions.dedup();
        assert_eq!(dimensions, sorted_dimensions);
    }

    #[test]
    fn classify_baseline_log_event_maps_known_event() {
        let classified = classify_baseline_log_event(BaselineLogEvent {
            flow_id: "execution",
            event_kind: "command_start",
            outcome_class: "success",
        })
        .expect("classification should succeed");

        assert_eq!(classified.event_class, AdvancedEventClass::CommandLifecycle);
        assert_eq!(classified.severity, AdvancedSeverity::Info);
        assert!(classified.conflicts.is_empty());
        assert!(
            classified
                .dimensions
                .contains(&TroubleshootingDimension::OperatorAction)
        );
    }

    #[test]
    fn classify_baseline_log_event_detects_flow_event_conflict() {
        let classified = classify_baseline_log_event(BaselineLogEvent {
            flow_id: "execution",
            event_kind: "integration_sync",
            outcome_class: "success",
        })
        .expect("classification should succeed with conflict");

        assert_eq!(classified.severity, AdvancedSeverity::Critical);
        assert!(classified.conflicts.iter().any(|conflict| matches!(
            conflict,
            AdvancedClassificationConflict::FlowEventMismatch { .. }
        )));
    }

    #[test]
    fn classify_baseline_log_event_detects_outcome_event_conflict() {
        let classified = classify_baseline_log_event(BaselineLogEvent {
            flow_id: "integration",
            event_kind: "integration_error",
            outcome_class: "success",
        })
        .expect("classification should succeed with conflict");

        assert_eq!(
            classified.event_class,
            AdvancedEventClass::IntegrationReliability
        );
        assert_eq!(classified.severity, AdvancedSeverity::Error);
        assert!(classified.conflicts.iter().any(|conflict| matches!(
            conflict,
            AdvancedClassificationConflict::OutcomeEventMismatch { .. }
        )));
    }

    #[test]
    fn classify_baseline_log_events_is_deterministic() {
        let stream = vec![
            BaselineLogEvent {
                flow_id: "execution",
                event_kind: "command_start",
                outcome_class: "success",
            },
            BaselineLogEvent {
                flow_id: "execution",
                event_kind: "verification_summary",
                outcome_class: "failed",
            },
            BaselineLogEvent {
                flow_id: "replay",
                event_kind: "replay_complete",
                outcome_class: "cancelled",
            },
        ];

        let a = classify_baseline_log_events(&stream).expect("stream classification should pass");
        let b = classify_baseline_log_events(&stream).expect("stream classification should pass");
        assert_eq!(a, b);
        assert!(!a.is_empty());
        assert!(a.iter().all(|entry| !entry.narrative.is_empty()));
    }

    #[test]
    fn classify_baseline_log_event_rejects_unknown_tokens() {
        let err = classify_baseline_log_event(BaselineLogEvent {
            flow_id: "unknown",
            event_kind: "command_start",
            outcome_class: "success",
        })
        .expect_err("unknown flow must be rejected");
        assert!(err.contains("unknown flow_id"));
    }

    #[test]
    fn structured_diagnostic_report_snapshot_happy_path() {
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let task_id = insert_task(&mut state, root, TaskState::Completed(Outcome::Ok(())));

        let diagnostics = Diagnostics::new(Arc::new(state));
        let rendered = render_structured_diagnostic_report(
            "happy_path",
            "2026-04-20T22:00:00Z",
            None,
            Some(&diagnostics.explain_task_blocked(task_id)),
            &[],
        );

        let scrubbed = scrub_diagnostic_report_timestamps(&rendered);
        assert_diagnostic_report_snapshot("observability_diagnostics_happy_path", &scrubbed);
    }

    #[test]
    fn structured_diagnostic_report_snapshot_v2_happy_and_degraded() {
        let mut happy_state = RuntimeState::new();
        let happy_root = happy_state.create_root_region(Budget::INFINITE);
        let happy_task = insert_task(
            &mut happy_state,
            happy_root,
            TaskState::Completed(Outcome::Ok(())),
        );
        let happy_diagnostics = Diagnostics::new(Arc::new(happy_state));
        let happy_rendered = render_structured_diagnostic_report(
            "happy_path",
            "2026-04-20T22:00:00Z",
            None,
            Some(&happy_diagnostics.explain_task_blocked(happy_task)),
            &[],
        );
        let happy_scrubbed = scrub_diagnostic_report_timestamps(&happy_rendered);

        let mut degraded_state = RuntimeState::new();
        let degraded_root = degraded_state.create_root_region(Budget::INFINITE);
        let degraded_child = insert_child_region(&mut degraded_state, degraded_root);
        let clock = Arc::new(VirtualClock::starting_at(Time::from_millis(5_000)));
        degraded_state.set_timer_driver(TimerDriverHandle::with_virtual_clock(Arc::clone(&clock)));

        let degraded_root_task =
            insert_task(&mut degraded_state, degraded_root, TaskState::Running);
        degraded_state
            .task_mut(degraded_root_task)
            .expect("root task missing")
            .total_polls = 9;
        let degraded_child_task = insert_task(
            &mut degraded_state,
            degraded_child,
            TaskState::CancelRequested {
                reason: CancelReason::shutdown().with_message("node draining"),
                cleanup_budget: Budget::new().with_poll_quota(16),
            },
        );

        let _degraded_root_obligation = insert_obligation(
            &mut degraded_state,
            degraded_root,
            degraded_root_task,
            ObligationKind::Ack,
            Time::from_millis(500),
        );
        let _degraded_child_obligation = insert_obligation(
            &mut degraded_state,
            degraded_child,
            degraded_child_task,
            ObligationKind::Lease,
            Time::from_millis(750),
        );

        let degraded_diagnostics = Diagnostics::new(Arc::new(degraded_state));
        let mut degraded_task = degraded_diagnostics.explain_task_blocked(degraded_child_task);
        degraded_task
            .details
            .insert(0, "observed_at: 2026-04-20T22:00:05Z".to_string());
        degraded_task
            .recommendations
            .push("Continue draining child region tasks before sealing shutdown.".to_string());
        let degraded_leaks = degraded_diagnostics.find_leaked_obligations();
        let degraded_rendered = render_structured_diagnostic_report(
            "shutdown_drain",
            "2026-04-20T22:00:05Z",
            Some(&degraded_diagnostics.explain_region_open(degraded_root)),
            Some(&degraded_task),
            &degraded_leaks,
        );
        let degraded_scrubbed = scrub_diagnostic_report_timestamps(&degraded_rendered);

        let rendered = render_structured_diagnostic_report_v2(&[
            ("happy", &happy_scrubbed),
            ("degraded", &degraded_scrubbed),
        ]);
        assert_diagnostic_report_snapshot(
            "observability_diagnostics_structured_report_v2",
            &rendered,
        );
    }

    #[test]
    fn structured_diagnostic_report_snapshot_v3_happy_degraded_and_critical() {
        let mut happy_state = RuntimeState::new();
        let happy_root = happy_state.create_root_region(Budget::INFINITE);
        let happy_task = insert_task(
            &mut happy_state,
            happy_root,
            TaskState::Completed(Outcome::Ok(())),
        );
        let happy_diagnostics = Diagnostics::new(Arc::new(happy_state));
        let happy_rendered = render_structured_diagnostic_report(
            "happy_path",
            "2026-04-21T09:10:00Z",
            None,
            Some(&happy_diagnostics.explain_task_blocked(happy_task)),
            &[],
        );
        let happy_scrubbed = scrub_diagnostic_report_timestamps(&happy_rendered);

        let mut degraded_state = RuntimeState::new();
        let degraded_root = degraded_state.create_root_region(Budget::INFINITE);
        let degraded_child = insert_child_region(&mut degraded_state, degraded_root);
        let degraded_clock = Arc::new(VirtualClock::starting_at(Time::from_millis(5_000)));
        degraded_state.set_timer_driver(TimerDriverHandle::with_virtual_clock(Arc::clone(
            &degraded_clock,
        )));

        let degraded_root_task =
            insert_task(&mut degraded_state, degraded_root, TaskState::Running);
        degraded_state
            .task_mut(degraded_root_task)
            .expect("degraded root task missing")
            .total_polls = 9;
        let degraded_child_task = insert_task(
            &mut degraded_state,
            degraded_child,
            TaskState::CancelRequested {
                reason: CancelReason::shutdown().with_message("node draining"),
                cleanup_budget: Budget::new().with_poll_quota(16),
            },
        );
        let _degraded_root_obligation = insert_obligation(
            &mut degraded_state,
            degraded_root,
            degraded_root_task,
            ObligationKind::Ack,
            Time::from_millis(500),
        );
        let _degraded_child_obligation = insert_obligation(
            &mut degraded_state,
            degraded_child,
            degraded_child_task,
            ObligationKind::Lease,
            Time::from_millis(750),
        );

        let degraded_diagnostics = Diagnostics::new(Arc::new(degraded_state));
        let mut degraded_task = degraded_diagnostics.explain_task_blocked(degraded_child_task);
        degraded_task
            .details
            .insert(0, "observed_at: 2026-04-21T09:10:05Z".to_string());
        degraded_task
            .recommendations
            .push("Continue draining child region tasks before sealing shutdown.".to_string());
        let degraded_leaks = degraded_diagnostics.find_leaked_obligations();
        let degraded_rendered = render_structured_diagnostic_report(
            "shutdown_drain",
            "2026-04-21T09:10:05Z",
            Some(&degraded_diagnostics.explain_region_open(degraded_root)),
            Some(&degraded_task),
            &degraded_leaks,
        );
        let degraded_scrubbed = scrub_diagnostic_report_timestamps(&degraded_rendered);

        let mut critical_state = RuntimeState::new();
        let critical_root = critical_state.create_root_region(Budget::INFINITE);
        let critical_clock = Arc::new(VirtualClock::starting_at(Time::from_millis(1_500)));
        critical_state.set_timer_driver(TimerDriverHandle::with_virtual_clock(Arc::clone(
            &critical_clock,
        )));
        let critical_t1 = insert_task(&mut critical_state, critical_root, TaskState::Running);
        let critical_t2 = insert_task(&mut critical_state, critical_root, TaskState::Running);
        critical_state
            .task_mut(critical_t1)
            .expect("critical task 1 missing")
            .waiters
            .push(critical_t2);
        critical_state
            .task_mut(critical_t2)
            .expect("critical task 2 missing")
            .waiters
            .push(critical_t1);
        let _critical_obligation = insert_obligation(
            &mut critical_state,
            critical_root,
            critical_t1,
            ObligationKind::Ack,
            Time::from_millis(250),
        );

        let critical_diagnostics = Diagnostics::new(Arc::new(critical_state));
        let mut critical_task = critical_diagnostics.explain_task_blocked(critical_t1);
        critical_task
            .details
            .insert(0, "observed_at: 2026-04-21T09:10:09Z".to_string());
        critical_task
            .recommendations
            .push("Break the trapped wait cycle before allowing retries.".to_string());
        let critical_leaks = critical_diagnostics.find_leaked_obligations();
        let critical_rendered = render_structured_diagnostic_report(
            "critical_deadlock",
            "2026-04-21T09:10:09Z",
            Some(&critical_diagnostics.explain_region_open(critical_root)),
            Some(&critical_task),
            &critical_leaks,
        );
        let critical_scrubbed = scrub_diagnostic_report_timestamps(&critical_rendered);

        let rendered = render_structured_diagnostic_report_v3(&[
            DiagnosticReportV3Section {
                label: "happy",
                status: "passing",
                accounting: diagnostic_resource_accounting(&happy_diagnostics, 0),
                rendered: &happy_scrubbed,
            },
            DiagnosticReportV3Section {
                label: "degraded",
                status: "degraded",
                accounting: diagnostic_resource_accounting(
                    &degraded_diagnostics,
                    degraded_leaks.len(),
                ),
                rendered: &degraded_scrubbed,
            },
            DiagnosticReportV3Section {
                label: "critical",
                status: "critical",
                accounting: diagnostic_resource_accounting(
                    &critical_diagnostics,
                    critical_leaks.len(),
                ),
                rendered: &critical_scrubbed,
            },
        ]);
        assert_diagnostic_report_snapshot(
            "observability_diagnostics_structured_report_v3",
            &rendered,
        );
    }

    #[test]
    fn structured_diagnostic_report_snapshot_rate_limited() {
        let task = TaskBlockedExplanation {
            task_id: TaskId::new_for_test(11, 0),
            block_reason: BlockReason::AwaitingFuture {
                description: "rate-limited by token bucket".to_string(),
            },
            details: vec![
                "next_retry_at: 2026-04-20T22:00:02Z".to_string(),
                "queue_depth: 3".to_string(),
                "limiter: outbound_http".to_string(),
            ],
            recommendations: vec!["Wait for the limiter budget to replenish.".to_string()],
        };

        let rendered = render_structured_diagnostic_report(
            "rate_limited",
            "2026-04-20T22:00:01Z",
            None,
            Some(&task),
            &[],
        );

        let scrubbed = scrub_diagnostic_report_timestamps(&rendered);
        assert_diagnostic_report_snapshot("observability_diagnostics_rate_limited", &scrubbed);
    }

    #[test]
    fn structured_diagnostic_report_snapshot_oom() {
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let task_id = insert_task(
            &mut state,
            root,
            TaskState::CancelRequested {
                reason: CancelReason::resource_unavailable().with_message("oom"),
                cleanup_budget: Budget::new().with_poll_quota(64),
            },
        );

        let diagnostics = Diagnostics::new(Arc::new(state));
        let mut task = diagnostics.explain_task_blocked(task_id);
        task.details
            .insert(0, "observed_at: 2026-04-20T22:00:03Z".to_string());
        task.details.push("headroom: 0.00".to_string());
        task.details.push("allocator_lane: region_heap".to_string());
        task.recommendations
            .push("Relieve memory pressure before retrying.".to_string());

        let rendered = render_structured_diagnostic_report(
            "oom",
            "2026-04-20T22:00:03Z",
            Some(&diagnostics.explain_region_open(root)),
            Some(&task),
            &[],
        );

        let scrubbed = scrub_diagnostic_report_timestamps(&rendered);
        assert_diagnostic_report_snapshot("observability_diagnostics_oom", &scrubbed);
    }

    #[test]
    fn structured_diagnostic_report_snapshot_deadline_exceeded() {
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let clock = Arc::new(VirtualClock::starting_at(Time::from_millis(1_500)));
        state.set_timer_driver(TimerDriverHandle::with_virtual_clock(Arc::clone(&clock)));

        let task_id = insert_task(
            &mut state,
            root,
            TaskState::Finalizing {
                reason: CancelReason::deadline().with_message("deadline exceeded"),
                cleanup_budget: Budget::new().with_poll_quota(42),
            },
        );
        let _obligation_id = insert_obligation(
            &mut state,
            root,
            task_id,
            ObligationKind::Lease,
            Time::from_millis(250),
        );

        let diagnostics = Diagnostics::new(Arc::new(state));
        let mut task = diagnostics.explain_task_blocked(task_id);
        task.details
            .insert(0, "deadline_at: 2026-04-20T22:00:04Z".to_string());
        task.recommendations
            .push("Inspect cleanup latency and tighten downstream budgets.".to_string());
        let leaks = diagnostics.find_leaked_obligations();

        let rendered = render_structured_diagnostic_report(
            "deadline_exceeded",
            "2026-04-20T22:00:04Z",
            Some(&diagnostics.explain_region_open(root)),
            Some(&task),
            &leaks,
        );

        let scrubbed = scrub_diagnostic_report_timestamps(&rendered);
        assert_diagnostic_report_snapshot("observability_diagnostics_deadline_exceeded", &scrubbed);
    }

    #[test]
    fn structured_diagnostic_report_snapshot_shutdown_drain() {
        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let child = insert_child_region(&mut state, root);
        let clock = Arc::new(VirtualClock::starting_at(Time::from_millis(5_000)));
        state.set_timer_driver(TimerDriverHandle::with_virtual_clock(Arc::clone(&clock)));

        let root_task = insert_task(&mut state, root, TaskState::Running);
        state
            .task_mut(root_task)
            .expect("root task missing")
            .total_polls = 9;
        let child_task = insert_task(
            &mut state,
            child,
            TaskState::CancelRequested {
                reason: CancelReason::shutdown().with_message("node draining"),
                cleanup_budget: Budget::new().with_poll_quota(16),
            },
        );

        let _root_obligation = insert_obligation(
            &mut state,
            root,
            root_task,
            ObligationKind::Ack,
            Time::from_millis(500),
        );
        let _child_obligation = insert_obligation(
            &mut state,
            child,
            child_task,
            ObligationKind::Lease,
            Time::from_millis(750),
        );

        let diagnostics = Diagnostics::new(Arc::new(state));
        let mut task = diagnostics.explain_task_blocked(child_task);
        task.details
            .insert(0, "observed_at: 2026-04-20T22:00:05Z".to_string());
        task.recommendations
            .push("Continue draining child region tasks before sealing shutdown.".to_string());
        let leaks = diagnostics.find_leaked_obligations();

        let rendered = render_structured_diagnostic_report(
            "shutdown_drain",
            "2026-04-20T22:00:05Z",
            Some(&diagnostics.explain_region_open(root)),
            Some(&task),
            &leaks,
        );

        let scrubbed = scrub_diagnostic_report_timestamps(&rendered);
        assert_diagnostic_report_snapshot("observability_diagnostics_shutdown_drain", &scrubbed);
    }

    #[test]
    fn diagnostics_healthcheck_json_snapshot_scrubbed() {
        init_test("diagnostics_healthcheck_json_snapshot_scrubbed");
        let mut passing_state = RuntimeState::new();
        let passing_root = passing_state.create_root_region(Budget::INFINITE);
        let passing_region = passing_state
            .region(passing_root)
            .expect("passing root missing");
        let did_close = passing_region.begin_close(None)
            && passing_region.begin_finalize()
            && passing_region.complete_close();
        assert!(did_close, "passing root should close cleanly");
        let passing = scrub_diagnostic_healthcheck_json(render_diagnostic_healthcheck_json(
            &Diagnostics::new(Arc::new(passing_state)),
            passing_root,
            "2026-04-21T08:30:00Z",
            4101,
        ));
        assert_eq!(
            passing.get("status").and_then(Value::as_str),
            Some("passing")
        );

        let mut degraded_state = RuntimeState::new();
        let degraded_root = degraded_state.create_root_region(Budget::INFINITE);
        let degraded_tasks = insert_wait_path(&mut degraded_state, degraded_root, 11);
        degraded_state
            .task_mut(*degraded_tasks.first().expect("degraded path head"))
            .expect("degraded head task missing")
            .total_polls = 3;
        let degraded_diagnostics = Diagnostics::new(Arc::new(degraded_state));
        assert!(
            matches!(
                degraded_diagnostics
                    .analyze_structural_health()
                    .classification,
                HealthClassification::Degraded { .. }
            ),
            "expected degraded classification for chained wait path"
        );
        let degraded = scrub_diagnostic_healthcheck_json(render_diagnostic_healthcheck_json(
            &degraded_diagnostics,
            degraded_root,
            "2026-04-21T08:30:01Z",
            4102,
        ));
        assert_eq!(
            degraded.get("status").and_then(Value::as_str),
            Some("degraded")
        );

        let mut critical_state = RuntimeState::new();
        let critical_root = critical_state.create_root_region(Budget::INFINITE);
        let clock = Arc::new(VirtualClock::starting_at(Time::from_millis(1_500)));
        critical_state.set_timer_driver(TimerDriverHandle::with_virtual_clock(clock));
        let t1 = insert_task(&mut critical_state, critical_root, TaskState::Running);
        let t2 = insert_task(&mut critical_state, critical_root, TaskState::Running);
        critical_state
            .task_mut(t1)
            .expect("critical t1")
            .waiters
            .push(t2);
        critical_state
            .task_mut(t2)
            .expect("critical t2")
            .waiters
            .push(t1);
        let _critical_obligation = insert_obligation(
            &mut critical_state,
            critical_root,
            t1,
            ObligationKind::Ack,
            Time::from_millis(250),
        );
        let critical_diagnostics = Diagnostics::new(Arc::new(critical_state));
        assert_eq!(
            critical_diagnostics.analyze_directional_deadlock().severity,
            DeadlockSeverity::Critical
        );
        let critical = scrub_diagnostic_healthcheck_json(render_diagnostic_healthcheck_json(
            &critical_diagnostics,
            critical_root,
            "2026-04-21T08:30:02Z",
            4103,
        ));
        assert_eq!(
            critical.get("status").and_then(Value::as_str),
            Some("critical")
        );

        assert_diagnostic_healthcheck_snapshot(
            "observability_diagnostics_healthcheck_json",
            &json!({
                "passing": passing,
                "degraded": degraded,
                "critical": critical,
            }),
        );
    }

    #[test]
    fn tail_latency_taxonomy_contract_has_unique_required_keys() {
        let contract = tail_latency_taxonomy_contract();
        let keys: Vec<&str> = contract
            .required_log_fields
            .iter()
            .map(|field| field.key.as_str())
            .collect();
        let mut unique_keys = keys.clone();
        unique_keys.sort_unstable();
        unique_keys.dedup();
        assert_eq!(keys.len(), unique_keys.len());
    }

    #[test]
    fn tail_latency_taxonomy_contract_includes_unknown_bucket_and_signals() {
        let contract = tail_latency_taxonomy_contract();
        assert_eq!(
            contract.contract_version,
            TAIL_LATENCY_TAXONOMY_CONTRACT_VERSION
        );
        assert_eq!(contract.unknown_bucket_key, "tail.unknown.unmeasured_ns");
        assert!(
            contract
                .required_log_fields
                .iter()
                .any(|field| field.key == contract.unknown_bucket_key && field.required)
        );
        assert!(contract.terms.iter().any(|term| {
            term.term_id == "unknown"
                && term.direct_duration_key == "tail.unknown.unmeasured_ns"
                && term
                    .signals
                    .iter()
                    .any(|signal| signal.structured_log_key == "tail.unknown.unmeasured_ns")
        }));
    }

    #[test]
    fn tail_latency_taxonomy_contract_core_signals_have_existing_files() {
        let contract = tail_latency_taxonomy_contract();
        let repo_root = std::path::Path::new(env!("CARGO_MANIFEST_DIR"));
        for signal in contract
            .terms
            .iter()
            .flat_map(|term| term.signals.iter())
            .filter(|signal| signal.core)
        {
            assert!(
                repo_root.join(&signal.producer_file).exists(),
                "producer file must exist: {}",
                signal.producer_file
            );
        }
    }

    #[test]
    fn diagnostics_debug() {
        let state = Arc::new(RuntimeState::new());
        let diagnostics = Diagnostics::new(state);
        assert!(format!("{diagnostics:?}").contains("Diagnostics"));
    }

    // ======================================================================
    // Runtime Introspection Conformance Tests (INTROSPECTION-CONF-001 to INTROSPECTION-CONF-010)
    //
    // These tests validate the behavioral contracts for observability diagnostic
    // endpoints, ensuring deterministic, idempotent, and cancel-safe introspection
    // queries that maintain consistent views of runtime state.
    // ======================================================================

    #[test]
    fn introspection_conf_001_diagnostic_query_result_idempotence() {
        init_test("introspection_conf_001_diagnostic_query_result_idempotence");

        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let task_id = insert_task(&mut state, root, TaskState::Running);
        let diagnostics = Diagnostics::new(Arc::new(state));

        // Multiple calls to the same diagnostic method must return identical results
        let explanation1 = diagnostics.explain_region_open(root);
        let explanation2 = diagnostics.explain_region_open(root);
        let explanation3 = diagnostics.explain_region_open(root);

        crate::assert_with_log!(
            explanation1.region_id == explanation2.region_id,
            "region_id idempotent",
            true,
            explanation1.region_id == explanation2.region_id
        );
        crate::assert_with_log!(
            explanation2.region_id == explanation3.region_id,
            "region_id triple check",
            true,
            explanation2.region_id == explanation3.region_id
        );
        crate::assert_with_log!(
            explanation1.reasons.len() == explanation2.reasons.len(),
            "reasons count idempotent",
            explanation1.reasons.len(),
            explanation2.reasons.len()
        );
        crate::assert_with_log!(
            explanation2.reasons.len() == explanation3.reasons.len(),
            "reasons count triple check",
            explanation2.reasons.len(),
            explanation3.reasons.len()
        );

        // Task diagnostic idempotence
        let task1 = diagnostics.explain_task_blocked(task_id);
        let task2 = diagnostics.explain_task_blocked(task_id);
        let task3 = diagnostics.explain_task_blocked(task_id);

        crate::assert_with_log!(
            task1.task_id == task2.task_id,
            "task_id idempotent",
            true,
            task1.task_id == task2.task_id
        );
        crate::assert_with_log!(
            task2.task_id == task3.task_id,
            "task_id triple check",
            true,
            task2.task_id == task3.task_id
        );

        // Obligation leak detection idempotence
        let leaks1 = diagnostics.find_leaked_obligations();
        let leaks2 = diagnostics.find_leaked_obligations();
        let leaks3 = diagnostics.find_leaked_obligations();

        crate::assert_with_log!(
            leaks1.len() == leaks2.len(),
            "leaks count idempotent",
            leaks1.len(),
            leaks2.len()
        );
        crate::assert_with_log!(
            leaks2.len() == leaks3.len(),
            "leaks count triple check",
            leaks2.len(),
            leaks3.len()
        );

        crate::test_complete!("introspection_conf_001_diagnostic_query_result_idempotence");
    }

    #[test]
    fn introspection_conf_002_deterministic_ordering_of_diagnostic_results() {
        init_test("introspection_conf_002_deterministic_ordering_of_diagnostic_results");

        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);

        // Create multiple child regions and tasks in a specific order
        let child1 = insert_child_region(&mut state, root);
        let child2 = insert_child_region(&mut state, root);
        let child3 = insert_child_region(&mut state, root);

        let task1 = insert_task(&mut state, child1, TaskState::Running);
        let task2 = insert_task(&mut state, child2, TaskState::Running);
        let task3 = insert_task(&mut state, child3, TaskState::Running);

        // Create obligations in mixed order to test sorting
        let clock = Arc::new(VirtualClock::starting_at(Time::from_millis(100)));
        state.set_timer_driver(TimerDriverHandle::with_virtual_clock(clock));

        let _ob1 = insert_obligation(
            &mut state,
            child1,
            task1,
            ObligationKind::Ack,
            Time::from_millis(10),
        );
        let _ob3 = insert_obligation(
            &mut state,
            child3,
            task3,
            ObligationKind::Lease,
            Time::from_millis(30),
        );
        let _ob2 = insert_obligation(
            &mut state,
            child2,
            task2,
            ObligationKind::SendPermit,
            Time::from_millis(20),
        );

        let diagnostics = Diagnostics::new(Arc::new(state));

        // Test deterministic ordering across multiple calls
        let leaks_run1 = diagnostics.find_leaked_obligations();
        let leaks_run2 = diagnostics.find_leaked_obligations();
        let leaks_run3 = diagnostics.find_leaked_obligations();

        // Verify same ordering across all runs
        crate::assert_with_log!(
            leaks_run1.len() == 3,
            "leak count consistent",
            3usize,
            leaks_run1.len()
        );

        for i in 0..3 {
            crate::assert_with_log!(
                leaks_run1[i].obligation_id == leaks_run2[i].obligation_id,
                &format!("obligation_id ordering run1==run2 idx {}", i),
                true,
                leaks_run1[i].obligation_id == leaks_run2[i].obligation_id
            );
            crate::assert_with_log!(
                leaks_run2[i].obligation_id == leaks_run3[i].obligation_id,
                &format!("obligation_id ordering run2==run3 idx {}", i),
                true,
                leaks_run2[i].obligation_id == leaks_run3[i].obligation_id
            );
            crate::assert_with_log!(
                leaks_run1[i].region_id == leaks_run2[i].region_id,
                &format!("region_id ordering run1==run2 idx {}", i),
                true,
                leaks_run1[i].region_id == leaks_run2[i].region_id
            );
        }

        // Region explanations must have deterministic reason ordering
        let explanation1 = diagnostics.explain_region_open(root);
        let explanation2 = diagnostics.explain_region_open(root);

        crate::assert_with_log!(
            explanation1.reasons.len() == explanation2.reasons.len(),
            "reason count deterministic",
            explanation1.reasons.len(),
            explanation2.reasons.len()
        );

        for i in 0..explanation1.reasons.len().min(explanation2.reasons.len()) {
            let reason1_desc = format!("{:?}", explanation1.reasons[i]);
            let reason2_desc = format!("{:?}", explanation2.reasons[i]);
            crate::assert_with_log!(
                reason1_desc == reason2_desc,
                &format!("reason ordering idx {}", i),
                true,
                reason1_desc == reason2_desc
            );
        }

        crate::test_complete!(
            "introspection_conf_002_deterministic_ordering_of_diagnostic_results"
        );
    }

    #[test]
    fn introspection_conf_003_serialization_roundtrip_correctness() {
        init_test("introspection_conf_003_serialization_roundtrip_correctness");

        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let task_id = insert_task(&mut state, root, TaskState::Running);

        let clock = Arc::new(VirtualClock::starting_at(Time::from_millis(500)));
        state.set_timer_driver(TimerDriverHandle::with_virtual_clock(clock));

        let ob_id = insert_obligation(
            &mut state,
            root,
            task_id,
            ObligationKind::Ack,
            Time::from_millis(100),
        );

        let diagnostics = Diagnostics::new(Arc::new(state));

        // Test ObligationLeak serialization roundtrip
        let leaks = diagnostics.find_leaked_obligations();
        crate::assert_with_log!(
            !leaks.is_empty(),
            "has leaks for serialization test",
            true,
            !leaks.is_empty()
        );

        for leak in &leaks {
            // Verify all fields are populated and serializable
            crate::assert_with_log!(
                leak.obligation_id == ob_id,
                "obligation_id preserved",
                true,
                leak.obligation_id == ob_id
            );
            crate::assert_with_log!(
                !leak.obligation_type.is_empty(),
                "obligation_type serializable",
                true,
                !leak.obligation_type.is_empty()
            );
            crate::assert_with_log!(
                leak.holder_task == Some(task_id),
                "holder_task preserved",
                true,
                leak.holder_task == Some(task_id)
            );
            crate::assert_with_log!(
                leak.region_id == root,
                "region_id preserved",
                true,
                leak.region_id == root
            );
            crate::assert_with_log!(
                leak.age.as_millis() > 0,
                "age computed and serializable",
                true,
                leak.age.as_millis() > 0
            );

            // Test Debug formatting (pseudo-serialization)
            let debug_repr = format!("{:?}", leak);
            crate::assert_with_log!(
                debug_repr.contains("ObligationLeak"),
                "debug serialization includes type",
                true,
                debug_repr.contains("ObligationLeak")
            );
            crate::assert_with_log!(
                debug_repr.contains(&leak.obligation_type),
                "debug serialization includes obligation_type",
                true,
                debug_repr.contains(&leak.obligation_type)
            );
        }

        // Test RegionOpenExplanation display formatting (human-readable serialization)
        let explanation = diagnostics.explain_region_open(root);
        let display_repr = format!("{}", explanation);

        crate::assert_with_log!(
            display_repr.contains("Region"),
            "display contains region marker",
            true,
            display_repr.contains("Region")
        );
        crate::assert_with_log!(
            !display_repr.is_empty(),
            "display produces non-empty output",
            true,
            !display_repr.is_empty()
        );

        // Test TaskBlockedExplanation display formatting
        let task_explanation = diagnostics.explain_task_blocked(task_id);
        let task_display = format!("{}", task_explanation);

        crate::assert_with_log!(
            task_display.contains("Task"),
            "task display contains task marker",
            true,
            task_display.contains("Task")
        );
        crate::assert_with_log!(
            !task_display.is_empty(),
            "task display produces non-empty output",
            true,
            !task_display.is_empty()
        );

        crate::test_complete!("introspection_conf_003_serialization_roundtrip_correctness");
    }

    #[test]
    fn introspection_conf_004_scheduler_state_accuracy_in_diagnostics() {
        init_test("introspection_conf_004_scheduler_state_accuracy_in_diagnostics");

        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);

        // Create tasks in different scheduler states
        let running_task = insert_task(&mut state, root, TaskState::Running);
        let completed_task = insert_task(&mut state, root, TaskState::Completed(Outcome::Ok(())));
        let cancel_task = insert_task(
            &mut state,
            root,
            TaskState::CancelRequested {
                reason: CancelReason::user("test"),
                cleanup_budget: Budget::with_deadline_ns(100_000_000), // 100ms in ns
            },
        );

        // Configure scheduler-visible state
        let running_task_record = state.task_mut(running_task).expect("running task");
        running_task_record.total_polls = 5;
        running_task_record.last_polled_step = 100;
        let notified = running_task_record.wake_state.notify();
        crate::assert_with_log!(notified, "wake state notified", true, notified);

        let diagnostics = Diagnostics::new(Arc::new(state));

        // Verify scheduler state accuracy in task diagnostics
        let running_explanation = diagnostics.explain_task_blocked(running_task);
        crate::assert_with_log!(
            matches!(
                running_explanation.block_reason,
                BlockReason::AwaitingSchedule
            ),
            "running task shows awaiting schedule",
            true,
            matches!(
                running_explanation.block_reason,
                BlockReason::AwaitingSchedule
            )
        );

        let completed_explanation = diagnostics.explain_task_blocked(completed_task);
        crate::assert_with_log!(
            matches!(completed_explanation.block_reason, BlockReason::Completed),
            "completed task shows completed",
            true,
            matches!(completed_explanation.block_reason, BlockReason::Completed)
        );

        let cancel_explanation = diagnostics.explain_task_blocked(cancel_task);
        let is_cancel_requested = matches!(
            cancel_explanation.block_reason,
            BlockReason::CancelRequested { .. }
        );
        crate::assert_with_log!(
            is_cancel_requested,
            "cancel requested task shows cancel",
            true,
            is_cancel_requested
        );

        // Verify region state accuracy reflects scheduler dependencies
        let region_explanation = diagnostics.explain_region_open(root);

        let mut found_running = false;
        let found_completed = false;
        let mut found_cancel = false;

        for reason in &region_explanation.reasons {
            match reason {
                Reason::TaskRunning {
                    task_id,
                    poll_count,
                    ..
                } if *task_id == running_task => {
                    found_running = true;
                    crate::assert_with_log!(
                        *poll_count == 5,
                        "poll count accuracy",
                        5u64,
                        *poll_count
                    );
                }
                Reason::TaskRunning { task_id, .. } if *task_id == cancel_task => {
                    found_cancel = true;
                }
                _ => {}
            }
        }

        crate::assert_with_log!(
            found_running,
            "found running task reason",
            true,
            found_running
        );
        crate::assert_with_log!(found_cancel, "found cancel task reason", true, found_cancel);

        // Completed tasks should not appear as blocking reasons
        crate::assert_with_log!(
            !found_completed,
            "completed task not blocking",
            true,
            !found_completed
        );

        crate::test_complete!("introspection_conf_004_scheduler_state_accuracy_in_diagnostics");
    }

    #[test]
    fn introspection_conf_005_cross_method_consistency_of_diagnostic_data() {
        init_test("introspection_conf_005_cross_method_consistency_of_diagnostic_data");

        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let task_id = insert_task(&mut state, root, TaskState::Running);

        let clock = Arc::new(VirtualClock::starting_at(Time::from_millis(300)));
        state.set_timer_driver(TimerDriverHandle::with_virtual_clock(clock));

        let ob_id = insert_obligation(
            &mut state,
            root,
            task_id,
            ObligationKind::SendPermit,
            Time::from_millis(50),
        );

        let diagnostics = Diagnostics::new(Arc::new(state));

        // Cross-validate data between different diagnostic methods
        let region_explanation = diagnostics.explain_region_open(root);
        let task_explanation = diagnostics.explain_task_blocked(task_id);
        let leaked_obligations = diagnostics.find_leaked_obligations();

        // Verify task appears in both region and task diagnostics with consistent state
        let mut task_in_region_reasons = false;
        for reason in &region_explanation.reasons {
            if let Reason::TaskRunning { task_id: id, .. } = reason {
                if *id == task_id {
                    task_in_region_reasons = true;
                    break;
                }
            }
        }

        crate::assert_with_log!(
            task_in_region_reasons,
            "task appears in region explanation",
            true,
            task_in_region_reasons
        );
        crate::assert_with_log!(
            task_explanation.task_id == task_id,
            "task explanation has correct ID",
            true,
            task_explanation.task_id == task_id
        );

        // Verify obligation appears in both region and obligation leak diagnostics
        let mut obligation_in_region_reasons = false;
        for reason in &region_explanation.reasons {
            if let Reason::ObligationHeld {
                obligation_id: id,
                holder_task,
                ..
            } = reason
            {
                if *id == ob_id && *holder_task == task_id {
                    obligation_in_region_reasons = true;
                    break;
                }
            }
        }

        crate::assert_with_log!(
            obligation_in_region_reasons,
            "obligation appears in region explanation",
            true,
            obligation_in_region_reasons
        );
        crate::assert_with_log!(
            !leaked_obligations.is_empty(),
            "obligation appears in leak detection",
            true,
            !leaked_obligations.is_empty()
        );

        let found_leak = leaked_obligations
            .iter()
            .any(|leak| leak.obligation_id == ob_id && leak.holder_task == Some(task_id));
        crate::assert_with_log!(
            found_leak,
            "leak detection finds same obligation",
            true,
            found_leak
        );

        // Cross-validate timing information is consistent
        for leak in &leaked_obligations {
            if leak.obligation_id == ob_id {
                crate::assert_with_log!(
                    leak.age.as_millis() == 250, // 300 - 50 = 250ms
                    "age calculation consistent",
                    250u128,
                    leak.age.as_millis()
                );
            }
        }

        crate::test_complete!("introspection_conf_005_cross_method_consistency_of_diagnostic_data");
    }

    #[test]
    fn introspection_conf_006_temporal_consistency_of_diagnostic_queries() {
        init_test("introspection_conf_006_temporal_consistency_of_diagnostic_queries");

        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let task_id = insert_task(&mut state, root, TaskState::Running);

        let clock = Arc::new(VirtualClock::starting_at(Time::from_millis(1000)));
        state.set_timer_driver(TimerDriverHandle::with_virtual_clock(Arc::clone(&clock)));

        let ob_id = insert_obligation(
            &mut state,
            root,
            task_id,
            ObligationKind::Ack,
            Time::from_millis(100),
        );

        let diagnostics = Diagnostics::new(Arc::new(state));

        // Capture initial state
        let initial_leaks = diagnostics.find_leaked_obligations();
        crate::assert_with_log!(
            initial_leaks.len() == 1,
            "initial leak count",
            1usize,
            initial_leaks.len()
        );
        let initial_age = initial_leaks[0].age.as_millis();
        crate::assert_with_log!(
            initial_age == 900, // 1000 - 100 = 900ms
            "initial age calculation",
            900u128,
            initial_age
        );

        // Advance virtual clock
        clock.advance_to(Time::from_millis(2000));

        // Verify temporal consistency after clock advance
        let later_leaks = diagnostics.find_leaked_obligations();
        crate::assert_with_log!(
            later_leaks.len() == 1,
            "leak count preserved after clock advance",
            1usize,
            later_leaks.len()
        );

        let later_age = later_leaks[0].age.as_millis();
        crate::assert_with_log!(
            later_age == 1900, // 2000 - 100 = 1900ms
            "updated age calculation",
            1900u128,
            later_age
        );
        crate::assert_with_log!(
            later_leaks[0].obligation_id == ob_id,
            "obligation ID preserved across time",
            true,
            later_leaks[0].obligation_id == ob_id
        );

        // Verify timing consistency in multiple diagnostic methods
        let region_explanation = diagnostics.explain_region_open(root);
        let mut obligation_reason_found = false;
        for reason in &region_explanation.reasons {
            if let Reason::ObligationHeld {
                obligation_id: id, ..
            } = reason
            {
                if *id == ob_id {
                    obligation_reason_found = true;
                    break;
                }
            }
        }
        crate::assert_with_log!(
            obligation_reason_found,
            "temporal consistency across methods",
            true,
            obligation_reason_found
        );

        crate::test_complete!("introspection_conf_006_temporal_consistency_of_diagnostic_queries");
    }

    #[test]
    fn introspection_conf_007_resource_leak_detection_accuracy() {
        init_test("introspection_conf_007_resource_leak_detection_accuracy");

        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);
        let child1 = insert_child_region(&mut state, root);
        let child2 = insert_child_region(&mut state, root);

        let task1 = insert_task(&mut state, child1, TaskState::Running);
        let task2 = insert_task(&mut state, child2, TaskState::Running);
        let completed_task = insert_task(&mut state, root, TaskState::Completed(Outcome::Ok(())));

        let clock = Arc::new(VirtualClock::starting_at(Time::from_millis(1000)));
        state.set_timer_driver(TimerDriverHandle::with_virtual_clock(clock));

        // Create genuine leaks and non-leaks
        let leak1 = insert_obligation(
            &mut state,
            child1,
            task1,
            ObligationKind::Ack,
            Time::from_millis(100),
        );
        let leak2 = insert_obligation(
            &mut state,
            child2,
            task2,
            ObligationKind::SendPermit,
            Time::from_millis(200),
        );

        // This should NOT be considered leaked (completed task)
        let _non_leak = insert_obligation(
            &mut state,
            root,
            completed_task,
            ObligationKind::Lease,
            Time::from_millis(300),
        );

        let diagnostics = Diagnostics::new(Arc::new(state));

        // Verify leak detection accuracy
        let leaks = diagnostics.find_leaked_obligations();

        // Should detect exactly 2 leaks (not the completed task's obligation)
        crate::assert_with_log!(leaks.len() == 2, "accurate leak count", 2usize, leaks.len());

        // Verify leak details
        let leak_ids: Vec<ObligationId> = leaks.iter().map(|l| l.obligation_id).collect();
        crate::assert_with_log!(
            leak_ids.contains(&leak1),
            "detects first leak",
            true,
            leak_ids.contains(&leak1)
        );
        crate::assert_with_log!(
            leak_ids.contains(&leak2),
            "detects second leak",
            true,
            leak_ids.contains(&leak2)
        );

        // Verify age calculations for accuracy
        for leak in &leaks {
            match leak.obligation_id {
                id if id == leak1 => {
                    crate::assert_with_log!(
                        leak.age.as_millis() == 900, // 1000 - 100 = 900
                        "leak1 age accuracy",
                        900u128,
                        leak.age.as_millis()
                    );
                    crate::assert_with_log!(
                        leak.holder_task == Some(task1),
                        "leak1 holder accuracy",
                        true,
                        leak.holder_task == Some(task1)
                    );
                }
                id if id == leak2 => {
                    crate::assert_with_log!(
                        leak.age.as_millis() == 800, // 1000 - 200 = 800
                        "leak2 age accuracy",
                        800u128,
                        leak.age.as_millis()
                    );
                    crate::assert_with_log!(
                        leak.holder_task == Some(task2),
                        "leak2 holder accuracy",
                        true,
                        leak.holder_task == Some(task2)
                    );
                }
                _ => {
                    crate::assert_with_log!(false, "unexpected leak detected", true, false);
                }
            }
        }

        // Verify sorting by region ID (deterministic ordering)
        crate::assert_with_log!(
            leaks[0].region_id <= leaks[1].region_id,
            "leaks sorted by region",
            true,
            leaks[0].region_id <= leaks[1].region_id
        );

        crate::test_complete!("introspection_conf_007_resource_leak_detection_accuracy");
    }

    #[test]
    fn introspection_conf_008_deadlock_detection_determinism() {
        init_test("introspection_conf_008_deadlock_detection_determinism");

        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);

        // Create a deterministic deadlock scenario
        let task_a = insert_task(&mut state, root, TaskState::Running);
        let task_b = insert_task(&mut state, root, TaskState::Running);
        let task_c = insert_task(&mut state, root, TaskState::Running);

        // Create circular dependencies: A -> B -> C -> A
        state.task_mut(task_a).expect("task A").waiters.push(task_b);
        state.task_mut(task_b).expect("task B").waiters.push(task_c);
        state.task_mut(task_c).expect("task C").waiters.push(task_a);

        let diagnostics = Diagnostics::new(Arc::new(state));

        // Test deadlock detection determinism across multiple calls
        let report1 = diagnostics.analyze_directional_deadlock();
        let report2 = diagnostics.analyze_directional_deadlock();
        let report3 = diagnostics.analyze_directional_deadlock();

        // Verify deterministic severity classification
        crate::assert_with_log!(
            report1.severity == report2.severity,
            "severity deterministic run1==run2",
            true,
            report1.severity == report2.severity
        );
        crate::assert_with_log!(
            report2.severity == report3.severity,
            "severity deterministic run2==run3",
            true,
            report2.severity == report3.severity
        );
        crate::assert_with_log!(
            matches!(report1.severity, DeadlockSeverity::Critical),
            "detects critical deadlock",
            true,
            matches!(report1.severity, DeadlockSeverity::Critical)
        );

        // Verify deterministic cycle detection
        crate::assert_with_log!(
            report1.cycles.len() == report2.cycles.len(),
            "cycle count deterministic run1==run2",
            report1.cycles.len(),
            report2.cycles.len()
        );
        crate::assert_with_log!(
            report2.cycles.len() == report3.cycles.len(),
            "cycle count deterministic run2==run3",
            report2.cycles.len(),
            report3.cycles.len()
        );
        crate::assert_with_log!(
            !report1.cycles.is_empty(),
            "detects cycle",
            true,
            !report1.cycles.is_empty()
        );

        // Verify deterministic task set in cycle
        if !report1.cycles.is_empty() {
            let cycle1 = &report1.cycles[0];
            let cycle2 = &report2.cycles[0];
            let cycle3 = &report3.cycles[0];

            crate::assert_with_log!(
                cycle1.tasks.len() == cycle2.tasks.len(),
                "cycle task count deterministic run1==run2",
                cycle1.tasks.len(),
                cycle2.tasks.len()
            );
            crate::assert_with_log!(
                cycle2.tasks.len() == cycle3.tasks.len(),
                "cycle task count deterministic run2==run3",
                cycle2.tasks.len(),
                cycle3.tasks.len()
            );

            // Verify all expected tasks are in the cycle
            crate::assert_with_log!(
                cycle1.tasks.contains(&task_a),
                "cycle contains task A",
                true,
                cycle1.tasks.contains(&task_a)
            );
            crate::assert_with_log!(
                cycle1.tasks.contains(&task_b),
                "cycle contains task B",
                true,
                cycle1.tasks.contains(&task_b)
            );
            crate::assert_with_log!(
                cycle1.tasks.contains(&task_c),
                "cycle contains task C",
                true,
                cycle1.tasks.contains(&task_c)
            );

            crate::assert_with_log!(
                cycle1.trapped == cycle2.trapped,
                "trapped status deterministic",
                true,
                cycle1.trapped == cycle2.trapped
            );
        }

        // Test structural health consistency with deadlock detection
        let health1 = diagnostics.analyze_structural_health();
        let health2 = diagnostics.analyze_structural_health();

        let health_deterministic = match (&health1.classification, &health2.classification) {
            (
                crate::observability::spectral_health::HealthClassification::Healthy { .. },
                crate::observability::spectral_health::HealthClassification::Healthy { .. },
            ) => true,
            (
                crate::observability::spectral_health::HealthClassification::Deadlocked,
                crate::observability::spectral_health::HealthClassification::Deadlocked,
            ) => true,
            (
                crate::observability::spectral_health::HealthClassification::Degraded { .. },
                crate::observability::spectral_health::HealthClassification::Degraded { .. },
            ) => true,
            (
                crate::observability::spectral_health::HealthClassification::Critical { .. },
                crate::observability::spectral_health::HealthClassification::Critical { .. },
            ) => true,
            (
                crate::observability::spectral_health::HealthClassification::Fragmented { .. },
                crate::observability::spectral_health::HealthClassification::Fragmented { .. },
            ) => true,
            _ => false,
        };
        crate::assert_with_log!(
            health_deterministic,
            "structural health deterministic",
            true,
            health_deterministic
        );

        crate::test_complete!("introspection_conf_008_deadlock_detection_determinism");
    }

    #[test]
    fn introspection_conf_009_diagnostic_query_cancel_safety() {
        init_test("introspection_conf_009_diagnostic_query_cancel_safety");

        let mut state = RuntimeState::new();
        let root = state.create_root_region(Budget::INFINITE);

        // Create runtime state with various tasks and obligations
        let task1 = insert_task(&mut state, root, TaskState::Running);
        let task2 = insert_task(
            &mut state,
            root,
            TaskState::CancelRequested {
                reason: CancelReason::user("test"),
                cleanup_budget: Budget::with_deadline_ns(100_000_000), // 100ms in ns
            },
        );

        let clock = Arc::new(VirtualClock::starting_at(Time::from_millis(1000)));
        state.set_timer_driver(TimerDriverHandle::with_virtual_clock(clock));

        let _ob1 = insert_obligation(
            &mut state,
            root,
            task1,
            ObligationKind::Ack,
            Time::from_millis(100),
        );
        let _ob2 = insert_obligation(
            &mut state,
            root,
            task2,
            ObligationKind::Lease,
            Time::from_millis(200),
        );

        let diagnostics = Diagnostics::new(Arc::new(state));

        // Verify diagnostic queries are pure reads (cancel-safe)
        // These operations must not modify the runtime state

        // Capture baseline state snapshots through multiple query calls
        let baseline_explanation = diagnostics.explain_region_open(root);
        let baseline_task1_explanation = diagnostics.explain_task_blocked(task1);
        let baseline_task2_explanation = diagnostics.explain_task_blocked(task2);
        let baseline_leaks = diagnostics.find_leaked_obligations();
        let baseline_deadlock = diagnostics.analyze_directional_deadlock();
        let baseline_health = diagnostics.analyze_structural_health();

        // Perform the same queries again to ensure no state modification occurred
        let verify_explanation = diagnostics.explain_region_open(root);
        let verify_task1_explanation = diagnostics.explain_task_blocked(task1);
        let verify_task2_explanation = diagnostics.explain_task_blocked(task2);
        let verify_leaks = diagnostics.find_leaked_obligations();
        let verify_deadlock = diagnostics.analyze_directional_deadlock();
        let verify_health = diagnostics.analyze_structural_health();

        // Verify state immutability (cancel-safety)
        crate::assert_with_log!(
            baseline_explanation.reasons.len() == verify_explanation.reasons.len(),
            "region explanation cancel-safe",
            baseline_explanation.reasons.len(),
            verify_explanation.reasons.len()
        );

        let task1_reason_match = match (
            &baseline_task1_explanation.block_reason,
            &verify_task1_explanation.block_reason,
        ) {
            (BlockReason::AwaitingSchedule, BlockReason::AwaitingSchedule) => true,
            (BlockReason::NotStarted, BlockReason::NotStarted) => true,
            (a, b) => format!("{:?}", a) == format!("{:?}", b),
        };
        crate::assert_with_log!(
            task1_reason_match,
            "task1 explanation cancel-safe",
            true,
            task1_reason_match
        );

        let task2_cancel_match = matches!(
            (
                &baseline_task2_explanation.block_reason,
                &verify_task2_explanation.block_reason
            ),
            (
                BlockReason::CancelRequested { .. },
                BlockReason::CancelRequested { .. }
            )
        );
        crate::assert_with_log!(
            task2_cancel_match,
            "task2 cancel explanation cancel-safe",
            true,
            task2_cancel_match
        );

        crate::assert_with_log!(
            baseline_leaks.len() == verify_leaks.len(),
            "leak detection cancel-safe",
            baseline_leaks.len(),
            verify_leaks.len()
        );

        let deadlock_severity_match = baseline_deadlock.severity == verify_deadlock.severity;
        crate::assert_with_log!(
            deadlock_severity_match,
            "deadlock detection cancel-safe",
            true,
            deadlock_severity_match
        );

        let health_class_match = match (
            &baseline_health.classification,
            &verify_health.classification,
        ) {
            (
                crate::observability::spectral_health::HealthClassification::Healthy { .. },
                crate::observability::spectral_health::HealthClassification::Healthy { .. },
            ) => true,
            (
                crate::observability::spectral_health::HealthClassification::Deadlocked,
                crate::observability::spectral_health::HealthClassification::Deadlocked,
            ) => true,
            (
                crate::observability::spectral_health::HealthClassification::Degraded { .. },
                crate::observability::spectral_health::HealthClassification::Degraded { .. },
            ) => true,
            (
                crate::observability::spectral_health::HealthClassification::Critical { .. },
                crate::observability::spectral_health::HealthClassification::Critical { .. },
            ) => true,
            (
                crate::observability::spectral_health::HealthClassification::Fragmented { .. },
                crate::observability::spectral_health::HealthClassification::Fragmented { .. },
            ) => true,
            _ => false,
        };
        crate::assert_with_log!(
            health_class_match,
            "health analysis cancel-safe",
            true,
            health_class_match
        );

        // Verify timing-dependent queries maintain consistency
        for (baseline_leak, verify_leak) in baseline_leaks.iter().zip(verify_leaks.iter()) {
            crate::assert_with_log!(
                baseline_leak.obligation_id == verify_leak.obligation_id,
                "leak ID cancel-safe",
                true,
                baseline_leak.obligation_id == verify_leak.obligation_id
            );
            crate::assert_with_log!(
                baseline_leak.age == verify_leak.age,
                "leak age cancel-safe",
                true,
                baseline_leak.age == verify_leak.age
            );
        }

        crate::test_complete!("introspection_conf_009_diagnostic_query_cancel_safety");
    }

    #[test]
    fn introspection_conf_010_runtime_introspection_endpoint_stability() {
        init_test("introspection_conf_010_runtime_introspection_endpoint_stability");

        // Test endpoint stability under various runtime configurations

        // Configuration 1: Empty runtime
        let empty_state = Arc::new(RuntimeState::new());
        let empty_diagnostics = Diagnostics::new(empty_state);

        let empty_root = RegionId::new_for_test(999, 0);
        let empty_explanation = empty_diagnostics.explain_region_open(empty_root);
        crate::assert_with_log!(
            matches!(
                empty_explanation.reasons.first(),
                Some(Reason::RegionNotFound)
            ),
            "empty runtime handles missing region",
            true,
            matches!(
                empty_explanation.reasons.first(),
                Some(Reason::RegionNotFound)
            )
        );

        let empty_task = TaskId::new_for_test(999, 0);
        let empty_task_explanation = empty_diagnostics.explain_task_blocked(empty_task);
        crate::assert_with_log!(
            matches!(
                empty_task_explanation.block_reason,
                BlockReason::TaskNotFound
            ),
            "empty runtime handles missing task",
            true,
            matches!(
                empty_task_explanation.block_reason,
                BlockReason::TaskNotFound
            )
        );

        let empty_leaks = empty_diagnostics.find_leaked_obligations();
        crate::assert_with_log!(
            empty_leaks.is_empty(),
            "empty runtime has no leaks",
            true,
            empty_leaks.is_empty()
        );

        // Configuration 2: Minimal valid runtime
        let mut minimal_state = RuntimeState::new();
        let minimal_root = minimal_state.create_root_region(Budget::INFINITE);
        let minimal_diagnostics = Diagnostics::new(Arc::new(minimal_state));

        let minimal_explanation = minimal_diagnostics.explain_region_open(minimal_root);
        crate::assert_with_log!(
            minimal_explanation.region_state.is_some(),
            "minimal runtime provides region state",
            true,
            minimal_explanation.region_state.is_some()
        );

        let minimal_leaks = minimal_diagnostics.find_leaked_obligations();
        crate::assert_with_log!(
            minimal_leaks.is_empty(),
            "minimal runtime has no leaks",
            true,
            minimal_leaks.is_empty()
        );

        // Configuration 3: Complex runtime with multiple regions/tasks
        let mut complex_state = RuntimeState::new();
        let complex_root = complex_state.create_root_region(Budget::INFINITE);
        let complex_child1 = insert_child_region(&mut complex_state, complex_root);
        let complex_child2 = insert_child_region(&mut complex_state, complex_root);

        let _complex_task1 = insert_task(&mut complex_state, complex_child1, TaskState::Running);
        let _complex_task2 = insert_task(
            &mut complex_state,
            complex_child2,
            TaskState::Completed(Outcome::Ok(())),
        );
        let complex_task3 = insert_task(
            &mut complex_state,
            complex_root,
            TaskState::CancelRequested {
                reason: CancelReason::user("cleanup"),
                cleanup_budget: Budget::with_deadline_ns(200_000_000), // 200ms in ns
            },
        );

        let complex_diagnostics = Diagnostics::new(Arc::new(complex_state));

        let complex_explanation = complex_diagnostics.explain_region_open(complex_root);
        crate::assert_with_log!(
            !complex_explanation.reasons.is_empty(),
            "complex runtime provides detailed reasons",
            true,
            !complex_explanation.reasons.is_empty()
        );

        let complex_cancel_explanation = complex_diagnostics.explain_task_blocked(complex_task3);
        let is_complex_cancel = matches!(
            complex_cancel_explanation.block_reason,
            BlockReason::CancelRequested { .. }
        );
        crate::assert_with_log!(
            is_complex_cancel,
            "complex runtime tracks cancel state",
            true,
            is_complex_cancel
        );

        // Configuration 4: Runtime with timer driver vs without
        let mut timer_state = RuntimeState::new();
        let timer_root = timer_state.create_root_region(Budget::INFINITE);
        let timer_task = insert_task(&mut timer_state, timer_root, TaskState::Running);

        let virtual_clock = Arc::new(VirtualClock::starting_at(Time::from_millis(5000)));
        timer_state.set_timer_driver(TimerDriverHandle::with_virtual_clock(virtual_clock));
        let _timer_obligation = insert_obligation(
            &mut timer_state,
            timer_root,
            timer_task,
            ObligationKind::Ack,
            Time::from_millis(1000),
        );

        let timer_diagnostics = Diagnostics::new(Arc::new(timer_state));
        let timer_leaks = timer_diagnostics.find_leaked_obligations();

        crate::assert_with_log!(
            !timer_leaks.is_empty(),
            "timer-enabled runtime detects leaks",
            true,
            !timer_leaks.is_empty()
        );

        if let Some(leak) = timer_leaks.first() {
            crate::assert_with_log!(
                leak.age.as_millis() == 4000, // 5000 - 1000 = 4000
                "timer-enabled runtime calculates age correctly",
                4000u128,
                leak.age.as_millis()
            );
        }

        // Verify endpoint stability across all configurations
        let all_deadlock_reports = [
            empty_diagnostics.analyze_directional_deadlock(),
            minimal_diagnostics.analyze_directional_deadlock(),
            complex_diagnostics.analyze_directional_deadlock(),
            timer_diagnostics.analyze_directional_deadlock(),
        ];

        for report in &all_deadlock_reports {
            crate::assert_with_log!(
                report.risk_score >= 0.0 && report.risk_score <= 1.0,
                "deadlock risk score in valid range",
                true,
                report.risk_score >= 0.0 && report.risk_score <= 1.0
            );
        }

        let all_health_reports = [
            empty_diagnostics.analyze_structural_health(),
            minimal_diagnostics.analyze_structural_health(),
            complex_diagnostics.analyze_structural_health(),
            timer_diagnostics.analyze_structural_health(),
        ];

        for health in &all_health_reports {
            // Verify health classification is valid (structural analysis completed)
            let valid_classification = matches!(
                health.classification,
                crate::observability::spectral_health::HealthClassification::Healthy { .. }
                    | crate::observability::spectral_health::HealthClassification::Degraded { .. }
                    | crate::observability::spectral_health::HealthClassification::Deadlocked
                    | crate::observability::spectral_health::HealthClassification::Critical { .. }
                    | crate::observability::spectral_health::HealthClassification::Fragmented { .. }
            );
            crate::assert_with_log!(
                valid_classification,
                "health classification is valid",
                true,
                valid_classification
            );
        }

        crate::test_complete!("introspection_conf_010_runtime_introspection_endpoint_stability");
    }

    #[test]
    fn structured_diagnostic_report_snapshot_v4_with_extended_metrics() {
        init_test("structured_diagnostic_report_snapshot_v4_with_extended_metrics");

        // Create test sections with extended metric histograms
        let sections = vec![
            DiagnosticReportV4Section {
                label: "task_execution",
                status: "degraded",
                accounting: DiagnosticResourceAccounting {
                    total_regions: 12,
                    open_regions: 8,
                    total_tasks: 142,
                    live_tasks: 89,
                    total_obligations: 23,
                    leaked_obligations: 2,
                },
                histograms: vec![DiagnosticMetricHistogram {
                    name: "task_execution_latency_ms".to_string(),
                    buckets: vec![
                        ("0-1ms".to_string(), 1247),
                        ("1-5ms".to_string(), 823),
                        ("5-10ms".to_string(), 156),
                        ("10-50ms".to_string(), 89),
                        ("50-100ms".to_string(), 12),
                        ("100ms+".to_string(), 3),
                    ],
                    total_count: 2330,
                    percentiles: vec![(50.0, 1.2), (95.0, 8.7), (99.0, 24.1), (99.9, 78.3)],
                }],
                rendered: "task_execution: Task execution metrics\n  latency_p50: 1.2ms\n  latency_p99: 24.1ms\n  completion_rate: 94.2%",
            },
            DiagnosticReportV4Section {
                label: "region_lifecycle",
                status: "critical",
                accounting: DiagnosticResourceAccounting {
                    total_regions: 67,
                    open_regions: 37,
                    total_tasks: 245,
                    live_tasks: 156,
                    total_obligations: 45,
                    leaked_obligations: 8,
                },
                histograms: vec![DiagnosticMetricHistogram {
                    name: "region_lifecycle_duration_ms".to_string(),
                    buckets: vec![
                        ("0-10ms".to_string(), 89),
                        ("10-100ms".to_string(), 156),
                        ("100ms-1s".to_string(), 67),
                        ("1s-10s".to_string(), 23),
                        ("10s+".to_string(), 8),
                    ],
                    total_count: 343,
                    percentiles: vec![(50.0, 45.2), (95.0, 2100.0), (99.0, 6780.0)],
                }],
                rendered: "region_lifecycle: Region lifecycle analysis\n  duration_p50: 45.2ms\n  duration_p99: 6.78s\n  long_lived_count: 8",
            },
            DiagnosticReportV4Section {
                label: "obligation_tracking",
                status: "passing",
                accounting: DiagnosticResourceAccounting {
                    total_regions: 34,
                    open_regions: 23,
                    total_tasks: 178,
                    live_tasks: 134,
                    total_obligations: 67,
                    leaked_obligations: 0,
                },
                histograms: vec![DiagnosticMetricHistogram {
                    name: "obligation_hold_time_ms".to_string(),
                    buckets: vec![
                        ("0-1s".to_string(), 1200),
                        ("1s-10s".to_string(), 45),
                        ("10s-1min".to_string(), 12),
                        ("1min+".to_string(), 3),
                    ],
                    total_count: 1260,
                    percentiles: vec![
                        (50.0, 120.0),
                        (95.0, 8900.0),
                        (99.0, 45000.0),
                        (99.9, 120000.0),
                    ],
                }],
                rendered: "obligation_tracking: Obligation hold time analysis\n  hold_time_p50: 120ms\n  hold_time_p99: 45s\n  leak_candidates: 3",
            },
        ];

        let rendered = render_structured_diagnostic_report_v4(&sections);

        assert_diagnostic_report_snapshot(
            "observability_diagnostics_structured_report_v4",
            &rendered,
        );

        crate::test_complete!("structured_diagnostic_report_snapshot_v4_with_extended_metrics");
    }

    #[test]
    fn structured_diagnostic_report_v3_schema_golden_snapshot() {
        // Comprehensive golden snapshot test for v3 schema validation
        // Validates: stable field ordering, version markers, healthy/degraded/error states

        // Create minimal test data for schema validation
        let healthy_accounting = DiagnosticResourceAccounting {
            total_regions: 1,
            open_regions: 0,
            total_tasks: 1,
            live_tasks: 0,
            total_obligations: 0,
            leaked_obligations: 0,
        };

        let degraded_accounting = DiagnosticResourceAccounting {
            total_regions: 3,
            open_regions: 2,
            total_tasks: 5,
            live_tasks: 3,
            total_obligations: 2,
            leaked_obligations: 1,
        };

        let error_accounting = DiagnosticResourceAccounting {
            total_regions: 2,
            open_regions: 2,
            total_tasks: 4,
            live_tasks: 4,
            total_obligations: 3,
            leaked_obligations: 3,
        };

        // Create v3 sections representing healthy/degraded/error states
        let sections = vec![
            DiagnosticReportV3Section {
                label: "healthy_system",
                status: "passing",
                accounting: healthy_accounting,
                rendered: "scenario: healthy_system\ngenerated_at: 2026-04-21T14:30:00Z\n\n[region]\nnone\n\n[task]\nAll tasks completed successfully.\n\n[leaks]\nnone",
            },
            DiagnosticReportV3Section {
                label: "degraded_performance",
                status: "degraded",
                accounting: degraded_accounting,
                rendered: "scenario: degraded_performance\ngenerated_at: 2026-04-21T14:30:01Z\n\n[region]\nRegion RegionId(1:0) has slow drain (2 children pending).\n\n[task]\nTask TaskId(2:1) experiencing high latency (p99: 450ms).\n\n[leaks]\n- ObligationId(1:0) region=RegionId(1:0) holder=Some(TaskId(2:1)) type=Lease age_ms=1500",
            },
            DiagnosticReportV3Section {
                label: "error_state",
                status: "critical",
                accounting: error_accounting,
                rendered: "scenario: error_state\ngenerated_at: 2026-04-21T14:30:02Z\n\n[region]\nRegion RegionId(0:0) has deadlock detected (cycle length: 2).\n\n[task]\nTask TaskId(0:0) blocked: deadlock (waiting on TaskId(1:0)).\n\n[leaks]\n- ObligationId(0:0) region=RegionId(0:0) holder=Some(TaskId(0:0)) type=Ack age_ms=2000\n- ObligationId(1:0) region=RegionId(0:0) holder=Some(TaskId(1:0)) type=Lease age_ms=2100\n- ObligationId(2:0) region=RegionId(1:0) holder=Some(TaskId(2:0)) type=Ack age_ms=1800",
            },
        ];

        let rendered = render_structured_diagnostic_report_v3(&sections);

        // Assert the golden snapshot for v3 schema validation
        assert_diagnostic_report_snapshot(
            "observability_diagnostics_v3_schema_validation",
            &rendered,
        );
    }
}