doctrine 0.10.0

Project tooling CLI
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
// SPDX-License-Identifier: GPL-3.0-only
//! The relation vocabulary leaf (design §5.2/§5.3 extraction seam).
//!
//! A pure data leaf BELOW every kind module and `relation_graph` (ADR-001): it
//! imports nothing doctrine-internal, so the per-kind `relation_edges` accessors
//! and the engine dispatch can both depend on it without a cycle. It is the SEED of
//! ADR-010's code-authoritative relation vocabulary — SL-048 *extends* this enum
//! and the legal-set table, never forks a parallel one (ADR-010 Decision 2; SL-046
//! design §7 D4).
//!
//! [`RelationLabel`] is the full outbound vocabulary every accessor can emit. Most
//! labels back a graph overlay (design §5.3 overlay table — the resolvable subset);
//! two — [`RelationLabel::Drift`] and [`RelationLabel::DecisionRef`] — are
//! **target-unvalidated** (ADR-010 Decision 2): their targets are free-text with no
//! `DRIFT`/`DEC` kind in `integrity::KINDS`, so they never resolve to a node and
//! surface as danglers, never edges (§5.3). They are vocabulary labels with no
//! overlay, carried so the data is preserved (visibility), not dropped.
//!
//! As of SL-046 PHASE-04 the full vocabulary is LIVE: `relation_graph`'s scan reads
//! `.label`/`.target`, and the `inspect` render reads `name()` — so the PHASE-02
//! `not(test)` `dead_code` expect retired itself, as designed.
//!
//! SL-048 PHASE-02 re-arms that pattern for a NEW leaf: the legal-set table
//! ([`RELATION_RULES`]) and its supporting types ([`TargetSpec`]/[`Tier`]/
//! [`LinkPolicy`]/[`RelationRule`]) plus the two new vocabulary variants
//! (`GovernedBy`/`Consumes`) are built AHEAD of their consumers — the `read_block`
//! parser, the `link`/`unlink` writer, forward validation, and the cordage overlay
//! allocation all land at PHASE-03/04. Until then they are exercised only by this
//! module's `#[cfg(test)]` suite, so they read as dead in the bins/lib build. The
//! module-level `not(test)` `dead_code` expect below self-clears the moment those
//! consumers land; scoping it `not(test)` keeps it fulfilled in the test build,
//! where the symbols ARE used (the cfg(test) round-trip caveat).
#![cfg_attr(
    not(test),
    expect(
        dead_code,
        reason = "SL-096 PHASE-01/02 — read_record exercises from_name/RELATION_RULES/lookup/read_block/tier1_edges; PHASE-02 wires outbound_for to knowledge::relation_edges (more callers for tier1_edges); remaining dead symbols (validate_link, check_target_kind, append_edge/remove_edge, writable_labels_for, owning_verb_for) self-clear when their command handlers land"
    )
)]

/// The outbound relation vocabulary — one label per authored relation axis across
/// the six edge-authoring kinds. `Copy + Ord` so callers can group/sort labels
/// deterministically (no `HashMap` iteration order — REQ-077).
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, serde::Serialize)]
pub(crate) enum RelationLabel {
    /// work → canon/backlog/any, refined by a closed [`Role`] (SL-149 / ADR-016): the
    /// structure/intent split — one structural label whose `(source, label, role)` key
    /// drives target validation. `implements` (SL → SPEC·PRD·REQ), `originates_from` (SL →
    /// backlog), `concerns` (work → any numbered). Inbound is role-derived, so
    /// [`inbound_name`] is keyed `(label, role)` for this label. The migration target of
    /// the retired `specs`/`requirements`/mismapped-`related` edges (PHASE-05).
    References,
    /// slice → slice, governance → governance.
    Supersedes,
    /// spec → product spec (single-valued lineage).
    DescendsFrom,
    /// spec → spec (single decomposition parent).
    Parent,
    /// spec → requirement (`members.toml`).
    Members,
    /// spec → spec (`interactions.toml`; the per-edge free-text `type` is re-read
    /// from the source at render — a single relation class, design §5.3 / C2).
    Interactions,
    /// concept-map → any (concept association).
    Contextualizes,
    /// knowledge record → any artefact. Epistemic influence — the record shapes
    /// the target's design; inbound renders `shaped_by` (SL-096 PHASE-01).
    Shapes,
    /// knowledge record → backlog item. Work creation — the record spawned a
    /// backlog item; inbound renders `spawned_by` (SL-096 PHASE-01).
    Spawns,
    /// slice·PRD·SPEC·CM → governance (ADR/POL/STD). One shared label spanning all
    /// four sources, as `supersedes` already spans SL+gov; inbound renders
    /// "governs" via [`RelationRule::inbound_name`] (SL-048 design §5.2 / X5).
    /// Constructed only by the table/tests until PHASE-04 threads the live axes
    /// (covered by the module-level `not(test)` `dead_code` expect, below).
    GovernedBy,
    /// product spec → product spec (consumer → provider, directional): "PRD-011
    /// consumes a seam PRD-009 exposes"; inbound renders `consumed_by` (SL-048
    /// design §5.2 OD-1 / X4). Distinct from the work-item `depends_on` axis.
    /// Constructed only by the table/tests until PHASE-04 threads the live axes.
    Consumes,
    /// governance → governance (symmetric).
    Related,
    /// slice → backlog: the slice fulfils (completes) the backlog item. The completion
    /// facet is per-edge via [`Degree`] (design §A.3). Inbound "fulfilled by".
    Fulfils,
    /// review → any (the `[target].ref` subject).
    Reviews,
    /// rec → slice.
    OwningSlice,
    /// backlog → free-text (no `DRIFT` kind; target-unvalidated, always dangles —
    /// ADR-010 Decision 2 / §5.3). No overlay.
    Drift,
    /// rec → free-text DEC ref (no `DEC` kind; target-unvalidated, always dangles —
    /// ADR-010 Decision 2 / §5.3). No overlay.
    DecisionRef,
    /// revision → governance/spec truth (SPEC·PRD·REQ·ADR·POL·STD). The typed
    /// `[[change]]`-row payload IS the edge set (the members.toml precedent, SL-066
    /// design §4.4): a `revision change add` row of `(target, action)` projects to one
    /// `Revises` edge. `LinkPolicy::TypedVerbOnly` — `doctrine link … revises …` is
    /// refused; the rule row exists for target validation + inbound-reciprocity naming
    /// (`inspect ADR-X` lists every REV that revises it), NOT a writable Tier-1 edge.
    Revises,
    /// revision → RFC. A single provenance ref authored AT CREATION TIME via
    /// `revision new --originates-from <RFC-NNN>` — the REV's `[[relation]]` block
    /// carries ONE `originates_from` row. `LinkPolicy::TypedVerbOnly` — `doctrine
    /// link … originates_from …` is refused; the rule row exists for target
    /// validation + inbound-reciprocity naming (`inspect RFC-NNN` lists every REV
    /// that originates from it as `precursor of`).
    OriginatesFrom,
    /// evidence → any record (EVD → ASM·DEC·QUE·CON·EVD·HYP). Epistemic
    /// support — the evidence corroborates the target; inbound renders
    /// `supported_by` (SL-159 PHASE-02).
    Supports,
    /// evidence → any record (EVD → ASM·DEC·QUE·CON·EVD·HYP). Epistemic
    /// counter-evidence — the evidence challenges the target; inbound renders
    /// `disputed_by` (SL-159 PHASE-02).
    Disputes,
}

impl RelationLabel {
    /// The stable wire/render name of a label — re-used by the overlay-identity map
    /// and the inspect render (PHASE-03/04). Single source for the label string.
    pub(crate) const fn name(self) -> &'static str {
        match self {
            RelationLabel::References => "references",
            RelationLabel::Supersedes => "supersedes",
            RelationLabel::DescendsFrom => "descends_from",
            RelationLabel::Parent => "parent",
            RelationLabel::Members => "members",
            RelationLabel::Interactions => "interactions",
            RelationLabel::Contextualizes => "contextualizes",
            RelationLabel::Shapes => "shapes",
            RelationLabel::Spawns => "spawns",
            RelationLabel::GovernedBy => "governed_by",
            RelationLabel::Consumes => "consumes",
            RelationLabel::Related => "related",
            RelationLabel::Fulfils => "fulfils",
            RelationLabel::Reviews => "reviews",
            RelationLabel::OwningSlice => "owning_slice",
            RelationLabel::Drift => "drift",
            RelationLabel::DecisionRef => "decision_ref",
            RelationLabel::Revises => "revises",
            RelationLabel::OriginatesFrom => "originates_from",
            RelationLabel::Supports => "supports",
            RelationLabel::Disputes => "disputes",
        }
    }

    /// Parse an authored `[[relation]]` `label = "…"` spelling back to its variant —
    /// the inverse of [`name`](Self::name). `None` for any string that names no
    /// vocabulary label (e.g. a typo or an INVERSE spelling like `superseded_by`,
    /// which is derived render-text, never an authorable outbound label — ADR-010 D5).
    /// Drives [`read_block`]'s "label not in the table at all" `IllegalRow` arm (X2);
    /// the exhaustive `match` over `name()` keeps it in lock-step with the enum (a new
    /// variant fails to compile until it is added here).
    pub(crate) fn from_name(name: &str) -> Option<RelationLabel> {
        let label = match name {
            "references" => RelationLabel::References,
            "supersedes" => RelationLabel::Supersedes,
            "descends_from" => RelationLabel::DescendsFrom,
            "parent" => RelationLabel::Parent,
            "members" => RelationLabel::Members,
            "interactions" => RelationLabel::Interactions,
            "contextualizes" => RelationLabel::Contextualizes,
            "shapes" => RelationLabel::Shapes,
            "spawns" => RelationLabel::Spawns,
            "governed_by" => RelationLabel::GovernedBy,
            "consumes" => RelationLabel::Consumes,
            "related" => RelationLabel::Related,
            "fulfils" => RelationLabel::Fulfils,
            "reviews" => RelationLabel::Reviews,
            "owning_slice" => RelationLabel::OwningSlice,
            "drift" => RelationLabel::Drift,
            "decision_ref" => RelationLabel::DecisionRef,
            "revises" => RelationLabel::Revises,
            "originates_from" => RelationLabel::OriginatesFrom,
            "supports" => RelationLabel::Supports,
            "disputes" => RelationLabel::Disputes,
            _ => return None,
        };
        // Defence-in-depth: the spelling must round-trip, so `name()` stays the single
        // source of every label string (a future drift between the two maps trips this
        // in the test build, where `from_name` is exercised).
        debug_assert_eq!(label.name(), name);
        Some(label)
    }
}

/// The closed intent dimension that refines the `references` label (SL-149 / ADR-016 —
/// the structure/intent split). A relation's durable *structure* is the label; its
/// *contextual intent* is the role. Only `references` rows carry a role
/// ([`RelationRule::role`] is `Some` there, `None` everywhere else). `Copy + Ord` so the
/// canonical role order is the declaration order (mirrors `RelationLabel`): no `HashMap`
/// iteration on the relation path (REQ-077).
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, serde::Serialize)]
pub(crate) enum Role {
    /// SL → SPEC·PRD·REQ: the slice implements that canonical truth. Inbound
    /// "implemented by". The migration target of the retired `specs`/`requirements`
    /// SL→canon edges (PHASE-05).
    Implements,
    /// SL → backlog: the slice was originated from that idea/improvement/issue/chore/risk.
    /// Inbound "originated from". Strictly the *origin* edge — kept separate from the Axis D
    /// `part_of` containment edge (design §F7).
    OriginatesFrom,
    /// work → any numbered entity: aboutness / relevance ("this work concerns that
    /// artefact"). Inbound "concerned by". The widest role; absorbs the RFC `bears_on`
    /// edges (the `reviews`-in-prose cases SL-145 deferred — ADR-016 §1 corollary).
    Concerns,
}

impl Role {
    /// The stable wire/render spelling of a role — the inverse of [`from_name`](Self::from_name).
    /// Single source for the role string (the `role = "…"` cell PHASE-03 serialises).
    pub(crate) const fn name(self) -> &'static str {
        match self {
            Role::Implements => "implements",
            Role::OriginatesFrom => "originates_from",
            Role::Concerns => "concerns",
        }
    }

    /// Parse an authored `role = "…"` spelling back to its variant — the inverse of
    /// [`name`](Self::name). `None` for any string that names no role. The exhaustive
    /// `match` keeps it in lock-step with the enum (a new variant fails to compile until
    /// it is added here); the `debug_assert` pins the round-trip so `name()` stays the
    /// single source of every role string. (The transitional `"scoped_from"` alias was
    /// dropped at the SL-176 PHASE-04 migration — the corpus is now all `originates_from`.)
    pub(crate) fn from_name(name: &str) -> Option<Role> {
        let role = match name {
            "implements" => Role::Implements,
            "originates_from" => Role::OriginatesFrom,
            "concerns" => Role::Concerns,
            _ => return None,
        };
        debug_assert_eq!(role.name(), name);
        Some(role)
    }
}

/// The completion facet on a `fulfils` edge: how much of the target backlog item this
/// slice satisfies (design §A.1). Pure per-edge annotation — NOT a lookup key (unlike
/// [`Role`]), so it never enters the target gate. `Copy + Ord` → canonical order =
/// declaration order. `None` degree ≡ `Full` (the common case; `partial` is the marked
/// exception). Does NOT aggregate (two `Partial` ≠ `Full`; ADR-016 §2).
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, serde::Serialize)]
pub(crate) enum Degree {
    Full,
    Partial,
}

impl Degree {
    /// The stable wire/render spelling — mirrors [`Role::name`].
    pub(crate) const fn name(self) -> &'static str {
        match self {
            Degree::Full => "full",
            Degree::Partial => "partial",
        }
    }

    /// Parse a persisted `degree = "…"` spelling back to its variant — the inverse of
    /// [`name`](Self::name). `None` for any string that names no degree.
    pub(crate) fn from_name(name: &str) -> Option<Degree> {
        let degree = match name {
            "full" => Degree::Full,
            "partial" => Degree::Partial,
            _ => return None,
        };
        debug_assert_eq!(degree.name(), name);
        Some(degree)
    }
}

use anyhow::Context;

use crate::entity::Kind;
use crate::kinds::{
    ADR, ASM, BACKLOG, CHR, CM, CON, DEC, EVD, GOV, HYP, IDE, IMP, ISS, POL, PRD, QUE, REC, RECORD,
    REQ, REV, RFC, RSK, RV, SL, SPEC, STD,
};

/// What an outbound label's target ref is allowed to resolve to — the forward-edge
/// validation axis (design §5.2, the first of the five axes). The rule-table element
/// type is `&'static str` (a `kinds::*` prefix, the canonical kind identity compared
/// by `==`); diagnostics format the `RelationLabel`, never the `TargetSpec`.
#[derive(Clone, Copy)]
pub(crate) enum TargetSpec {
    /// The target must be one of an explicit set of numbered kinds (e.g.
    /// `governed_by` → ADR·POL·STD).
    Kinds(&'static [&'static str]),
    /// The target kind must equal the source kind — governance `supersedes` and
    /// `related` (each gov kind → its own kind). One rule serves a source-set whose
    /// members each point within their own namespace (R2-M1).
    SameKind,
    /// The target may be any numbered kind — RV `reviews` (the subject of a review
    /// is any entity).
    AnyNumbered,
    /// The target is free-text, not a doctrine entity (`drift`, `decision_ref`):
    /// a `decision_ref` is an *external* 3-part decision cite (e.g. `DEC-005-C`),
    /// not the 2-part numbered DEC kind — so it never resolves, always dangles, no
    /// overlay (ADR-010 D2).
    Unvalidated,
}

/// The storage shape of a label's edges (design §5.2, the second axis). `One` →
/// uniform `[[relation]]` rows; `Typed` → a bespoke per-kind structure
/// (`members.toml`, the `descends_from` scalar, …).
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub(crate) enum Tier {
    /// Tier-1: the uniform `[[relation]]` block.
    One,
    /// Tier-2/3: a bespoke typed structure, not migrated to `[[relation]]`.
    Typed,
}

/// Whether (and how) the `link`/`unlink` verb admits a triple for a label (design
/// §5.2, the third axis).
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub(crate) enum LinkPolicy {
    /// `link`/`unlink` may author this edge.
    Writable,
    /// Tier-1 by shape but storage-excluded from the migration and never
    /// `link`-writable — governance `supersedes`, whose `superseded_by` carve-out
    /// pair waits on the transactional supersede verb (OD-3 / IMP-006).
    LifecycleOnly,
    /// Authored only through a bespoke typed verb (`spec req add`, `review …`),
    /// never generic `link`.
    TypedVerbOnly,
}

/// One row of the legal-set vocabulary table (design §5.2, the ADR-010 D2 spine):
/// the `(source ∈ sources, label)` key plus the five axes it drives —
/// `target` (forward validation), `tier` (storage shape), `link` (verb admission),
/// and `inbound_name` (derived-reciprocal render text, X5). `sources` is a SET so
/// one rule serves multiple source kinds (F2 — never one row per kind). Its elements
/// are `&'static str` kind prefixes (`kinds::*`, compared by `==`); diagnostics format
/// `label` only.
#[derive(Clone, Copy)]
pub(crate) struct RelationRule {
    /// The source kinds that may author this label (a set, not one row per kind).
    pub(crate) sources: &'static [&'static str],
    /// The outbound label this rule governs.
    pub(crate) label: RelationLabel,
    /// The intent dimension that refines a `references` row (SL-149) — `Some` ONLY on
    /// `references` rows, `None` on every other label. The lookup key extends from
    /// `(source, label)` to `(source, label, role)`: each `(source, label)` is wholly
    /// roleful (every row `Some`) or wholly roleless (every row `None`) — VT-4 pins it.
    pub(crate) role: Option<Role>,
    /// How the derived reciprocal renders on the target (`governed_by` → "governs").
    /// `== label.name()` for every label whose inbound spelling equals its outbound;
    /// only `supersedes`/`governed_by`/`consumes` differ (R2-M3, render-text only).
    pub(crate) inbound_name: &'static str,
    /// What the target ref may resolve to (forward validation).
    pub(crate) target: TargetSpec,
    /// The storage shape of this label's edges.
    pub(crate) tier: Tier,
    /// Whether the generic `link`/`unlink` verb admits this label.
    pub(crate) link: LinkPolicy,
    /// Whether this label's edges carry a [`Degree`] facet (design §A.4). True on
    /// exactly the `Fulfils` row; `false` on every other row. `validate_link` reads
    /// this column rather than hardcoding `label == Fulfils`.
    pub(crate) degree_bearing: bool,
}

/// The legal-set vocabulary table (design §5.2 / ADR-010 D2). **Declared in
/// `RelationLabel` enum-discriminant order** (R2-C1 / §5.3 X1): VT-1 pins the
/// derived distinct-label order against the enum's `Ord`, so `inspect`'s
/// `BTreeMap<RelationLabel>` regroup stays canonical and new variants land at their
/// source kind's axis-run tail where no existing golden pins a successor. The two
/// `supersedes` rows (SL and gov) sit adjacently at the `Supersedes` slot. Lookup is
/// keyed by `(source ∈ sources, label)` — see [`lookup`]. NOT yet wired into any
/// reader/writer/overlay; PHASE-03/04 consume it.
pub(crate) const RELATION_RULES: &[RelationRule] = &[
    // references (SL-149 / ADR-016) — the work→canon class collapsed onto one
    // structural label refined by a closed Role. One row per (source-set, role); the
    // lookup key is (source, label, role). These coexist with the retained
    // specs/requirements rows through PHASE-04; PHASE-05's migration rewrites the old
    // edges onto these and drops Specs/Requirements. Source sets are PINNED from a live
    // census (design §2.4): implements/originates_from are SL-only; concerns rides one wide
    // source-set row.
    RelationRule {
        // implements — SL → canonical truth (the migration target of specs/requirements
        // SL→{SPEC,PRD,REQ}). SL-only: backlog items spawn slices that implement; they
        // do not implement canon directly.
        sources: &[SL],
        label: RelationLabel::References,
        role: Some(Role::Implements),
        inbound_name: "implemented by",
        target: TargetSpec::Kinds(&[SPEC, PRD, REQ]),
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: false,
    },
    RelationRule {
        // originates_from — widened source/target: any source in {SL + backlog}
        // may author; target is {backlog + SL} (§A.2). Kept strictly separate from
        // `part_of` (Axis D containment, design §F7).
        sources: &[SL, ISS, IMP, CHR, RSK, IDE],
        label: RelationLabel::References,
        role: Some(Role::OriginatesFrom),
        inbound_name: "originated from",
        target: TargetSpec::Kinds(&[ISS, IMP, CHR, RSK, IDE, SL]),
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: false,
    },
    RelationRule {
        // concerns — work → any numbered entity (aboutness/relevance). One wide
        // source-set row pinned from the live census: SL + RFC + the backlog kinds
        // + RECORD (ASM/DEC/QUE/CON — D6). Target AnyNumbered.
        sources: &[
            SL, RFC, ISS, IMP, CHR, RSK, IDE, ASM, DEC, QUE, CON, EVD, HYP,
        ],
        label: RelationLabel::References,
        role: Some(Role::Concerns),
        inbound_name: "concerned by",
        target: TargetSpec::AnyNumbered,
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: false,
    },
    // supersedes — two rules at one slot: SL→SL (writable) and gov→same-gov
    // (lifecycle-only, storage-excluded OD-3).
    RelationRule {
        sources: &[SL],
        label: RelationLabel::Supersedes,
        role: None,
        inbound_name: "superseded by",
        target: TargetSpec::Kinds(&[SL]),
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: false,
    },
    RelationRule {
        sources: GOV,
        label: RelationLabel::Supersedes,
        role: None,
        inbound_name: "superseded by",
        target: TargetSpec::SameKind,
        // ADR-010 Amendment: governance supersedes stays typed (LifecycleOnly).
        tier: Tier::Typed,
        link: LinkPolicy::LifecycleOnly,
        degree_bearing: false,
    },
    RelationRule {
        sources: RECORD,
        label: RelationLabel::Supersedes,
        role: None,
        inbound_name: "superseded by",
        target: TargetSpec::Kinds(RECORD),
        tier: Tier::One,
        link: LinkPolicy::LifecycleOnly,
        degree_bearing: false,
    },
    RelationRule {
        sources: &[SPEC],
        label: RelationLabel::DescendsFrom,
        role: None,
        inbound_name: "descends_from",
        target: TargetSpec::Kinds(&[PRD]),
        tier: Tier::Typed,
        link: LinkPolicy::TypedVerbOnly,
        degree_bearing: false,
    },
    RelationRule {
        sources: &[SPEC, PRD],
        label: RelationLabel::Parent,
        role: None,
        inbound_name: "parent",
        target: TargetSpec::Kinds(&[SPEC, PRD]),
        tier: Tier::Typed,
        link: LinkPolicy::TypedVerbOnly,
        degree_bearing: false,
    },
    RelationRule {
        sources: &[PRD, SPEC],
        label: RelationLabel::Members,
        role: None,
        inbound_name: "members",
        target: TargetSpec::Kinds(&[REQ]),
        tier: Tier::Typed,
        link: LinkPolicy::TypedVerbOnly,
        degree_bearing: false,
    },
    RelationRule {
        sources: &[SPEC],
        label: RelationLabel::Interactions,
        role: None,
        inbound_name: "interactions",
        target: TargetSpec::Kinds(&[SPEC]),
        tier: Tier::Typed,
        link: LinkPolicy::TypedVerbOnly,
        degree_bearing: false,
    },
    RelationRule {
        sources: &[CM],
        label: RelationLabel::Contextualizes,
        role: None,
        inbound_name: "contextualized_by",
        target: TargetSpec::Unvalidated,
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: false,
    },
    RelationRule {
        sources: RECORD,
        label: RelationLabel::Shapes,
        role: None,
        inbound_name: "shaped_by",
        target: TargetSpec::Kinds(&[
            PRD, SPEC, REQ, SL, ISS, IMP, CHR, RSK, IDE, ADR, POL, STD, RFC, ASM, DEC, QUE, CON,
            EVD, HYP,
        ]),
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: false,
    },
    RelationRule {
        sources: RECORD,
        label: RelationLabel::Spawns,
        role: None,
        inbound_name: "spawned_by",
        target: TargetSpec::Kinds(&[ISS, IMP, CHR, RSK, IDE]),
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: false,
    },
    RelationRule {
        // SL-145: BACKLOG (ISS/IMP/CHR/RSK/IDE) widened in so a backlog item may be
        // governed by an ADR/POL/STD. Target gate (Kinds(GOV)) unchanged. SL-159
        // PHASE-02: EVD/HYP added so evidence/hypothesis records may be governed.
        sources: &[
            SL, PRD, SPEC, CM, ASM, DEC, QUE, CON, EVD, HYP, ISS, IMP, CHR, RSK, IDE,
        ],
        label: RelationLabel::GovernedBy,
        role: None,
        inbound_name: "governs",
        target: TargetSpec::Kinds(GOV),
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: false,
    },
    RelationRule {
        sources: &[PRD],
        label: RelationLabel::Consumes,
        role: None,
        inbound_name: "consumed_by",
        target: TargetSpec::Kinds(&[PRD]),
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: false,
    },
    RelationRule {
        sources: GOV,
        label: RelationLabel::Related,
        role: None,
        inbound_name: "related",
        target: TargetSpec::SameKind,
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: false,
    },
    RelationRule {
        // SL-145 (D1): extend this AnyNumbered row — not a new row — so a backlog item may
        // author a peer `related` edge to any numbered entity. Target/tier/inbound unchanged.
        sources: &[SL, RFC, ISS, IMP, CHR, RSK, IDE],
        label: RelationLabel::Related,
        role: None,
        inbound_name: "related",
        target: TargetSpec::AnyNumbered,
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: false,
    },
    // fulfils — SL → backlog: the slice fulfils (completes) the item (design §A.3).
    // SL-only source structurally enforces author-at-slice-end; target is the
    // backlog kinds. One edge per (slice, item) via DuplicateEdge at read_block;
    // degree set at author time, changed via unlink+relink.
    RelationRule {
        sources: &[SL],
        label: RelationLabel::Fulfils,
        role: None,
        inbound_name: "fulfilled by",
        target: TargetSpec::Kinds(BACKLOG),
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: true,
    },
    RelationRule {
        sources: &[RV],
        label: RelationLabel::Reviews,
        role: None,
        inbound_name: "reviews",
        target: TargetSpec::AnyNumbered,
        tier: Tier::Typed,
        link: LinkPolicy::TypedVerbOnly,
        degree_bearing: false,
    },
    RelationRule {
        sources: &[REC],
        label: RelationLabel::OwningSlice,
        role: None,
        inbound_name: "owning_slice",
        target: TargetSpec::Kinds(&[SL]),
        tier: Tier::Typed,
        link: LinkPolicy::TypedVerbOnly,
        degree_bearing: false,
    },
    RelationRule {
        sources: BACKLOG,
        label: RelationLabel::Drift,
        role: None,
        inbound_name: "drift",
        target: TargetSpec::Unvalidated,
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: false,
    },
    RelationRule {
        sources: &[REC],
        label: RelationLabel::DecisionRef,
        role: None,
        inbound_name: "decision_ref",
        target: TargetSpec::Unvalidated,
        tier: Tier::Typed,
        link: LinkPolicy::TypedVerbOnly,
        degree_bearing: false,
    },
    // revises (SL-066, ADR-013) — REV → governance/spec truth. Tier-2 typed: the
    // `[[change]]`-row payload IS the edge set (members.toml precedent), authored ONLY
    // by `revision change add`, NEVER by `doctrine link` (TypedVerbOnly). The rule row
    // exists for target validation + inbound naming ("revises" on `inspect ADR-X`), not
    // a writable Tier-1 edge. Targets are the six authored-truth kinds (NO SL/work/REC).
    RelationRule {
        sources: &[REV],
        label: RelationLabel::Revises,
        role: None,
        inbound_name: "revises",
        target: TargetSpec::Kinds(&[SPEC, PRD, REQ, ADR, POL, STD]),
        tier: Tier::Typed,
        link: LinkPolicy::TypedVerbOnly,
        degree_bearing: false,
    },
    // originates_from (SL-122) — REV → RFC: a single provenance ref authored at
    // `revision new --originates-from <RFC-NNN>` creation time (NOT a `[[change]]`
    // row). `LinkPolicy::TypedVerbOnly` — `doctrine link … originates_from …` is
    // refused; the rule row exists for target validation + inbound-reciprocity naming
    // (`inspect RFC-NNN` lists "precursor of: REV-NNN").
    RelationRule {
        sources: &[REV],
        label: RelationLabel::OriginatesFrom,
        role: None,
        inbound_name: "precursor of",
        target: TargetSpec::Kinds(&[RFC]),
        tier: Tier::Typed,
        link: LinkPolicy::TypedVerbOnly,
        degree_bearing: false,
    },
    // supports (SL-159) — EVD → any record: the evidence corroborates the target.
    // Inbound renders `supported_by`.
    RelationRule {
        sources: &[EVD],
        label: RelationLabel::Supports,
        role: None,
        inbound_name: "supported_by",
        target: TargetSpec::Kinds(RECORD),
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: false,
    },
    // disputes (SL-159) — EVD → any record: the evidence challenges the target.
    // Inbound renders `disputed_by`.
    RelationRule {
        sources: &[EVD],
        label: RelationLabel::Disputes,
        role: None,
        inbound_name: "disputed_by",
        target: TargetSpec::Kinds(RECORD),
        tier: Tier::One,
        link: LinkPolicy::Writable,
        degree_bearing: false,
    },
];

/// The rule governing `(source, label, role)` — the table's lookup key (design §5.2 /
/// SL-149 §2.6). A source matches when its `prefix` (the canonical `Kind` identity —
/// `Kind` is data without `PartialEq`, compared by prefix everywhere) is in the rule's
/// `sources`, the label matches, AND the row's `role` equals the queried `role`. A
/// label-only edge passes `role = None` and matches the `role = None` row; a `references`
/// edge is reachable only with the right `Some(role)`. `None` ⇒ illegal for that
/// `(source, label, role)` (the X2 per-kind legality `read_block` enforces).
pub(crate) fn lookup(
    source: &Kind,
    label: RelationLabel,
    role: Option<Role>,
) -> Option<&'static RelationRule> {
    RELATION_RULES
        .iter()
        .find(|r| r.label == label && r.role == role && r.sources.contains(&source.prefix))
}

/// The roles reachable for `(source, label)` — the rows whose `(label, sources)` admit
/// this source, projected to their `Some(role)` (SL-149 §2.6). Empty for a label-only
/// label (every matching row is roleless) or an illegal `(source, label)` pair; drives
/// the `MissingRole`/`IllegalRole` gate in [`validate_link`] and the CLI error message.
/// Yields roles in `RELATION_RULES` declaration order (canonical = `Role` `Ord`).
pub(crate) fn legal_roles(source: &Kind, label: RelationLabel) -> impl Iterator<Item = Role> + '_ {
    RELATION_RULES
        .iter()
        .filter(move |r| r.label == label && r.sources.contains(&source.prefix))
        .filter_map(|r| r.role)
}

/// Does `(source, label)` admit ANY row at all (roleful or roleless)? The legality the
/// X2 gate checks before deciding `MissingRole`/`RoleNotApplicable` (so an off-table
/// `(source, label)` is refused as illegal, not mis-reported as a role problem).
fn source_label_admitted(source: &Kind, label: RelationLabel) -> bool {
    RELATION_RULES
        .iter()
        .any(|r| r.label == label && r.sources.contains(&source.prefix))
}

/// One authored outbound relation: its [`RelationLabel`], the intent [`Role`] that
/// refines it (`Some` only on `references` edges — SL-149 §2.5), and the canonical ref
/// string it points at. Edge identity is the `(label, role, target)` triple. `target`
/// is the authored ref verbatim and MAY be free-text or dangling — resolution (and
/// dangler classification) happens later, at the graph scan (PHASE-03); the accessor
/// never resolves (design §5.3).
#[derive(Debug, Clone)]
pub(crate) struct RelationEdge {
    pub(crate) label: RelationLabel,
    /// The intent dimension (SL-149): `Some` on a `references` edge, `None` on every
    /// label-only edge. Threaded through the storage seam by [`read_block`]; the typed
    /// tier-2/3 accessors and the label-only `link` path construct roleless edges via
    /// [`new`](Self::new).
    pub(crate) role: Option<Role>,
    pub(crate) target: String,
    /// The completion facet on a `fulfils` edge (design §A.1 / §A.5). `None` ≡ Full.
    /// EXCLUDED from edge identity — idempotency and unlink match on
    /// `(label, role, target)`, never degree.
    pub(crate) degree: Option<Degree>,
}

/// Edge identity is the `(label, role, target)` triple — degree excluded (§A.5).
/// `PartialEq`/`Eq` compare only identity so a degreeless edge equals its
/// degree-bearing counterpart; idempotency and unlink match via this trait.
impl PartialEq for RelationEdge {
    fn eq(&self, other: &Self) -> bool {
        self.label == other.label && self.role == other.role && self.target == other.target
    }
}
impl Eq for RelationEdge {}

impl RelationEdge {
    /// Construct a label-only (roleless) edge — the common case for every label-only
    /// axis (typed tier-2/3 readers, `governed_by`/`related`/…). `references` edges are
    /// built via [`with_role`](Self::with_role).
    pub(crate) fn new(label: RelationLabel, target: String) -> Self {
        Self {
            label,
            role: None,
            target,
            degree: None,
        }
    }

    /// Construct a roled edge — `read_block` uses this for a `references` row whose
    /// `role` cell parsed to a legal [`Role`]. The `(label, role, target)` triple is the
    /// edge's identity (idempotency, render, validation).
    pub(crate) fn with_role(label: RelationLabel, role: Option<Role>, target: String) -> Self {
        Self {
            label,
            role,
            target,
            degree: None,
        }
    }

    /// Construct a degree-bearing edge (a `fulfils` edge with a [`Degree`], design
    /// §A.5). The `(label, role, target)` identity still excludes degree — two edges
    /// with the same triple Compare equal regardless of degree.
    pub(crate) fn with_degree(
        label: RelationLabel,
        role: Option<Role>,
        degree: Option<Degree>,
        target: String,
    ) -> Self {
        Self {
            label,
            role,
            target,
            degree,
        }
    }
}

/// Why a `[[relation]]` row was rejected by [`read_block`] (X2) — the validation
/// finding's reason. A finding is NEVER a live edge; PHASE-05's `validate` reports
/// these (the only consumer), so until then they read as dead in the bins/lib build
/// (covered by the module-level `not(test)` `dead_code` expect).
#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) enum IllegalReason {
    /// The `label` string names no vocabulary label at all (a typo, or an inverse
    /// spelling like `superseded_by` — derived render text, never authorable).
    UnknownLabel,
    /// The label is a real vocabulary label, but this `source_kind` may not author it
    /// (e.g. a slice carrying `related`, a backlog item carrying `governed_by`). The
    /// per-kind legality the hardcoded readers enforced for free.
    IllegalForSource,
    /// The `(source, label)` pair is legal, but the row's `role` cell is wrong for it
    /// (SL-149): a `references` row with NO `role` key, a `role` naming no [`Role`], a
    /// role illegal for this source, OR a label-only row carrying a stray `role` key.
    /// The role-class finding `validate` reports for a hand-edited `references` row.
    IllegalRole,
    /// The `degree` cell names no [`Degree`] variant — e.g. a typo like
    /// `degree = "half"` (design §A.5). Mirror of the role-parse handling.
    IllegalDegree,
    /// Two rows in ONE entity's `[[relation]]` block share the same
    /// `(label, role, target)` triple — a duplicate logical edge (design §A.5 / G2 /
    /// D-uniqueness-seam). Degree-agnostic: two `fulfils` rows differing only in degree
    /// are still flagged. Per-entity local check, NOT corpus scan.
    DuplicateEdge,
}

/// One `[[relation]]` row [`read_block`] refused (X2): the offending label spelling
/// **verbatim** (so a typo is reported as authored, even when it maps to no variant),
/// the target ref, and the [`IllegalReason`]. A validation finding, not a live edge —
/// see [`read_block`]. Carries the authored spelling rather than a `RelationLabel`
/// because the `UnknownLabel` case has no variant to name.
#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct IllegalRow {
    /// The authored `label` string, verbatim (may name no vocabulary label).
    pub(crate) label: String,
    /// The authored `target` ref, verbatim.
    pub(crate) target: String,
    /// Why the row was rejected.
    pub(crate) reason: IllegalReason,
}

/// One generic tier-1 `[[relation]]` row as authored on disk — `label = "…", target =
/// "…"`. The uniform storage shape the PHASE-04 migration writes and `read_block`
/// parses. A serde row struct mirrors the established kind-module `toml::from_str`
/// idiom (`slice::Relationships`, `spec` members/interactions) — no parallel parser.
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
struct RelationRow {
    label: String,
    /// The intent role of a `references` row, authored verbatim (SL-149 §2.5). Present
    /// ONLY on a `references` `[[relation]]` row (`role = "implements"`); a label-only
    /// row carries no `role` key — `skip_serializing_if` keeps the serialised shape
    /// label-only, which is load-bearing for diff stability. `#[serde(default)]` so a
    /// label-only row parses with `role = None`.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    role: Option<String>,
    /// The completion degree of a `fulfils` row, authored verbatim (design §A.5).
    /// Present ONLY on a `fulfils` row (`degree = "partial"`); every other label
    /// carries no `degree` key — `skip_serializing_if` keeps the serialised shape
    /// degree-free, load-bearing for diff stability. `None` ≡ full.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    degree: Option<String>,
    target: String,
}

/// The document shape `read_block` deserializes: the array of generic `[[relation]]`
/// rows. `#[serde(default)]` so a file with no `[[relation]]` block (or a hand-trimmed
/// one) parses to an empty block, matching the read-tolerant convention every kind
/// module's relationship reader follows.
#[derive(Debug, Default, serde::Deserialize)]
pub(crate) struct RelationDoc {
    #[serde(default)]
    relation: Vec<RelationRow>,
}

impl RelationDoc {
    /// Parse the `[[relation]]` block out of a kind's authored TOML text. Rides the
    /// `toml::from_str` idiom the show-path readers use; `#[serde(default)]` ignores
    /// every other key (the kind's own metadata/typed tables), so one parse over the
    /// whole file yields just the generic rows.
    pub(crate) fn parse(text: &str) -> anyhow::Result<RelationDoc> {
        toml::from_str(text).map_err(|e| anyhow::anyhow!("parse [[relation]] block: {e}"))
    }
}

/// Parse the generic `[[relation]]` rows of one entity and split them into the legal
/// outbound edges and the illegal validation findings (design §5.3, X2).
///
/// Generic storage must NOT mean a generic parser that emits anything: a slice cannot
/// author `related`, a backlog item cannot author `governed_by`. That per-kind
/// legality lived in the hardcoded readers' code shape; `read_block` reproduces it by
/// checking each row's `(source_kind, label)` against [`RELATION_RULES`] via
/// [`lookup`]:
/// - **legal** (`label` resolves to a variant AND `source_kind ∈ rule.sources`) ⇒ a
///   [`RelationEdge`].
/// - **illegal** (`label` names no variant, OR the variant is not authorable by
///   `source_kind`) ⇒ an [`IllegalRow`] finding — NEVER a live edge.
///
/// Legal edges are emitted in **`RELATION_RULES` declaration order** for the source
/// kind (X1 canonical); within one label, authored row order is preserved. This pins
/// the per-kind tier-1 sequence the accessor return value / JSON / `format_show` paths
/// consume before any `BTreeMap` regroup. `IllegalRow`s follow authored row order.
///
/// NOT yet wired into a live reader (PHASE-04); PHASE-05's `validate` consumes the
/// findings. Until then both this fn and [`IllegalRow`] read as dead in the bins/lib
/// build (the module-level `not(test)` `dead_code` expect), exercised by the suite.
pub(crate) fn read_block(
    source_kind: &Kind,
    doc: &RelationDoc,
) -> (Vec<RelationEdge>, Vec<IllegalRow>) {
    let mut illegal: Vec<IllegalRow> = Vec::new();
    // Bucket the legal edges by their canonical label position in RELATION_RULES, so
    // the emitted order is the table's declaration order for this source (X1) while
    // same-label rows keep their authored sequence. `Vec<(pos, edge)>` then a stable
    // sort by pos — stable so within a label the authored order survives.
    let mut legal: Vec<(usize, RelationEdge)> = Vec::new();
    for row in &doc.relation {
        let illegal_row = |reason: IllegalReason| IllegalRow {
            label: row.label.clone(),
            target: row.target.clone(),
            reason,
        };
        let Some(label) = RelationLabel::from_name(&row.label) else {
            illegal.push(illegal_row(IllegalReason::UnknownLabel));
            continue;
        };
        // The `(source, label)` pair must be admitted by SOME row first; an off-table
        // pair is the plain illegal-for-source finding (NOT mis-reported as a role
        // problem), preserving the X2 legality the hardcoded readers had for free.
        if !source_label_admitted(source_kind, label) {
            illegal.push(illegal_row(IllegalReason::IllegalForSource));
            continue;
        }
        // Resolve the row's authored `role` cell to an `Option<Role>` (SL-149 §2.5). A
        // `role` string that names no `Role` is itself a role-class finding.
        let role = match &row.role {
            None => None,
            Some(spelling) => {
                let Some(parsed) = Role::from_name(spelling) else {
                    illegal.push(illegal_row(IllegalReason::IllegalRole));
                    continue;
                };
                Some(parsed)
            }
        };
        // Role legality: a `references` (roleful) pair demands a legal role; a label-only
        // pair refuses a stray `role`. `lookup` is role-keyed, so the canonical position
        // is taken for the SAME `(source, label, role)` key — a role mismatch misses and
        // is reported, never silently emitted.
        let Some(pos) = canonical_position(source_kind, label, role) else {
            illegal.push(illegal_row(IllegalReason::IllegalRole));
            continue;
        };
        // Resolve the optional `degree` cell (design §A.5). An unknown degree spelling
        // is an `IllegalDegree` finding (mirrors the role-parse handling). `None` ≡ Full.
        let degree = match &row.degree {
            None => None,
            Some(spelling) => {
                let Some(parsed) = Degree::from_name(spelling) else {
                    illegal.push(illegal_row(IllegalReason::IllegalDegree));
                    continue;
                };
                Some(parsed)
            }
        };
        legal.push((
            pos,
            RelationEdge::with_degree(label, role, degree, row.target.clone()),
        ));
    }
    // Stable sort by canonical position: same-label rows keep authored order (X1).
    legal.sort_by_key(|(pos, _)| *pos);

    // DuplicateEdge check (G2 / D-uniqueness-seam): a repeated `(label, role, target)`
    // within ONE entity's rows is flagged, degree-agnostic. Per-entity local, NOT
    // corpus scan. Walk the sorted legal list and flag every duplicate occurrence
    // (the FIRST occurrence of each triple stays; subsequent ones become findings).
    {
        // Role is Ord+Copy but not Hash; use a Vec<(label, role, target)> for
        // linear lookup (per-entity count is small — tens of edges max).
        let mut seen: Vec<(RelationLabel, Option<Role>, &str)> = Vec::with_capacity(legal.len());
        let mut dupe_indices: Vec<usize> = Vec::new();
        for (i, (_, e)) in legal.iter().enumerate() {
            let key = (e.label, e.role, e.target.as_str());
            if seen.contains(&key) {
                dupe_indices.push(i);
            } else {
                seen.push(key);
            }
        }
        // Remove duplicate edges from `legal` (highest index first) and push them as
        // illegal findings.
        for &i in dupe_indices.iter().rev() {
            let (_pos, edge) = legal.remove(i);
            illegal.push(IllegalRow {
                label: edge.label.name().to_string(),
                target: edge.target.clone(),
                reason: IllegalReason::DuplicateEdge,
            });
        }
    }

    let edges = legal.into_iter().map(|(_, e)| e).collect();
    (edges, illegal)
}

/// The index of the FIRST `RELATION_RULES` row that legalises `(source, label, role)`,
/// or `None` if no such row exists — a label-only edge keys on `role = None`, a
/// `references` edge on its `Some(role)`, so a missing/illegal/stray role misses
/// (SL-149). The index is the canonical-order key `read_block` sorts by (X1) — and
/// because the table is declared in `RelationLabel` enum-`Ord` order (VT-1), distinct
/// labels sort into the same order `inspect`'s `BTreeMap` regroup produces, keeping
/// every render surface canonical.
fn canonical_position(source: &Kind, label: RelationLabel, role: Option<Role>) -> Option<usize> {
    RELATION_RULES
        .iter()
        .position(|r| r.label == label && r.role == role && r.sources.contains(&source.prefix))
}

/// The live-reader convenience seam (PHASE-04): parse the `[[relation]]` block out of
/// one entity's authored TOML `text` and return only the **legal** tier-1 edges, in
/// canonical [`RELATION_RULES`] order (X1). The illegal findings are dropped here —
/// the show / `relation_edges` paths surface only live edges; `validate` (PHASE-05) is
/// the sole consumer of [`IllegalRow`]s. The per-kind `relation_edges`/`format_show`/
/// `show_json` consumers call this for their tier-1 edges, then concatenate their own
/// typed tier-2/3 edges (the X1 merge order, §5.3 point 3).
pub(crate) fn tier1_edges(source_kind: &Kind, text: &str) -> anyhow::Result<Vec<RelationEdge>> {
    let doc = RelationDoc::parse(text)?;
    let (edges, _illegal) = read_block(source_kind, &doc);
    Ok(edges)
}

/// The targets of one tier-1 `label` among `edges`, in their canonical-then-authored
/// order — the projection the `format_show` / `show_json` consumers splice per axis
/// (e.g. slice's `specs` line, the reconstructed JSON `relationships.specs` array).
/// An axis with no edges yields an empty `Vec`, matching the read-tolerant empty-axis
/// convention every kind's relationship renderer already follows.
pub(crate) fn targets_for(edges: &[RelationEdge], label: RelationLabel) -> Vec<String> {
    edges
        .iter()
        .filter(|e| e.label == label)
        .map(|e| e.target.clone())
        .collect()
}

/// The targets of one `(label, role)` pair among `edges`, in their authored order —
/// the role-keyed sibling of [`targets_for`] (SL-149 PHASE-04b). The per-kind
/// `show`/`show --json` consumers splice the `references` axis by role
/// (`{implements, originates_from, concerns}`), each role a separate array. An axis with no
/// edges yields an empty `Vec` (the read-tolerant empty-axis convention). Pure — no IO,
/// no resolution.
pub(crate) fn targets_for_role(
    edges: &[RelationEdge],
    label: RelationLabel,
    role: Role,
) -> Vec<String> {
    edges
        .iter()
        .filter(|e| e.label == label && e.role == Some(role))
        .map(|e| e.target.clone())
        .collect()
}

// ---------------------------------------------------------------------------
// PHASE-05 — the tier-1 write seam (link/unlink). Edit-preserving toml_edit over
// a `DocumentMut` (comments / inert tables / unknown keys survive verbatim —
// `mem.pattern.entity.edit-preserving-status-transition`), idempotent, with the
// F1 EOF-append defence (R2-m1, design §5.3/§5.5).
// ---------------------------------------------------------------------------

/// The outcome of [`append_edge`] — idempotent. `Wrote` ⇒ a new `[[relation]]` row
/// was appended; `Noop` ⇒ the `(label, target)` row already existed, file untouched.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub(crate) enum AppendOutcome {
    Wrote,
    Noop,
}

/// The outcome of [`remove_edge`] — idempotent. `Removed` ⇒ a matching `[[relation]]`
/// row was deleted; `Absent` ⇒ no such row, file untouched.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub(crate) enum RemoveOutcome {
    Removed,
    Absent,
}

/// Does the top-level document place a typed table or array AFTER the first
/// `[[relation]]` array-of-tables? That is the F1 trap (design §5.1/§5.3): a bare
/// `[relationships]` header sitting *after* the `[[relation]]` array would, on a naive
/// tail-`insert`, bind the new keys INTO the last array element = silent corruption.
/// We refuse rather than corrupt. Walks the document in source order; once a
/// `[[relation]]` array is seen, any later non-`relation` top-level item is the trap.
/// Returns the offending key for the refusal message, or `None` when the layout is safe
/// (every typed table precedes all `[[relation]]` arrays — the migrator's F1 shape).
fn trailing_typed_table_after_relation(doc: &toml_edit::DocumentMut) -> Option<String> {
    let mut seen_relation = false;
    for (key, item) in doc.as_table() {
        if key == "relation" && item.is_array_of_tables() {
            seen_relation = true;
        } else if seen_relation {
            // A non-`relation` top-level item authored AFTER the relation array — the
            // F1 trap. (A second `relation` key cannot occur — toml has one per table.)
            return Some(key.to_string());
        }
    }
    None
}

/// Append one tier-1 `[[relation]]` row to an entity's authored TOML `text`, edit-
/// preserving and idempotent (design §5.3). PURE: text in, text out — the impure
/// read/write shell is [`append_edge`]. Order of operations is load-bearing:
///
/// 1. **Same-triple degree-conflict check FIRST** — if a `[[relation]]` row already
///    carries this `(label, role, target)` with a DIFFERENT `degree`, fail hard
///    ("already fulfils X with degree=…; unlink to change"). Identical triple+degree →
///    `Noop`.
/// 2. **F1 EOF-append defence** ([`trailing_typed_table_after_relation`]) — refuse a
///    hand-edited file whose typed table trails the `[[relation]]` array, rather than
///    tail-inserting into the last array element (R2-m1). The refusal is an
///    `IllegalRow`-class hard error, never a silent corruption.
/// 3. Append via `toml_edit::value(target)` — escapes the target automatically, so a
///    target with a quote/backslash can never break out of the string literal
///    (`mem.pattern.render.toml-splice-escape-user-values`); never `.replace()`-splice.
fn append_relation_row(
    text: &str,
    label: RelationLabel,
    role: Option<Role>,
    degree: Option<Degree>,
    target: &str,
) -> anyhow::Result<(String, AppendOutcome)> {
    let mut doc = text
        .parse::<toml_edit::DocumentMut>()
        .map_err(|e| anyhow::anyhow!("parse TOML for relation append: {e}"))?;

    // (1) same-triple check — match on (label, role, target), degree-agnostic (§A.5).
    // Identical (incl. degree) → Noop. Same triple, different degree → hard error.
    if let Some(existing) = relation_row_find(&doc, label, role, target) {
        let existing_degree = existing
            .get("degree")
            .and_then(toml_edit::Item::as_str)
            .and_then(Degree::from_name);
        if existing_degree == degree {
            return Ok((text.to_string(), AppendOutcome::Noop));
        }
        // Same triple, different degree — no upsert (codex F1).
        anyhow::bail!(
            "already {} {} with degree={}; unlink to change",
            label.name(),
            target,
            existing_degree.map_or("full", |d| d.name()),
        );
    }

    // (2) F1 defence — refuse a trailing typed table rather than corrupt it.
    if let Some(offending) = trailing_typed_table_after_relation(&doc) {
        anyhow::bail!(
            "refusing to append [[relation]]: typed table `[{offending}]` is authored AFTER \
             the [[relation]] array (F1 — appending would corrupt it by tail-inserting into \
             the last array element). Re-home `[{offending}]` above the [[relation]] block."
        );
    }

    // (3) append a new array-of-tables element with escaped values.
    let array = doc
        .as_table_mut()
        .entry("relation")
        .or_insert_with(|| toml_edit::Item::ArrayOfTables(toml_edit::ArrayOfTables::new()))
        .as_array_of_tables_mut()
        .ok_or_else(|| {
            anyhow::anyhow!("`relation` is present but is not an array-of-tables (corrupt file)")
        })?;
    let mut row = toml_edit::Table::new();
    row.insert("label", toml_edit::value(label.name()));
    // The `role` cell rides ONLY when the edge carries a role (SL-149 §2.5): a
    // `references` row serialises `role = "implements"`; a label-only row carries NO
    // `role` key — load-bearing for diff stability. The key sits between `label` and
    // `target` so the on-disk shape reads `label / role / target`.
    if let Some(r) = role {
        row.insert("role", toml_edit::value(r.name()));
    }
    // The `degree` cell rides ONLY when the edge carries a degree (design §A.5): a
    // `fulfils` row serialises `degree = "partial"`; a non-degree edge carries NO
    // `degree` key — load-bearing for diff stability (§A.5).
    if let Some(d) = degree {
        row.insert("degree", toml_edit::value(d.name()));
    }
    row.insert("target", toml_edit::value(target));
    array.push(row);

    Ok((doc.to_string(), AppendOutcome::Wrote))
}

/// Remove one tier-1 `[[relation]]` row from `text`, edit-preserving and idempotent.
/// PURE — the impure shell is [`remove_edge`]. Removes EVERY array element matching
/// `(label, target)` (a hand-duplicated pair collapses to one logical edge, so both
/// rows go); `Absent` when none match (idempotent double-unlink). Comments and every
/// other table survive verbatim (the `DocumentMut` round-trip).
fn remove_relation_row(
    text: &str,
    label: RelationLabel,
    role: Option<Role>,
    target: &str,
) -> anyhow::Result<(String, RemoveOutcome)> {
    let mut doc = text
        .parse::<toml_edit::DocumentMut>()
        .map_err(|e| anyhow::anyhow!("parse TOML for relation remove: {e}"))?;
    let Some(array) = doc
        .as_table_mut()
        .get_mut("relation")
        .and_then(toml_edit::Item::as_array_of_tables_mut)
    else {
        return Ok((text.to_string(), RemoveOutcome::Absent));
    };
    let before = array.len();
    array.retain(|row| !row_matches(row, label, role, target));
    if array.len() == before {
        return Ok((text.to_string(), RemoveOutcome::Absent));
    }
    Ok((doc.to_string(), RemoveOutcome::Removed))
}

/// Find the FIRST `[[relation]]` row matching `(label, role, target)` (degree ignored —
/// degree is EXCLUDED from edge identity, §A.5). Returns the row for the append no-upsert
/// degree-conflict check; `None` when no matching triple exists.
fn relation_row_find<'a>(
    doc: &'a toml_edit::DocumentMut,
    label: RelationLabel,
    role: Option<Role>,
    target: &str,
) -> Option<&'a toml_edit::Table> {
    doc.as_table()
        .get("relation")
        .and_then(toml_edit::Item::as_array_of_tables)
        .and_then(|array| {
            array
                .iter()
                .find(|row| row_matches(row, label, role, target))
        })
}

/// One `[[relation]]` array element matches `(label, role, target)` iff all three cells
/// equal the queried values verbatim (SL-149 — identity is the full triple). The `role`
/// cell matches `None` iff the row carries NO `role` key, and `Some(r)` iff the row's
/// `role` string equals `r.name()`.
fn row_matches(
    row: &toml_edit::Table,
    label: RelationLabel,
    role: Option<Role>,
    target: &str,
) -> bool {
    let row_role = row.get("role").and_then(toml_edit::Item::as_str);
    row.get("label").and_then(toml_edit::Item::as_str) == Some(label.name())
        && row_role == role.map(Role::name)
        && row.get("target").and_then(toml_edit::Item::as_str) == Some(target)
}

/// Append a tier-1 `[[relation]]` edge to the entity TOML at `toml_path` (design §5.3).
/// The impure shell over the pure [`append_relation_row`]: read the file, apply the
/// edit-preserving append, write it back ONLY when a row was actually added (`Wrote`)
/// — a `Noop` never rewrites the file (no spurious mtime churn). The caller resolves
/// `toml_path` from `(source_kind, id)` via `integrity::KINDS` (the command shell).
pub(crate) fn append_edge(
    toml_path: &std::path::Path,
    label: RelationLabel,
    role: Option<Role>,
    degree: Option<Degree>,
    target: &str,
) -> anyhow::Result<AppendOutcome> {
    let text = std::fs::read_to_string(toml_path)
        .map_err(|e| anyhow::anyhow!("read {} for relation append: {e}", toml_path.display()))?;
    // SL-176 PHASE-02: the public shell threads the caller's `degree` straight to the
    // pure seam. `link --degree partial` passes `Some(Partial)` for a fulfils edge;
    // every other label passes `None` (≡ Full). Degree excluded from idempotency: the
    // pure layer matches `(label, role, target)`, then checks degree-conflict.
    let (next, outcome) = append_relation_row(&text, label, role, degree, target)?;
    if outcome == AppendOutcome::Wrote {
        crate::fsutil::write_atomic(toml_path, next.as_bytes())
            .with_context(|| format!("write {} after relation append", toml_path.display()))?;
    }
    Ok(outcome)
}

/// Remove a tier-1 `[[relation]]` edge from the entity TOML at `toml_path` (design
/// §5.3). The impure shell over the pure [`remove_relation_row`]: write back only on
/// `Removed`; `Absent` leaves the file untouched (idempotent double-unlink).
/// Unlink matches `(label, role, target)` — degree IGNORED (§A.5).
pub(crate) fn remove_edge(
    toml_path: &std::path::Path,
    label: RelationLabel,
    role: Option<Role>,
    target: &str,
) -> anyhow::Result<RemoveOutcome> {
    let text = std::fs::read_to_string(toml_path)
        .map_err(|e| anyhow::anyhow!("read {} for relation remove: {e}", toml_path.display()))?;
    // SL-176 PHASE-02: unlink matches `(label, role, target)`, degree ignored (§A.5).
    let (next, outcome) = remove_relation_row(&text, label, role, target)?;
    if outcome == RemoveOutcome::Removed {
        crate::fsutil::write_atomic(toml_path, next.as_bytes())
            .with_context(|| format!("write {} after relation remove", toml_path.display()))?;
    }
    Ok(outcome)
}

/// The derived-inbound render text for `(label, role)` (design §5.5 X5 / R2-M3, re-keyed
/// SL-149 §2.6/D5): the `inbound_name` the [`RELATION_RULES`] rows pin for that
/// `(label, role)`. Every rule carrying a given `(label, role)` declares the SAME
/// `inbound_name` (VT-3 pins this), so the FIRST match is authoritative. Label-only edges
/// pass `role = None`: `governed_by` renders governs, `consumes` consumed-by, `supersedes`
/// superseded-by; every other label-only label renders its own `name()`. `references`
/// rows are role-keyed: `implements` → "implemented by", `originates_from` → "originated from",
/// `concerns` → "concerned by". Table-driven so the `supersedes` special-case collapses
/// into one path; the `--json` inbound keeps the raw label regardless (R2-M3). Falls back
/// to `name()` for a `(label, role)` with no rule (defensive).
pub(crate) fn inbound_name(label: RelationLabel, role: Option<Role>) -> &'static str {
    RELATION_RULES
        .iter()
        .find(|r| r.label == label && r.role == role)
        .map_or(label.name(), |r| r.inbound_name)
}

/// The `link`-writable labels a `source_kind` may author, as their authored spellings
/// — for the refusal message that lists the legal labels (design §5.4 step 2). Only
/// `LinkPolicy::Writable` rules are offered; `LifecycleOnly`/`TypedVerbOnly` labels are
/// authored through their own verbs, not generic `link`.
fn writable_labels_for(source: &Kind) -> Vec<&'static str> {
    RELATION_RULES
        .iter()
        .filter(|r| r.link == LinkPolicy::Writable && r.sources.contains(&source.prefix))
        .map(|r| r.label.name())
        .collect()
}

/// The verb that DOES author a non-`link`-writable label, named in the refusal so the
/// user is pointed at the right tool (design §5.4 step 2):
/// - `LifecycleOnly` (governance `supersedes`) ⇒ the transactional supersede verb
///   (IMP-006, unbuilt) — never plain `link`.
/// - `TypedVerbOnly` ⇒ the kind's bespoke verb (`spec req add`, `spec parent`,
///   `review …`).
fn owning_verb_for(rule: &RelationRule) -> &'static str {
    match rule.link {
        LinkPolicy::Writable => "link",
        LinkPolicy::LifecycleOnly => "the transactional supersede verb (IMP-006)",
        LinkPolicy::TypedVerbOnly => "the kind's typed verb (e.g. `spec req add`, `review …`)",
    }
}

/// Validate that `source_kind` may author `label_str` (refined by `role` and `degree`)
/// via the generic `link` verb, returning the governing [`RelationRule`] (design §5.4
/// step 2, re-keyed SL-149 §2.6, SL-176 §A.6). PURE — no disk, no target resolution.
/// Refusals, each naming the remedy:
/// - the `(source, label)` pair is off-table (an unknown label, or a real label this
///   source may not author) ⇒ error listing the source's legal `link` labels;
/// - `MissingRole` — `label` is roleful (`references`) but `role` is `None` (the CLI
///   omitted `--role`); the message lists the legal roles;
/// - `RoleNotApplicable` — `role` is `Some` but `label` is label-only (e.g. `governed_by`);
/// - `IllegalRole` — `role` is `Some` but not in `legal_roles(source, label)`;
/// - `DegreeNotApplicable` — `degree` is `Some` but the rule is NOT `degree_bearing`
///   (design §A.6); no `MissingDegree` — absent ≡ full is legal;
/// - the row is real but `link ≠ Writable` ⇒ error naming the owning verb.
pub(crate) fn validate_link(
    source_kind: &Kind,
    label_str: &str,
    role: Option<Role>,
    degree: Option<Degree>,
) -> anyhow::Result<&'static RelationRule> {
    let legal = || writable_labels_for(source_kind).join(", ");
    let label = RelationLabel::from_name(label_str).ok_or_else(|| {
        anyhow::anyhow!(
            "`{label_str}` is not a relation label authorable by {} via `link`. Legal labels: {}",
            source_kind.prefix,
            legal()
        )
    })?;
    // The `(source, label)` pair must be admitted by SOME row before we can classify a
    // role problem; otherwise it is the plain illegal-for-source refusal.
    anyhow::ensure!(
        source_label_admitted(source_kind, label),
        "{} may not author `{label_str}` (illegal for this source). Legal `link` labels: {}",
        source_kind.prefix,
        legal()
    );
    // Role gate (SL-149): a roleful label (`references`) demands a role; a label-only
    // label refuses one. `roles_here` is empty exactly for a label-only `(source, label)`.
    let roles_here: Vec<Role> = legal_roles(source_kind, label).collect();
    let roleful = !roles_here.is_empty();
    match (roleful, role) {
        (true, None) => anyhow::bail!(
            "`{label_str}` requires a role — author it with `--role <{}>`",
            roles_here
                .iter()
                .map(|r| r.name())
                .collect::<Vec<_>>()
                .join("|")
        ),
        (false, Some(r)) => anyhow::bail!(
            "`{label_str}` does not take a role; remove `--role {}`",
            r.name()
        ),
        (true, Some(r)) => anyhow::ensure!(
            roles_here.contains(&r),
            "`{}` is not a legal role for {} `{label_str}` — legal roles: {}",
            r.name(),
            source_kind.prefix,
            roles_here
                .iter()
                .map(|lr| lr.name())
                .collect::<Vec<_>>()
                .join(", ")
        ),
        (false, None) => {}
    }
    let rule = lookup(source_kind, label, role).ok_or_else(|| {
        anyhow::anyhow!(
            "{} may not author `{label_str}` (illegal for this source). Legal `link` labels: {}",
            source_kind.prefix,
            legal()
        )
    })?;
    anyhow::ensure!(
        rule.link == LinkPolicy::Writable,
        "`{label_str}` is not `link`-writable — author it through {}, not generic `link`",
        owning_verb_for(rule)
    );
    // Degree gate (SL-176 §A.6): a degree on a non-degree_bearing label is
    // DegreeNotApplicable (symmetric to RoleNotApplicable). No MissingDegree —
    // absent ≡ full is always legal.
    if degree.is_some() && !rule.degree_bearing {
        anyhow::bail!("`{label_str}` does not take a degree; remove `--degree`");
    }
    Ok(rule)
}

/// The forward-edge legal-KIND check (design §5.5, R2-M1 — NEW code). Given a `rule`
/// already known `link`-writable, the `source_kind`, and the target's parsed kind
/// `target_prefix`, assert the target kind is admissible for the rule's [`TargetSpec`]:
/// - `Kinds(set)` ⇒ `target_prefix` must be in `set` (e.g. `governed_by` → ADR·POL·STD,
///   so `link SL-048 governed_by SL-003` is REFUSED even though `SL-003` resolves);
/// - `SameKind` ⇒ `target_prefix == source_kind.prefix` (governance `related` → same
///   gov kind; a cross-gov target is refused);
/// - `AnyNumbered` ⇒ any numbered kind is fine;
/// - `Unvalidated` ⇒ unreachable here (free-text targets skip the kind check entirely).
///
/// `ensure_ref_resolves` (existence) is the caller's complementary gate — it does NOT
/// check kind, which is exactly why this assertion is needed.
pub(crate) fn check_target_kind(
    rule: &RelationRule,
    source_kind: &Kind,
    target_prefix: &str,
) -> anyhow::Result<()> {
    match rule.target {
        TargetSpec::Kinds(set) => anyhow::ensure!(
            set.contains(&target_prefix),
            "`{}` target must be one of [{}], got a {target_prefix}",
            rule.label.name(),
            set.to_vec().join(", ")
        ),
        TargetSpec::SameKind => anyhow::ensure!(
            target_prefix == source_kind.prefix,
            "`{}` target must be the same kind as the source ({}), got a {target_prefix}",
            rule.label.name(),
            source_kind.prefix
        ),
        TargetSpec::AnyNumbered | TargetSpec::Unvalidated => {}
    }
    Ok(())
}

/// Test-only fixture helper (SL-048 PHASE-04): render an entity's relations in the
/// MIGRATED on-disk shape from structured `axes` — each `(label, targets)`. An axis
/// whose `(source, label)` is a tier-1 migrated rule (`Tier::One` AND NOT the
/// storage-excluded gov `supersedes`, OD-3) becomes `[[relation]]` rows; every other
/// axis (typed tier-2/3, gov `supersedes`, or a non-relation key like `tags`/
/// `superseded_by`) stays in a `[relationships]` table emitted FIRST (F1 — typed
/// tables precede all arrays-of-tables). Mirrors what the one-shot corpus migrator
/// produces, so unit fixtures exercise the post-cut shape the live readers expect.
#[cfg(test)]
pub(crate) fn rels_block(source: &Kind, axes: &[(&str, &[&str])]) -> String {
    let migrated = |label: RelationLabel| -> bool {
        // Tier-1 — SL-095 migrated governance supersedes from typed to
        // [[relation]], so the LifecycleOnly exclusion is dropped. Label-only lookup
        // (role None) — this helper authors the legacy label-keyed shape; references
        // (roleful) is exercised by the role-aware suites, not this fixture.
        lookup(source, label, None)
            .map(|r| r.tier == Tier::One)
            .unwrap_or(false)
    };
    let mut typed = String::new();
    let mut rows = String::new();
    for (label, targets) in axes {
        // SL-149: a `references(<role>)` label string authors a roled `[[relation]]` row
        // (the migration target of the old specs/requirements/related edges).
        if let Some(role) = label
            .strip_prefix("references(")
            .and_then(|s| s.strip_suffix(')'))
        {
            for t in *targets {
                rows.push_str(&format!(
                    "[[relation]]\nlabel = \"references\"\nrole = \"{role}\"\ntarget = \"{t}\"\n"
                ));
            }
            continue;
        }
        let is_migrated = RelationLabel::from_name(label)
            .map(migrated)
            .unwrap_or(false);
        if is_migrated {
            for t in *targets {
                rows.push_str(&format!(
                    "[[relation]]\nlabel = \"{label}\"\ntarget = \"{t}\"\n"
                ));
            }
        } else {
            let list = targets
                .iter()
                .map(|t| format!("\"{t}\""))
                .collect::<Vec<_>>()
                .join(", ");
            typed.push_str(&format!("{label} = [{list}]\n"));
        }
    }
    let typed_table = if typed.is_empty() {
        String::new()
    } else {
        format!("[relationships]\n{typed}")
    };
    format!("{typed_table}{rows}")
}

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

    #[test]
    fn label_name_is_stable() {
        assert_eq!(RelationLabel::Supersedes.name(), "supersedes");
        assert_eq!(RelationLabel::OwningSlice.name(), "owning_slice");
        assert_eq!(RelationLabel::Drift.name(), "drift");
        assert_eq!(RelationLabel::DecisionRef.name(), "decision_ref");
        assert_eq!(RelationLabel::Supports.name(), "supports");
        assert_eq!(RelationLabel::Disputes.name(), "disputes");
    }

    #[test]
    fn edge_carries_label_and_target() {
        let e = RelationEdge::with_role(
            RelationLabel::References,
            Some(Role::Implements),
            "PRD-010".to_string(),
        );
        assert_eq!(e.label, RelationLabel::References);
        assert_eq!(e.target, "PRD-010");
    }

    #[test]
    fn targets_for_role_filters_by_label_and_role() {
        // SL-149 PHASE-04b: the role-keyed sibling of `targets_for`. Splits a mixed
        // `references` axis into its three role buckets; a label-only edge and a
        // different-label edge are both excluded.
        let edges = vec![
            RelationEdge::with_role(
                RelationLabel::References,
                Some(Role::Implements),
                "SPEC-018".into(),
            ),
            RelationEdge::with_role(
                RelationLabel::References,
                Some(Role::Concerns),
                "RFC-003".into(),
            ),
            RelationEdge::with_role(
                RelationLabel::References,
                Some(Role::Implements),
                "PRD-010".into(),
            ),
            // a different label sharing no role bucket
            RelationEdge::new(RelationLabel::Supersedes, "SL-009".into()),
        ];
        assert_eq!(
            targets_for_role(&edges, RelationLabel::References, Role::Implements),
            vec!["SPEC-018".to_string(), "PRD-010".to_string()],
        );
        assert_eq!(
            targets_for_role(&edges, RelationLabel::References, Role::Concerns),
            vec!["RFC-003".to_string()],
        );
        assert!(
            targets_for_role(&edges, RelationLabel::References, Role::OriginatesFrom).is_empty(),
            "an empty role bucket yields an empty Vec",
        );
    }

    use crate::adr::ADR_KIND;
    use crate::backlog::{CHORE_KIND, IDEA_KIND, IMPROVEMENT_KIND, ISSUE_KIND, RISK_KIND};
    use crate::entity::Kind;
    use crate::knowledge::ASSUMPTION_KIND;
    use crate::policy::POLICY_KIND;
    use crate::rec::REC_KIND;
    use crate::requirement::REQUIREMENT_KIND;
    use crate::review::REVIEW_KIND;
    use crate::slice::SLICE_KIND;
    use crate::spec::{PRODUCT_SPEC_KIND, TECH_SPEC_KIND};
    use crate::standard::STANDARD_KIND;

    /// The distinct labels of `RELATION_RULES`, in declaration order.
    fn distinct_labels_in_decl_order() -> Vec<RelationLabel> {
        let mut seen: Vec<RelationLabel> = Vec::new();
        for r in RELATION_RULES {
            if !seen.contains(&r.label) {
                seen.push(r.label);
            }
        }
        seen
    }

    /// VT-1 (R2-C1 / X1): the `RelationLabel` enum `Ord` (declaration order) MUST
    /// equal the `RELATION_RULES` distinct-label declaration order. Asserted by the
    /// PROPERTY — the distinct-label sequence derived from the table is already in
    /// strictly-ascending enum `Ord`, and sorting it leaves it unchanged. This keeps
    /// `inspect`'s `BTreeMap<RelationLabel>` regroup canonical against the table.
    #[test]
    fn enum_ord_matches_relation_rules_label_order() {
        let from_table = distinct_labels_in_decl_order();
        let mut sorted = from_table.clone();
        sorted.sort();
        assert_eq!(
            from_table, sorted,
            "RELATION_RULES distinct-label declaration order diverged from RelationLabel enum Ord"
        );
    }

    /// VT-2 (R2-M2): for every PRE-EXISTING tier-1 label, the table's `sources` set
    /// matches what the SHIPPED `relation_edges` accessor emits. `members` is pinned
    /// PRD·SPEC (`spec::relation_edges` is subtype-blind). Compared by `prefix` (the
    /// canonical `Kind` identity). Asserts the property — the legal source-set —
    /// against the shipped accessors' emit behaviour, not a restatement of the table.
    #[test]
    fn sources_match_shipped_accessors() {
        // (label, the source prefixes the shipped accessor proves can emit it).
        // slice::relation_edges emits references/supersedes for SL.
        // backlog::relation_edges emits slices/references/drift plus (post-SL-145)
        // governed_by/related for every backlog kind.
        // governance::relation_edges emits supersedes/related for ADR·POL·STD.
        // spec::relation_edges (subtype-blind) emits descends_from/parent/members/
        //   interactions; members is the one design-corrected PRD·SPEC cell.
        // review::relation_edges emits reviews for RV; rec::relation_edges emits
        //   owning_slice/decision_ref for REC.
        let expected: &[(RelationLabel, &[&str])] = &[
            // SL-149 PHASE-05: specs/requirements collapsed into references; the union of
            // its three rows' source-sets is the pinned census set.
            (
                RelationLabel::References,
                &[
                    "SL", "RFC", "ISS", "IMP", "CHR", "RSK", "IDE", "ASM", "DEC", "QUE", "CON",
                    "EVD", "HYP",
                ],
            ),
            (
                RelationLabel::Supersedes,
                &[
                    "SL", "ADR", "POL", "STD", "ASM", "DEC", "QUE", "CON", "EVD", "HYP",
                ],
            ),
            (RelationLabel::DescendsFrom, &["SPEC"]),
            (RelationLabel::Parent, &["PRD", "SPEC"]),
            (RelationLabel::Members, &["PRD", "SPEC"]),
            (RelationLabel::Interactions, &["SPEC"]),
            (
                RelationLabel::Related,
                &[
                    "ADR", "POL", "RFC", "SL", "STD", "ISS", "IMP", "CHR", "RSK", "IDE",
                ],
            ),
            (RelationLabel::Fulfils, &["SL"]),
            (RelationLabel::Reviews, &["RV"]),
            (RelationLabel::OwningSlice, &["REC"]),
            (RelationLabel::Drift, &["ISS", "IMP", "CHR", "RSK", "IDE"]),
            (RelationLabel::DecisionRef, &["REC"]),
            (RelationLabel::Shapes, RECORD),
            (RelationLabel::Spawns, RECORD),
            (RelationLabel::OriginatesFrom, &["REV"]),
            (RelationLabel::Supports, &["EVD"]),
            (RelationLabel::Disputes, &["EVD"]),
        ];
        for (label, want_prefixes) in expected {
            let mut got: Vec<&str> = RELATION_RULES
                .iter()
                .filter(|r| r.label == *label)
                .flat_map(|r| r.sources.iter().copied())
                .collect();
            got.sort_unstable();
            got.dedup();
            let mut want: Vec<&str> = want_prefixes.to_vec();
            want.sort_unstable();
            want.dedup();
            assert_eq!(
                got, want,
                "RELATION_RULES source set for {label:?} diverged from the shipped accessor"
            );
        }
    }

    /// VT-3 (R2-M3): `inbound_name == name()` for EVERY pre-existing label; the ONLY
    /// labels whose inbound spelling differs from their outbound `name()` are
    /// `supersedes` ("superseded by"), `governed_by` ("governs"), `consumes`
    /// ("consumed_by"). Render-text only — behaviour-preservation mandate.
    #[test]
    fn inbound_name_equals_name_except_the_three_inverted() {
        for r in RELATION_RULES {
            let differs = r.inbound_name != r.label.name();
            let allowed_to_differ = matches!(
                r.label,
                RelationLabel::Supersedes
                    | RelationLabel::GovernedBy
                    | RelationLabel::Consumes
                    | RelationLabel::Contextualizes
                    | RelationLabel::Shapes
                    | RelationLabel::Spawns
                    | RelationLabel::OriginatesFrom
                    // SL-149: references is role-derived inbound — every references row's
                    // inbound differs from name() ("implemented by"/"originated from"/"concerned by").
                    | RelationLabel::References
                    // SL-159: supports/disputes inbound ("supported_by"/"disputed_by")
                    // differ from name().
                    | RelationLabel::Supports
                    | RelationLabel::Disputes
                    // SL-176: fulfils inbound differs from name() ("fulfilled by").
                    | RelationLabel::Fulfils
            );
            if differs {
                assert!(
                    allowed_to_differ,
                    "{:?} inbound_name {:?} differs from name() {:?} but is not an allowed inverted label",
                    r.label,
                    r.inbound_name,
                    r.label.name()
                );
            }
        }
        // And the three inverted labels carry exactly their pinned inbound spelling.
        assert_eq!(
            lookup(&SLICE_KIND, RelationLabel::Supersedes, None)
                .unwrap()
                .inbound_name,
            "superseded by"
        );
        assert_eq!(
            lookup(&SLICE_KIND, RelationLabel::GovernedBy, None)
                .unwrap()
                .inbound_name,
            "governs"
        );
        assert_eq!(
            lookup(&PRODUCT_SPEC_KIND, RelationLabel::Consumes, None)
                .unwrap()
                .inbound_name,
            "consumed_by"
        );
    }

    /// VT-4 (ADR-010 D4/D5): `RELATION_RULES` admits OUTBOUND labels only — no
    /// inverse/derived spelling (`superseded_by`, `governs`, `consumed_by`) is
    /// expressible as a rule's `label`. The derived reciprocal lives ONLY in
    /// `inbound_name` (render text); there is no `RelationLabel` variant for it and
    /// thus no row whose `label.name()` is an inverse spelling — structurally
    /// un-authorable in `[[relation]]`.
    #[test]
    fn no_rule_label_is_an_inverse_spelling() {
        const INVERSE_SPELLINGS: &[&str] = &[
            "superseded_by",
            "governs",
            "consumed_by",
            "contextualized_by",
            "supported_by",
            "disputed_by",
        ];
        for r in RELATION_RULES {
            assert!(
                !INVERSE_SPELLINGS.contains(&r.label.name()),
                "{:?} round-trips to an inverse outbound spelling {:?} — inverses are derived, not authorable",
                r.label,
                r.label.name()
            );
        }
        // The inverse spellings only ever appear as inbound render text, never as a
        // label name — confirms the outbound/inbound split is structural.
        assert!(
            RELATION_RULES
                .iter()
                .any(|r| r.inbound_name == "superseded by"),
            "expected the supersedes rule to carry the inverted inbound text"
        );
    }

    /// A self-check that the VT-1 / VT-2 enumerations stay exhaustive: the full
    /// variant list used by the property tests must match the table's distinct
    /// labels (so a future variant cannot silently escape the order/source audits).
    #[test]
    fn every_variant_appears_in_the_table() {
        const ALL: &[RelationLabel] = &[
            RelationLabel::References,
            RelationLabel::Supersedes,
            RelationLabel::DescendsFrom,
            RelationLabel::Parent,
            RelationLabel::Members,
            RelationLabel::Interactions,
            RelationLabel::Contextualizes,
            RelationLabel::Shapes,
            RelationLabel::Spawns,
            RelationLabel::GovernedBy,
            RelationLabel::Consumes,
            RelationLabel::Related,
            RelationLabel::Fulfils,
            RelationLabel::Reviews,
            RelationLabel::OwningSlice,
            RelationLabel::Drift,
            RelationLabel::DecisionRef,
            RelationLabel::Revises,
            RelationLabel::OriginatesFrom,
            RelationLabel::Supports,
            RelationLabel::Disputes,
        ];
        // ALL is declared in enum order; assert it is sorted (catches a mis-ordered
        // literal) and that it equals the table's distinct-label sequence.
        let mut sorted = ALL.to_vec();
        sorted.sort();
        assert_eq!(ALL, sorted.as_slice(), "ALL is not in enum Ord order");
        assert_eq!(
            distinct_labels_in_decl_order(),
            ALL.to_vec(),
            "RELATION_RULES does not cover exactly the RelationLabel variants in order"
        );
    }

    /// The `tier` axis (design §5.2 storage-shape column): tier-1 = the uniform
    /// `[[relation]]` block; tier-2/3 = bespoke typed structures. Pins the partition
    /// the PHASE-04 migration acts on. Governance `supersedes` is tier-1 BY SHAPE
    /// even though storage-excluded (the `link` axis, not `tier`, carries that).
    #[test]
    fn tier_partition_matches_design() {
        let tier_one = [
            RelationLabel::References,
            RelationLabel::Supersedes,
            RelationLabel::Contextualizes,
            RelationLabel::Shapes,
            RelationLabel::Spawns,
            RelationLabel::GovernedBy,
            RelationLabel::Consumes,
            RelationLabel::Related,
            RelationLabel::Fulfils,
            RelationLabel::Drift,
            RelationLabel::Supports,
            RelationLabel::Disputes,
        ];
        for r in RELATION_RULES {
            let want = if tier_one.contains(&r.label) {
                // ADR-010 Amendment: governance supersedes stays typed (LifecycleOnly).
                if r.label == RelationLabel::Supersedes && r.sources == GOV {
                    Tier::Typed
                } else {
                    Tier::One
                }
            } else {
                Tier::Typed
            };
            assert_eq!(
                r.tier, want,
                "{:?} tier diverged from the design storage-shape column",
                r.label
            );
        }
    }

    /// The `target` axis (design §5.2 forward-validation column): the `TargetSpec`
    /// variant per label. `SameKind` for governance `supersedes`/`related`,
    /// `Unvalidated` for `drift`/`decision_ref`, `AnyNumbered` for `reviews`,
    /// `Kinds` for everything else. Reads `r.target` (the forward-validation axis
    /// PHASE-05 consumes) and pins it now.
    #[test]
    fn target_spec_matches_design() {
        for r in RELATION_RULES {
            match (r.label, r.sources) {
                // gov related → SameKind; slice related → AnyNumbered.
                (RelationLabel::Related, s) => {
                    if s.iter().any(|k| *k == "ADR") {
                        assert!(
                            matches!(r.target, TargetSpec::SameKind),
                            "gov related → SameKind"
                        );
                    } else {
                        assert!(
                            matches!(r.target, TargetSpec::AnyNumbered),
                            "slice related → AnyNumbered"
                        );
                    }
                }
                (RelationLabel::Supersedes, s) if !s.iter().any(|k| *k == "SL") => {
                    // GOV supersedes is SameKind; RECORD supersedes is Kinds(RECORD).
                    if s.iter().any(|k| *k == "ADR") {
                        assert!(
                            matches!(r.target, TargetSpec::SameKind),
                            "gov supersedes → SameKind"
                        );
                    } else {
                        // RECORD supersedes → Kinds(RECORD). The pattern match on a
                        // constant ref (`Kinds(RECORD)`) is unstable; fall back to a
                        // contents check.
                        match r.target {
                            TargetSpec::Kinds(ks) => {
                                let got: Vec<&str> = ks.iter().copied().collect();
                                let want: Vec<&str> = RECORD.iter().copied().collect();
                                assert_eq!(got, want, "record supersedes → Kinds(RECORD)");
                            }
                            other => panic!(
                                "record supersedes → Kinds(RECORD), got {:?}",
                                std::mem::discriminant(&other)
                            ),
                        }
                    }
                }
                (
                    RelationLabel::Drift
                    | RelationLabel::DecisionRef
                    | RelationLabel::Contextualizes,
                    _,
                ) => {
                    assert!(
                        matches!(r.target, TargetSpec::Unvalidated),
                        "{:?} → Unvalidated",
                        r.label
                    );
                }
                (RelationLabel::Reviews, _) => {
                    assert!(
                        matches!(r.target, TargetSpec::AnyNumbered),
                        "reviews → AnyNumbered"
                    );
                }
                // SL-149: references is role-keyed — the (label, role) → TargetSpec gate
                // golden. implements → Kinds(SPEC,PRD,REQ); originates_from → widened Kinds
                // (backlog + SL, §A.2); concerns → AnyNumbered.
                (RelationLabel::References, _) => match r.role {
                    Some(Role::Implements) => match r.target {
                        TargetSpec::Kinds(ks) => {
                            let mut got: Vec<&str> = ks.iter().copied().collect();
                            got.sort_unstable();
                            assert_eq!(got, ["PRD", "REQ", "SPEC"], "implements → SPEC·PRD·REQ");
                        }
                        _ => panic!("references(implements) → Kinds(SPEC,PRD,REQ)"),
                    },
                    Some(Role::OriginatesFrom) => match r.target {
                        TargetSpec::Kinds(ks) => {
                            let mut got: Vec<&str> = ks.iter().copied().collect();
                            got.sort_unstable();
                            // SL-176 §A.2: target widened to {backlog + SL}.
                            assert_eq!(
                                got,
                                ["CHR", "IDE", "IMP", "ISS", "RSK", "SL"],
                                "originates_from → widened Kinds"
                            );
                        }
                        _ => panic!("references(originates_from) → widened Kinds"),
                    },
                    Some(Role::Concerns) => assert!(
                        matches!(r.target, TargetSpec::AnyNumbered),
                        "concerns → AnyNumbered"
                    ),
                    None => panic!("a references row must carry a role"),
                },
                // Everything else points at an explicit kind set; reading the inner
                // slice exercises the `Kinds` payload (forward-validation target).
                (_, _) => match r.target {
                    TargetSpec::Kinds(ks) => {
                        assert!(!ks.is_empty(), "{:?} → non-empty Kinds set", r.label)
                    }
                    other => panic!(
                        "{:?} expected an explicit Kinds target, got {}",
                        r.label,
                        match other {
                            TargetSpec::SameKind => "SameKind",
                            TargetSpec::AnyNumbered => "AnyNumbered",
                            TargetSpec::Unvalidated => "Unvalidated",
                            TargetSpec::Kinds(_) => unreachable!(),
                        }
                    ),
                },
            }
        }
        // governed_by points at the three governance kinds specifically.
        if let TargetSpec::Kinds(ks) = lookup(&SLICE_KIND, RelationLabel::GovernedBy, None)
            .unwrap()
            .target
        {
            let mut got: Vec<&str> = ks.iter().copied().collect();
            got.sort_unstable();
            assert_eq!(got, ["ADR", "POL", "STD"]);
        } else {
            panic!("governed_by → Kinds([ADR,POL,STD])");
        }
        // shapes target is the explicit 16-kind set (D2).
        if let TargetSpec::Kinds(ks) = lookup(&ASSUMPTION_KIND, RelationLabel::Shapes, None)
            .unwrap()
            .target
        {
            let mut got: Vec<&str> = ks.iter().copied().collect();
            got.sort_unstable();
            assert_eq!(
                got,
                [
                    "ADR", "ASM", "CHR", "CON", "DEC", "EVD", "HYP", "IDE", "IMP", "ISS", "POL",
                    "PRD", "QUE", "REQ", "RFC", "RSK", "SL", "SPEC", "STD"
                ]
            );
        } else {
            panic!(
                "shapes → Kinds([PRD, SPEC, REQ, SLICE, ISS, IMP, CHR, RSK, IDE, ADR, POL, STD, ASM, DEC, QUE, CON])"
            );
        }
        // spawns target is the 5 backlog-item kinds.
        if let TargetSpec::Kinds(ks) = lookup(&ASSUMPTION_KIND, RelationLabel::Spawns, None)
            .unwrap()
            .target
        {
            let mut got: Vec<&str> = ks.iter().copied().collect();
            got.sort_unstable();
            assert_eq!(got, ["CHR", "IDE", "IMP", "ISS", "RSK"]);
        } else {
            panic!("spawns → Kinds([ISS, IMP, CHR, RSK, IDE])");
        }
        // RECORD Supersedes target is Kinds(RECORD), NOT SameKind (D4 — records
        // admit cross-kind supersession; the §6 matrix enforces it at the verb).
        let r = lookup(&ASSUMPTION_KIND, RelationLabel::Supersedes, None)
            .unwrap_or_else(|| panic!("RECORD Supersedes row not found for ASM"));
        assert_eq!(
            r.link,
            LinkPolicy::LifecycleOnly,
            "record supersedes → LifecycleOnly"
        );
        if let TargetSpec::Kinds(ks) = r.target {
            let mut got: Vec<&str> = ks.iter().copied().collect();
            got.sort_unstable();
            assert_eq!(got, ["ASM", "CON", "DEC", "EVD", "HYP", "QUE"]);
        } else {
            panic!("record supersedes → Kinds(RECORD)");
        }
    }

    // -- PHASE-03: read_block legality (VT-2) + canonical order (VT-3) -------

    /// (label, target) pairs for ergonomic edge assertions.
    fn edge_pairs(edges: &[RelationEdge]) -> Vec<(RelationLabel, &str)> {
        edges.iter().map(|e| (e.label, e.target.as_str())).collect()
    }

    /// VT-2 (X2): the generic parser preserves the per-kind legality the hardcoded
    /// readers had for free. A slice row carrying `related` (SL-095) and a backlog row
    /// carrying `governed_by`/`related` (SL-145) are legal and emit edges; a backlog row
    /// carrying `requirements` (SL-only) ⇒ `IllegalRow` (IllegalForSource), NEVER a live
    /// edge. An unknown label spelling ⇒ `IllegalRow` (UnknownLabel).
    #[test]
    fn read_block_rejects_illegal_source_label_pairs() {
        // A slice authoring `related` plus a legal `references(implements)`.
        let slice_doc = RelationDoc::parse(
            "[[relation]]\nlabel = \"related\"\ntarget = \"SL-002\"\n\
             [[relation]]\nlabel = \"references\"\nrole = \"implements\"\ntarget = \"PRD-010\"\n",
        )
        .unwrap();
        let (edges, illegal) = read_block(&SLICE_KIND, &slice_doc);
        assert_eq!(
            edge_pairs(&edges),
            vec![
                (RelationLabel::References, "PRD-010"),
                (RelationLabel::Related, "SL-002"),
            ],
            "the legal references and related rows emit edges"
        );
        assert!(illegal.is_empty(), "related is legal for a slice source");

        // A backlog item authoring `governed_by ADR-010` and `related IMP-005` (both legal
        // for a backlog source post-SL-145) plus a legal `references(originates_from)` to a
        // slice (the backlog→slice provenance edge, post-SL-176 — `slices` is retired), and a
        // `references(implements)` row that is IllegalRole (implements is SL-only — a
        // backlog item may author references(concerns)/(originates_from), not implements).
        // Legal edges emit in table-declaration order: references, governed_by, related.
        let backlog_doc = RelationDoc::parse(
            "[[relation]]\nlabel = \"governed_by\"\ntarget = \"ADR-010\"\n\
             [[relation]]\nlabel = \"references\"\nrole = \"originates_from\"\ntarget = \"SL-020\"\n\
             [[relation]]\nlabel = \"related\"\ntarget = \"IMP-005\"\n\
             [[relation]]\nlabel = \"references\"\nrole = \"implements\"\ntarget = \"REQ-001\"\n",
        )
        .unwrap();
        let (edges, illegal) = read_block(&ISSUE_KIND, &backlog_doc);
        assert_eq!(
            edge_pairs(&edges),
            vec![
                (RelationLabel::References, "SL-020"),
                (RelationLabel::GovernedBy, "ADR-010"),
                (RelationLabel::Related, "IMP-005"),
            ],
            "references(originates_from), governed_by, and related all emit edges for a backlog source (SL-176)"
        );
        assert_eq!(
            illegal,
            vec![IllegalRow {
                label: "references".to_string(),
                target: "REQ-001".to_string(),
                reason: IllegalReason::IllegalRole,
            }],
            "references(implements) is illegal for a backlog source (implements is SL-only)"
        );

        // An unknown label spelling (a typo / an inverse spelling) ⇒ UnknownLabel.
        let bad_doc = RelationDoc::parse(
            "[[relation]]\nlabel = \"superseded_by\"\ntarget = \"SL-001\"\n\
             [[relation]]\nlabel = \"nonsense\"\ntarget = \"X\"\n",
        )
        .unwrap();
        let (edges, illegal) = read_block(&SLICE_KIND, &bad_doc);
        assert!(edges.is_empty(), "no legal edges from unknown labels");
        assert_eq!(
            illegal,
            vec![
                IllegalRow {
                    label: "superseded_by".to_string(),
                    target: "SL-001".to_string(),
                    reason: IllegalReason::UnknownLabel,
                },
                IllegalRow {
                    label: "nonsense".to_string(),
                    target: "X".to_string(),
                    reason: IllegalReason::UnknownLabel,
                },
            ],
            "an inverse spelling and a typo are both UnknownLabel findings, verbatim"
        );
    }

    /// VT-3 (X1): rows authored OUT of canonical order emit edges in `RELATION_RULES`
    /// declaration order for the source kind; within one `(label, role)`, authored row
    /// order is preserved. The slice canonical run is references(implements) →
    /// supersedes; author them reversed with three references rows to prove the stable
    /// same-key order (SL-149 PHASE-05: the old specs/requirements collapsed into
    /// references(implements)).
    #[test]
    fn read_block_emits_in_canonical_order_stable_within_label() {
        let doc = RelationDoc::parse(
            // Authored order: supersedes, then three references(implements) (R-002, R-001, PRD-010).
            "[[relation]]\nlabel = \"supersedes\"\ntarget = \"SL-000\"\n\
             [[relation]]\nlabel = \"references\"\nrole = \"implements\"\ntarget = \"REQ-002\"\n\
             [[relation]]\nlabel = \"references\"\nrole = \"implements\"\ntarget = \"REQ-001\"\n\
             [[relation]]\nlabel = \"references\"\nrole = \"implements\"\ntarget = \"PRD-010\"\n",
        )
        .unwrap();
        let (edges, illegal) = read_block(&SLICE_KIND, &doc);
        assert!(illegal.is_empty(), "all rows are legal for a slice");
        assert_eq!(
            edge_pairs(&edges),
            vec![
                // Canonical RELATION_RULES order — references before supersedes …
                // … with the three references(implements) rows in AUTHORED order.
                (RelationLabel::References, "REQ-002"),
                (RelationLabel::References, "REQ-001"),
                (RelationLabel::References, "PRD-010"),
                (RelationLabel::Supersedes, "SL-000"),
            ],
            "edges land in canonical table order; same-(label,role) rows keep authored order"
        );
    }

    /// An empty / absent `[[relation]]` block parses to no edges and no findings — the
    /// read-tolerant convention (a hand-trimmed file is valid input).
    #[test]
    fn read_block_empty_block_is_no_edges_no_findings() {
        let doc = RelationDoc::parse("id = 1\ntitle = \"x\"\n").unwrap();
        let (edges, illegal) = read_block(&SLICE_KIND, &doc);
        assert!(edges.is_empty());
        assert!(illegal.is_empty());
    }

    // -- PHASE-05: the tier-1 write seam (append_edge / remove_edge) ----------

    /// Append onto a clean file writes a new `[[relation]]` row with both cells, and
    /// the pre-existing keys/comments survive (edit-preserving). The new row parses
    /// back as a legal edge for the source.
    #[test]
    fn append_relation_row_appends_and_preserves() {
        let text = "# a comment\nid = 1\ntitle = \"x\"\n";
        let (next, outcome) =
            append_relation_row(text, RelationLabel::GovernedBy, None, None, "ADR-010").unwrap();
        assert_eq!(outcome, AppendOutcome::Wrote);
        assert!(next.contains("# a comment"), "comment preserved");
        assert!(next.contains("[[relation]]"));
        assert!(next.contains("label = \"governed_by\""));
        assert!(next.contains("target = \"ADR-010\""));
        // A label-only edge serialises with NO `role` key (SL-149 — diff stability).
        assert!(
            !next.contains("role ="),
            "label-only row carries no role key"
        );
        // Round-trips as a legal slice edge.
        let edges = tier1_edges(&SLICE_KIND, &next).unwrap();
        assert_eq!(
            edge_pairs(&edges),
            vec![(RelationLabel::GovernedBy, "ADR-010")]
        );
    }

    /// Appending the SAME `(label, target)` twice is a `Noop` the second time — the
    /// text is byte-unchanged and no duplicate row is written (idempotent, VT-6).
    #[test]
    fn append_relation_row_is_idempotent() {
        let text = "id = 1\n";
        let (once, o1) =
            append_relation_row(text, RelationLabel::GovernedBy, None, None, "ADR-010").unwrap();
        assert_eq!(o1, AppendOutcome::Wrote);
        let (twice, o2) =
            append_relation_row(&once, RelationLabel::GovernedBy, None, None, "ADR-010").unwrap();
        assert_eq!(o2, AppendOutcome::Noop);
        assert_eq!(once, twice, "a no-op append leaves the text byte-identical");
    }

    /// VT-1 (F1 / R2-m1 — the EOF-append defence): a hand-edited file with a typed
    /// `[relationships]` table placed AFTER a `[[relation]]` array is REFUSED rather
    /// than tail-inserting bare keys into the last array element (silent corruption).
    /// The idempotent no-op guard runs first, so the refusal only fires for a genuinely
    /// new edge.
    #[test]
    fn append_relation_row_refuses_trailing_typed_table() {
        // The F1 trap: a [relationships] header AFTER the [[relation]] array.
        let trap = "id = 1\n\
                    [[relation]]\nlabel = \"references\"\nrole = \"implements\"\ntarget = \"PRD-010\"\n\
                    [relationships]\ntags = [\"x\"]\n";
        let err = append_relation_row(trap, RelationLabel::GovernedBy, None, None, "ADR-010")
            .unwrap_err();
        let msg = err.to_string();
        assert!(
            msg.contains("relationships") && msg.contains("AFTER"),
            "refusal must name the offending trailing table: {msg}"
        );
        // But an ALREADY-present edge is a Noop even on the trap layout (guard-first):
        // re-linking the existing references row must not trip the structural refusal.
        let (out, outcome) = append_relation_row(
            trap,
            RelationLabel::References,
            Some(Role::Implements),
            None,
            "PRD-010",
        )
        .unwrap();
        assert_eq!(outcome, AppendOutcome::Noop);
        assert_eq!(out, trap);
    }

    /// `append_relation_row` escapes the target via `toml_edit::value` — a target
    /// carrying a quote cannot break out of the string literal (the migrator never
    /// authors such a target, but the write seam must be splice-safe regardless).
    #[test]
    fn append_relation_row_escapes_target() {
        let text = "id = 1\n";
        let (next, _) =
            append_relation_row(text, RelationLabel::Drift, None, None, "a\"b").unwrap();
        // Parses cleanly (no broken literal) and the target round-trips verbatim.
        let doc = RelationDoc::parse(&next).unwrap();
        let (edges, _illegal) = read_block(&ISSUE_KIND, &doc);
        assert_eq!(edge_pairs(&edges), vec![(RelationLabel::Drift, "a\"b")]);
    }

    /// `remove_relation_row` deletes a matching row (edit-preserving) and is idempotent
    /// — a second remove is `Absent`, the text byte-unchanged (VT-6 double-unlink).
    #[test]
    fn remove_relation_row_round_trips_and_is_idempotent() {
        let (with, _) =
            append_relation_row("id = 1\n", RelationLabel::GovernedBy, None, None, "ADR-010")
                .unwrap();
        let (without, o1) =
            remove_relation_row(&with, RelationLabel::GovernedBy, None, "ADR-010").unwrap();
        assert_eq!(o1, RemoveOutcome::Removed);
        assert!(
            tier1_edges(&SLICE_KIND, &without).unwrap().is_empty(),
            "the edge is gone after remove"
        );
        let (again, o2) =
            remove_relation_row(&without, RelationLabel::GovernedBy, None, "ADR-010").unwrap();
        assert_eq!(o2, RemoveOutcome::Absent);
        assert_eq!(without, again, "a second remove is a byte-identical no-op");
    }

    // -- SL-149 PHASE-03: role storage round-trip + role-class IllegalRow -------

    /// VT-2 (SL-149 storage round-trip): authoring `references(implements)` writes a
    /// `[[relation]] label / role / target` row (role cell present, between label and
    /// target); `read_block` reads it back as a roled edge with identity `(label, role,
    /// target)`; `remove_relation_row` matches the FULL triple (a wrong role misses); and
    /// a label-only edge serialises with NO `role` key.
    #[test]
    fn references_role_round_trips_through_storage() {
        // Author references(implements) SPEC-018 onto a clean slice file.
        let (with, outcome) = append_relation_row(
            "id = 1\n",
            RelationLabel::References,
            Some(Role::Implements),
            None,
            "SPEC-018",
        )
        .unwrap();
        assert_eq!(outcome, AppendOutcome::Wrote);
        // The on-disk shape carries the role cell, ordered label / role / target.
        assert!(with.contains("label = \"references\""));
        assert!(with.contains("role = \"implements\""));
        assert!(with.contains("target = \"SPEC-018\""));
        let label_at = with.find("label =").unwrap();
        let role_at = with.find("role =").unwrap();
        let target_at = with.find("target =").unwrap();
        assert!(
            label_at < role_at && role_at < target_at,
            "the row reads label / role / target on disk: {with}"
        );

        // Reads back as a roled edge (identity = the triple).
        let edges = tier1_edges(&SLICE_KIND, &with).unwrap();
        assert_eq!(edges.len(), 1);
        assert_eq!(edges[0].label, RelationLabel::References);
        assert_eq!(edges[0].role, Some(Role::Implements));
        assert_eq!(edges[0].target, "SPEC-018");

        // remove matches the FULL triple: a wrong role is a no-op; the right one removes.
        let (miss, o_miss) = remove_relation_row(
            &with,
            RelationLabel::References,
            Some(Role::Concerns),
            "SPEC-018",
        )
        .unwrap();
        assert_eq!(o_miss, RemoveOutcome::Absent, "a wrong role does not match");
        assert_eq!(miss, with, "a no-op remove is byte-identical");
        let (without, o_hit) = remove_relation_row(
            &with,
            RelationLabel::References,
            Some(Role::Implements),
            "SPEC-018",
        )
        .unwrap();
        assert_eq!(o_hit, RemoveOutcome::Removed);
        assert!(tier1_edges(&SLICE_KIND, &without).unwrap().is_empty());

        // A label-only edge (`governed_by`) serialises with NO role key.
        let (gb, _) =
            append_relation_row("id = 1\n", RelationLabel::GovernedBy, None, None, "ADR-010")
                .unwrap();
        assert!(
            !gb.contains("role ="),
            "a label-only row carries no role key: {gb}"
        );
        let gb_edges = tier1_edges(&SLICE_KIND, &gb).unwrap();
        assert_eq!(
            gb_edges[0].role, None,
            "a label-only edge reads back role None"
        );
    }

    /// VT-2 (idempotency on the triple): the same `(label, role, target)` re-appends as a
    /// `Noop`, but the SAME `(label, target)` with a DIFFERENT role is a distinct edge —
    /// `references(implements) X` and `references(concerns) X` coexist.
    #[test]
    fn references_role_idempotency_keys_on_the_triple() {
        let (once, o1) = append_relation_row(
            "id = 1\n",
            RelationLabel::References,
            Some(Role::Concerns),
            None,
            "SL-002",
        )
        .unwrap();
        assert_eq!(o1, AppendOutcome::Wrote);
        // Same triple → Noop.
        let (again, o2) = append_relation_row(
            &once,
            RelationLabel::References,
            Some(Role::Concerns),
            None,
            "SL-002",
        )
        .unwrap();
        assert_eq!(o2, AppendOutcome::Noop);
        assert_eq!(once, again, "re-link of the same triple is byte-identical");
        // Different role, same (label, target) → a NEW row (distinct edge).
        let (two, o3) = append_relation_row(
            &once,
            RelationLabel::References,
            Some(Role::Implements),
            None,
            "SL-002",
        )
        .unwrap();
        assert_eq!(
            o3,
            AppendOutcome::Wrote,
            "a different role is a distinct edge"
        );
        let edges = tier1_edges(&SLICE_KIND, &two).unwrap();
        let roles: Vec<Option<Role>> = edges
            .iter()
            .filter(|e| e.label == RelationLabel::References && e.target == "SL-002")
            .map(|e| e.role)
            .collect();
        assert!(roles.contains(&Some(Role::Concerns)));
        assert!(roles.contains(&Some(Role::Implements)));
    }

    /// VT-3 (SL-149): a hand-edited `references` row with a MISSING role, an ILLEGAL role
    /// (illegal for the source), or an UNKNOWN role spelling, OR a label-only row carrying
    /// a STRAY role key, is an `IllegalRow` (role-class); a well-formed roled row and every
    /// label-only row stay legal (no false positive).
    #[test]
    fn read_block_flags_bad_references_role() {
        let bad = |kind: &Kind, toml: &str| -> Vec<IllegalReason> {
            let doc = RelationDoc::parse(toml).unwrap();
            let (_edges, illegal) = read_block(kind, &doc);
            illegal.into_iter().map(|r| r.reason).collect()
        };

        // Missing role on a references row → IllegalRole.
        assert_eq!(
            bad(
                &SLICE_KIND,
                "[[relation]]\nlabel = \"references\"\ntarget = \"SPEC-018\"\n"
            ),
            vec![IllegalReason::IllegalRole],
            "a references row with no role is an IllegalRow"
        );

        // Illegal-for-source role: a backlog item references with `implements` (SL-only).
        assert_eq!(
            bad(
                &ISSUE_KIND,
                "[[relation]]\nlabel = \"references\"\nrole = \"implements\"\ntarget = \"SPEC-018\"\n"
            ),
            vec![IllegalReason::IllegalRole],
            "implements is SL-only — illegal for a backlog source"
        );

        // Unknown role spelling → IllegalRole.
        assert_eq!(
            bad(
                &SLICE_KIND,
                "[[relation]]\nlabel = \"references\"\nrole = \"nonsense\"\ntarget = \"SPEC-018\"\n"
            ),
            vec![IllegalReason::IllegalRole],
            "an unparseable role spelling is an IllegalRow"
        );

        // Stray role on a label-only row → IllegalRole.
        assert_eq!(
            bad(
                &SLICE_KIND,
                "[[relation]]\nlabel = \"governed_by\"\nrole = \"concerns\"\ntarget = \"ADR-010\"\n"
            ),
            vec![IllegalReason::IllegalRole],
            "a role on a label-only row is an IllegalRow"
        );

        // No false positives: a well-formed roled row AND a label-only row are both legal.
        let (edges, illegal) = read_block(
            &SLICE_KIND,
            &RelationDoc::parse(
                "[[relation]]\nlabel = \"references\"\nrole = \"implements\"\ntarget = \"SPEC-018\"\n\
                 [[relation]]\nlabel = \"governed_by\"\ntarget = \"ADR-010\"\n",
            )
            .unwrap(),
        );
        assert!(illegal.is_empty(), "well-formed rows produce no findings");
        assert_eq!(edges.len(), 2);
        assert!(
            edges
                .iter()
                .any(|e| e.label == RelationLabel::References && e.role == Some(Role::Implements))
        );
        assert!(
            edges
                .iter()
                .any(|e| e.label == RelationLabel::GovernedBy && e.role.is_none())
        );
    }

    /// `inbound_name` is the table-driven derived-inbound render text (X5/R2-M3): the
    /// three inverted labels carry their pinned spelling; every other label renders its
    /// own `name()` so shipped inbound goldens are unchanged.
    #[test]
    fn inbound_name_is_table_driven() {
        assert_eq!(inbound_name(RelationLabel::GovernedBy, None), "governs");
        assert_eq!(inbound_name(RelationLabel::Consumes, None), "consumed_by");
        assert_eq!(
            inbound_name(RelationLabel::Supersedes, None),
            "superseded by"
        );
        assert_eq!(
            inbound_name(RelationLabel::OriginatesFrom, None),
            "precursor of"
        );
        // SL-149: references is role-keyed — each role pins its own inbound verb.
        assert_eq!(
            inbound_name(RelationLabel::References, Some(Role::Implements)),
            "implemented by"
        );
        assert_eq!(
            inbound_name(RelationLabel::References, Some(Role::OriginatesFrom)),
            "originated from"
        );
        assert_eq!(
            inbound_name(RelationLabel::References, Some(Role::Concerns)),
            "concerned by"
        );
        // SL-176: fulfils inbound is "fulfilled by".
        assert_eq!(inbound_name(RelationLabel::Fulfils, None), "fulfilled by");
        // Every non-inverted LABEL-ONLY label renders its own name() under role None.
        for label in distinct_labels_in_decl_order() {
            let inverted = matches!(
                label,
                RelationLabel::GovernedBy
                    | RelationLabel::Consumes
                    | RelationLabel::Supersedes
                    | RelationLabel::Contextualizes
                    | RelationLabel::Shapes
                    | RelationLabel::Spawns
                    | RelationLabel::OriginatesFrom
                    // references has no role-None row; it is tested role-keyed above.
                    | RelationLabel::References
                    // SL-159: supports/disputes inbound differs from name().
                    | RelationLabel::Supports
                    | RelationLabel::Disputes
                    // SL-176: fulfils inbound differs from name().
                    | RelationLabel::Fulfils
            );
            if !inverted {
                assert_eq!(
                    inbound_name(label, None),
                    label.name(),
                    "{label:?} inbound render must equal its name()"
                );
            }
        }
    }

    // -- PHASE-05: link validation (validate_link + check_target_kind) --------

    /// `validate_link` accepts a writable `(source, label)` and returns its rule; it
    /// refuses an off-table label (listing the legal ones), an illegal-for-source label,
    /// and a non-`Writable` label (naming the owning verb).
    #[test]
    fn validate_link_gates_source_label_and_policy() {
        // Writable: SL governed_by → ok, returns the GovernedBy rule. (`RelationRule`
        // has no Debug — it holds `&Kind` — so match rather than `.unwrap()`.)
        match validate_link(&SLICE_KIND, "governed_by", None, None) {
            Ok(rule) => assert_eq!(rule.label, RelationLabel::GovernedBy),
            Err(e) => panic!("governed_by should be writable for a slice: {e}"),
        }

        // `RelationRule` has no Debug, so `.unwrap_err()` (which Debug-formats Ok) won't
        // compile — extract the refusal message by hand.
        let refusal = |src: &Kind, label: &str| -> String {
            match validate_link(src, label, None, None) {
                Ok(_) => panic!("expected `{label}` to be refused for {}", src.prefix),
                Err(e) => e.to_string(),
            }
        };

        // Unknown label spelling — refused, message lists legal labels.
        let e = refusal(&SLICE_KIND, "nonsense");
        assert!(e.contains("governed_by"), "lists legal labels: {e}");

        // A slice CAN author `related` (SL-095) — returns the Related rule.
        match validate_link(&SLICE_KIND, "related", None, None) {
            Ok(rule) => assert_eq!(rule.label, RelationLabel::Related),
            Err(e) => panic!("related should be writable for a slice (SL-095): {e}"),
        }

        // SL-145: a backlog item CAN author `governed_by` and `related` (source widened).
        match validate_link(&ISSUE_KIND, "governed_by", None, None) {
            Ok(rule) => assert_eq!(rule.label, RelationLabel::GovernedBy),
            Err(e) => panic!("governed_by should be writable for a backlog item (SL-145): {e}"),
        }
        match validate_link(&ISSUE_KIND, "related", None, None) {
            Ok(rule) => assert_eq!(rule.label, RelationLabel::Related),
            Err(e) => panic!("related should be writable for a backlog item (SL-145): {e}"),
        }

        // Governance `supersedes` is LifecycleOnly — refused, names the supersede verb.
        let e = refusal(&ADR_KIND.kind, "supersedes");
        assert!(e.contains("supersede verb"), "names the owning verb: {e}");

        // A TypedVerbOnly label (spec `members`) — refused, names the typed verb.
        let e = refusal(&PRODUCT_SPEC_KIND, "members");
        assert!(e.contains("typed verb"), "names the typed verb: {e}");
    }

    /// VT-2 (R2-M1): the forward legal-KIND check. `governed_by` (→ ADR·POL·STD) refuses
    /// a slice target even though it would resolve; `SameKind` (gov `related`) refuses a
    /// cross-gov target; the legal kinds pass.
    /// SL-095 widened the `[SL, RFC]` `related` row to make a slice `related`
    /// resolve (SL-145 later added BACKLOG to the same row); verify `AnyNumbered`
    /// accepts any target kind.
    #[test]
    fn check_target_kind_enforces_target_kind() {
        // `RelationRule` has no Debug — unwrap the rule by hand.
        let unwrap_rule = |r: anyhow::Result<&'static RelationRule>| -> &'static RelationRule {
            match r {
                Ok(rule) => rule,
                Err(e) => panic!("expected a writable rule: {e}"),
            }
        };
        let gov_by = unwrap_rule(validate_link(&SLICE_KIND, "governed_by", None, None));
        // SL-003 (a slice) is NOT a legal governed_by target — refused.
        assert!(check_target_kind(gov_by, &SLICE_KIND, "SL").is_err());
        // ADR/POL/STD all pass.
        for p in ["ADR", "POL", "STD"] {
            assert!(check_target_kind(gov_by, &SLICE_KIND, p).is_ok());
        }

        // SameKind: gov `related` from an ADR accepts an ADR target, refuses a POL.
        let related = unwrap_rule(validate_link(&ADR_KIND.kind, "related", None, None));
        assert!(check_target_kind(related, &ADR_KIND.kind, "ADR").is_ok());
        assert!(
            check_target_kind(related, &ADR_KIND.kind, "POL").is_err(),
            "SameKind refuses a cross-gov target"
        );

        // SL-095: slice `related` targets AnyNumbered — any kind accepted.
        let sl_related = unwrap_rule(validate_link(&SLICE_KIND, "related", None, None));
        assert!(check_target_kind(sl_related, &SLICE_KIND, "ADR").is_ok());
        assert!(check_target_kind(sl_related, &SLICE_KIND, "SPEC").is_ok());
        assert!(check_target_kind(sl_related, &SLICE_KIND, "RV").is_ok());

        // SL-145: a backlog source widens `governed_by`/`related` but the TARGET gate is
        // unchanged. `governed_by` still enforces Kinds(GOV) — a slice target refused,
        // ADR/POL/STD pass; `related` stays AnyNumbered — any kind accepted.
        let bk_gov = unwrap_rule(validate_link(&ISSUE_KIND, "governed_by", None, None));
        assert!(
            check_target_kind(bk_gov, &ISSUE_KIND, "SL").is_err(),
            "backlog governed_by still refuses a non-GOV target"
        );
        for p in ["ADR", "POL", "STD"] {
            assert!(check_target_kind(bk_gov, &ISSUE_KIND, p).is_ok());
        }
        let bk_related = unwrap_rule(validate_link(&ISSUE_KIND, "related", None, None));
        assert!(check_target_kind(bk_related, &ISSUE_KIND, "SL").is_ok());
        assert!(check_target_kind(bk_related, &ISSUE_KIND, "ADR").is_ok());
    }

    /// SL-066 VT-2: the `revises` rule. Source REV, targets the six authored-truth
    /// kinds (off-target — e.g. `revises SL` — refused), `TypedVerbOnly` so generic
    /// `link` is refused (naming the typed verb). The rule row exists for target
    /// validation + inbound naming ("revises"), never as a writable Tier-1 edge.
    #[test]
    fn revises_rule_is_typed_verb_only_with_authored_truth_targets() {
        use crate::revision::REV_KIND;
        // The rule resolves for REV and carries the typed-verb policy.
        let rule = lookup(&REV_KIND, RelationLabel::Revises, None).expect("revises rule for REV");
        assert_eq!(rule.link, LinkPolicy::TypedVerbOnly);
        assert_eq!(rule.tier, Tier::Typed);
        assert_eq!(rule.inbound_name, "revises");

        // `doctrine link … revises …` is refused (TypedVerbOnly), naming the typed verb.
        match validate_link(&REV_KIND, "revises", None, None) {
            Ok(_) => panic!("`link … revises …` must be refused (TypedVerbOnly)"),
            Err(e) => assert!(e.to_string().contains("typed verb"), "names the verb: {e}"),
        }

        // Target validation: the six authored-truth kinds pass; off-target refused.
        for p in ["SPEC", "PRD", "REQ", "ADR", "POL", "STD"] {
            assert!(
                check_target_kind(rule, &REV_KIND, p).is_ok(),
                "{p} is a legal revises target"
            );
        }
        for p in ["SL", "ISS", "REC", "REV", "RV"] {
            assert!(
                check_target_kind(rule, &REV_KIND, p).is_err(),
                "{p} is NOT a legal revises target (off-target)"
            );
        }
    }

    /// `lookup` keys on `(source ∈ sources, label)`: an illegal pairing returns
    /// `None` (the X2 legality `read_block` will enforce), a legal one the rule.
    #[test]
    fn lookup_keys_on_source_and_label() {
        // SL-145: a backlog item CAN author `governed_by` (source widened); a slice can
        // author `related`.
        assert!(lookup(&ISSUE_KIND, RelationLabel::GovernedBy, None).is_some());
        let sl_related = lookup(&SLICE_KIND, RelationLabel::Related, None);
        assert!(sl_related.is_some());
        assert!(matches!(
            sl_related.unwrap().target,
            TargetSpec::AnyNumbered
        ));
        // governed_by is legal for SL, PRD, SPEC.
        for k in [&SLICE_KIND, &PRODUCT_SPEC_KIND, &TECH_SPEC_KIND] {
            assert!(lookup(k, RelationLabel::GovernedBy, None).is_some());
        }
        // consumes is legal for PRD only, not the tech spec.
        assert!(lookup(&PRODUCT_SPEC_KIND, RelationLabel::Consumes, None).is_some());
        assert!(lookup(&TECH_SPEC_KIND, RelationLabel::Consumes, None).is_none());
        // supersedes resolves to the SL→SL rule for a slice, the gov rule for ADR.
        let sl_sup = lookup(&SLICE_KIND, RelationLabel::Supersedes, None).unwrap();
        assert_eq!(sl_sup.link, LinkPolicy::Writable);
        let adr_sup = lookup(&ADR_KIND.kind, RelationLabel::Supersedes, None).unwrap();
        assert_eq!(adr_sup.link, LinkPolicy::LifecycleOnly);
        // Touch the remaining kind statics so the imports are all exercised.
        let _ = (
            &REQUIREMENT_KIND,
            &REVIEW_KIND,
            &REC_KIND,
            &STANDARD_KIND,
            &POLICY_KIND,
            &IMPROVEMENT_KIND,
            &CHORE_KIND,
            &RISK_KIND,
            &IDEA_KIND,
        );
        // Shapes is legal for record kinds, illegal for SL.
        assert!(lookup(&ASSUMPTION_KIND, RelationLabel::Shapes, None).is_some());
        assert!(lookup(&SLICE_KIND, RelationLabel::Shapes, None).is_none());
        // Spawns is legal for record kinds, illegal for SL.
        assert!(lookup(&ASSUMPTION_KIND, RelationLabel::Spawns, None).is_some());
        assert!(lookup(&SLICE_KIND, RelationLabel::Spawns, None).is_none());
        let _: &Kind = &SLICE_KIND;
    }

    // -- SL-149 PHASE-02: Role vocabulary + (label, role)-keyed table ----------

    /// `Role` round-trips through `name()`/`from_name()`, and its `Ord` is declaration
    /// order (Implements < OriginatesFrom < Concerns) — the canonical role order.
    #[test]
    fn role_name_round_trips_and_ord_is_declaration_order() {
        for role in [Role::Implements, Role::OriginatesFrom, Role::Concerns] {
            assert_eq!(Role::from_name(role.name()), Some(role));
        }
        assert_eq!(Role::from_name("nonsense"), None);
        let mut roles = [Role::Concerns, Role::Implements, Role::OriginatesFrom];
        roles.sort();
        assert_eq!(
            roles,
            [Role::Implements, Role::OriginatesFrom, Role::Concerns]
        );
    }

    /// VT-1 lockstep (SL-149 PHASE-05): `References` is present in the enum/table while
    /// `Specs` and `Requirements` are GONE (the migration's hard cut). Their retired wire
    /// spellings no longer parse.
    #[test]
    fn references_replaces_specs_requirements() {
        let labels = distinct_labels_in_decl_order();
        assert!(
            labels.contains(&RelationLabel::References),
            "References must be present in the table"
        );
        // The retired spellings parse to nothing (the variants are gone).
        assert!(RelationLabel::from_name("specs").is_none());
        assert!(RelationLabel::from_name("requirements").is_none());
        // References precedes Supersedes in declaration order.
        let pos = |l: RelationLabel| labels.iter().position(|x| *x == l).unwrap();
        assert!(pos(RelationLabel::References) < pos(RelationLabel::Supersedes));
    }

    /// VT-4 invariant: exactly one rule per `(source, label, role)`. No source kind is
    /// admitted by two rows sharing the same `(label, role)` key (an ambiguous lookup).
    #[test]
    fn at_most_one_rule_per_source_label_role() {
        use std::collections::HashSet;
        // Key on the stable `name()` strings — RelationLabel/Role are Ord, not Hash
        // (determinism rides Ord; REQ-077). (label.name(), role.name()) faithfully
        // identifies (label, role).
        let mut seen: HashSet<(&str, &str, Option<&str>)> = HashSet::new();
        for r in RELATION_RULES {
            let role_key = r.role.map(Role::name);
            for src in r.sources {
                assert!(
                    seen.insert((src, r.label.name(), role_key)),
                    "duplicate rule for ({src}, {}, {role_key:?})",
                    r.label.name()
                );
            }
        }
    }

    /// VT-4 invariant: each `(source, label)` is WHOLLY roleful or WHOLLY roleless — no
    /// source authors a label via both a `Some(role)` row and a `None` row. References is
    /// roleful; every other label is roleless. Drives the `MissingRole`/`RoleNotApplicable`
    /// dichotomy.
    #[test]
    fn each_source_label_is_wholly_roleful_or_roleless() {
        use std::collections::HashMap;
        // (src, label.name()) -> (saw_some, saw_none). Keyed on name() — RelationLabel is
        // Ord, not Hash (determinism rides Ord; REQ-077).
        let mut seen: HashMap<(&str, &str), (bool, bool)> = HashMap::new();
        for r in RELATION_RULES {
            for src in r.sources {
                let e = seen.entry((src, r.label.name())).or_insert((false, false));
                if r.role.is_some() {
                    e.0 = true;
                } else {
                    e.1 = true;
                }
            }
        }
        for ((src, label), (some, none)) in seen {
            assert!(
                !(some && none),
                "({src}, {label}) mixes roleful and roleless rows"
            );
        }
        // And references is the roleful one; a label-only label (governed_by) is roleless.
        assert!(
            legal_roles(&SLICE_KIND, RelationLabel::References)
                .next()
                .is_some()
        );
        assert!(
            legal_roles(&SLICE_KIND, RelationLabel::GovernedBy)
                .next()
                .is_none()
        );
    }

    /// `legal_roles` reachability (SL-149 §2.6): the roles authorable for `(source,label)`,
    /// in canonical (declaration) order. SL references → all three; a backlog item →
    /// concerns + originates_from (implements is SL-only); a label-only label → none.
    #[test]
    fn legal_roles_reachability() {
        let sl: Vec<Role> = legal_roles(&SLICE_KIND, RelationLabel::References).collect();
        assert_eq!(
            sl,
            [Role::Implements, Role::OriginatesFrom, Role::Concerns],
            "a slice can author all three references roles, in declaration order"
        );
        let iss: Vec<Role> = legal_roles(&ISSUE_KIND, RelationLabel::References).collect();
        assert_eq!(
            iss,
            [Role::OriginatesFrom, Role::Concerns],
            "a backlog item authors originates_from + concerns (implements is SL-only)"
        );
        // A label-only label yields no roles for any source.
        assert_eq!(
            legal_roles(&SLICE_KIND, RelationLabel::GovernedBy).count(),
            0
        );
    }

    /// `lookup` is role-keyed: a references row is reachable ONLY with the right
    /// `Some(role)`; label-only edges pass `None`; a wrong/absent role misses.
    #[test]
    fn lookup_is_role_keyed() {
        // references(implements) for SL resolves; the same with role None or a wrong
        // role misses.
        let impl_rule = lookup(
            &SLICE_KIND,
            RelationLabel::References,
            Some(Role::Implements),
        )
        .unwrap();
        assert!(matches!(impl_rule.target, TargetSpec::Kinds(_)));
        assert!(lookup(&SLICE_KIND, RelationLabel::References, None).is_none());
        // originates_from/concerns are distinct rows.
        assert!(
            lookup(
                &SLICE_KIND,
                RelationLabel::References,
                Some(Role::OriginatesFrom)
            )
            .is_some()
        );
        assert!(lookup(&SLICE_KIND, RelationLabel::References, Some(Role::Concerns)).is_some());
        // A backlog item can author originates_from + concerns (widened SL-176 §A.2),
        // but NOT implements (SL-only).
        assert!(
            lookup(
                &ISSUE_KIND,
                RelationLabel::References,
                Some(Role::Implements)
            )
            .is_none()
        );
        assert!(
            lookup(
                &ISSUE_KIND,
                RelationLabel::References,
                Some(Role::OriginatesFrom)
            )
            .is_some()
        );
        assert!(lookup(&ISSUE_KIND, RelationLabel::References, Some(Role::Concerns)).is_some());
        // A label-only label refuses a Some(role).
        assert!(lookup(&SLICE_KIND, RelationLabel::GovernedBy, Some(Role::Concerns)).is_none());
        assert!(lookup(&SLICE_KIND, RelationLabel::GovernedBy, None).is_some());
    }

    /// VT-5: `validate_link` role taxonomy — `MissingRole`, `IllegalRole`,
    /// `RoleNotApplicable`, and the role-keyed target gate. `RelationRule` has no Debug,
    /// so refusals are extracted by hand.
    #[test]
    fn validate_link_role_taxonomy() {
        let refusal = |src: &Kind, label: &str, role: Option<Role>| -> String {
            match validate_link(src, label, role, None) {
                Ok(_) => panic!(
                    "expected `{label}` (role {role:?}) refused for {}",
                    src.prefix
                ),
                Err(e) => e.to_string(),
            }
        };

        // MissingRole: references with no role names the legal roles.
        let e = refusal(&SLICE_KIND, "references", None);
        assert!(
            e.contains("requires a role") && e.contains("implements"),
            "MissingRole names the legal roles: {e}"
        );

        // SL-176 §A.2 widening: a backlog item MAY author references(originates_from)
        // (source set widened to {SL + backlog kinds}). The rule now admits it.
        match validate_link(&ISSUE_KIND, "references", Some(Role::OriginatesFrom), None) {
            Ok(rule) => {
                assert_eq!(rule.label, RelationLabel::References);
                assert_eq!(rule.role, Some(Role::OriginatesFrom));
            }
            Err(e) => panic!("backlog item should now author references(originates_from): {e}"),
        }

        // RoleNotApplicable: a role given for a label-only label.
        let e = refusal(&SLICE_KIND, "governed_by", Some(Role::Concerns));
        assert!(e.contains("does not take a role"), "RoleNotApplicable: {e}");

        // A legal references(implements) for a slice validates and returns the rule.
        match validate_link(&SLICE_KIND, "references", Some(Role::Implements), None) {
            Ok(rule) => {
                assert_eq!(rule.label, RelationLabel::References);
                assert_eq!(rule.role, Some(Role::Implements));
            }
            Err(e) => panic!("references(implements) should validate for a slice: {e}"),
        }

        // Role-target mismatch is refused via the role-keyed TargetSpec: the
        // implements rule (→ SPEC·PRD·REQ) refuses a backlog target; concerns accepts it.
        let unwrap_rule = |r: anyhow::Result<&'static RelationRule>| -> &'static RelationRule {
            match r {
                Ok(rule) => rule,
                Err(e) => panic!("expected a writable rule: {e}"),
            }
        };
        let impl_rule = unwrap_rule(validate_link(
            &SLICE_KIND,
            "references",
            Some(Role::Implements),
            None,
        ));
        assert!(check_target_kind(impl_rule, &SLICE_KIND, "IMP").is_err());
        for p in ["SPEC", "PRD", "REQ"] {
            assert!(check_target_kind(impl_rule, &SLICE_KIND, p).is_ok());
        }
        let conc_rule = unwrap_rule(validate_link(
            &SLICE_KIND,
            "references",
            Some(Role::Concerns),
            None,
        ));
        assert!(check_target_kind(conc_rule, &SLICE_KIND, "IMP").is_ok());
        let scoped_rule = unwrap_rule(validate_link(
            &SLICE_KIND,
            "references",
            Some(Role::OriginatesFrom),
            None,
        ));
        assert!(check_target_kind(scoped_rule, &SLICE_KIND, "IMP").is_ok());
        // SL-176 §A.2: target widened to {backlog + SL}. An SL target is now valid;
        // a SPEC target is still refused.
        assert!(
            check_target_kind(scoped_rule, &SLICE_KIND, "SL").is_ok(),
            "originates_from now accepts an SL target (widened)"
        );
        assert!(
            check_target_kind(scoped_rule, &SLICE_KIND, "SPEC").is_err(),
            "originates_from still refuses a SPEC target"
        );
    }

    /// VT-9 (SL-158 D6): a record (ASM/DEC/QUE/CON) may author `references` with
    /// role `concerns` — `lookup` resolves, `read_block` legalizes, `legal_roles`
    /// lists `Concerns`. Target is `AnyNumbered` so any numbered entity is accepted.
    #[test]
    fn record_authors_references_concerns() {
        // lookup resolves for a record source.
        let rule = lookup(
            &ASSUMPTION_KIND,
            RelationLabel::References,
            Some(Role::Concerns),
        )
        .expect("ASM must be able to author references(concerns)");
        assert_eq!(rule.label, RelationLabel::References);
        assert_eq!(rule.role, Some(Role::Concerns));
        assert_eq!(rule.inbound_name, "concerned by");
        assert!(
            matches!(rule.target, TargetSpec::AnyNumbered),
            "concerns target is AnyNumbered"
        );
        assert_eq!(rule.tier, Tier::One);
        assert_eq!(rule.link, LinkPolicy::Writable);

        // legal_roles includes Concerns for a record source.
        let roles: Vec<Role> = legal_roles(&ASSUMPTION_KIND, RelationLabel::References).collect();
        assert!(
            roles.contains(&Role::Concerns),
            "legal_roles for ASM must contain Concerns"
        );

        // read_block legalizes a record's references(concerns) row.
        let doc = RelationDoc::parse(
            "[[relation]]\nlabel = \"references\"\nrole = \"concerns\"\ntarget = \"SL-001\"\n",
        )
        .unwrap();
        let (edges, illegal) = read_block(&ASSUMPTION_KIND, &doc);
        assert_eq!(
            edge_pairs(&edges),
            vec![(RelationLabel::References, "SL-001")],
            "record references(concerns) emits a legal edge"
        );
        assert!(illegal.is_empty(), "no illegal rows expected");

        // concerns is the only references role a record can author (implements/originates_from
        // are SL-only).
        assert!(
            lookup(
                &ASSUMPTION_KIND,
                RelationLabel::References,
                Some(Role::Implements)
            )
            .is_none(),
            "records cannot author implements"
        );
        assert!(
            lookup(
                &ASSUMPTION_KIND,
                RelationLabel::References,
                Some(Role::OriginatesFrom)
            )
            .is_none(),
            "records cannot author originates_from"
        );
    }

    // -- SL-176 PHASE-02: degree storage + DuplicateEdge + no-upsert + DegreeNotApplicable

    /// VT-1 ["degree","partial"]: storage round-trip — a fulfils row with `degree="partial"`
    /// serialises with the degree key, reads back via `read_block` with degree recovered;
    /// a degree-absent edge serialises with NO `degree` key.
    #[test]
    fn degree_storage_round_trip() {
        // Author a fulfils edge with degree=partial.
        let (text, outcome) = append_relation_row(
            "id = 1\n",
            RelationLabel::Fulfils,
            None,
            Some(Degree::Partial),
            "IMP-001",
        )
        .unwrap();
        assert_eq!(outcome, AppendOutcome::Wrote);
        // The on-disk shape carries the degree cell.
        assert!(text.contains("label = \"fulfils\""));
        assert!(text.contains("degree = \"partial\""));
        assert!(text.contains("target = \"IMP-001\""));

        // Reads back with degree recovered.
        let edges = tier1_edges(&SLICE_KIND, &text).unwrap();
        assert_eq!(edges.len(), 1);
        assert_eq!(edges[0].label, RelationLabel::Fulfils);
        assert_eq!(edges[0].degree, Some(Degree::Partial));
        assert_eq!(edges[0].target, "IMP-001");

        // A degree-absent fulfils edge serialises with NO `degree` key (≡ full).
        let (text_full, _) =
            append_relation_row("id = 1\n", RelationLabel::Fulfils, None, None, "IMP-002").unwrap();
        assert!(
            !text_full.contains("degree ="),
            "a degree-absent edge serialises with no degree key: {text_full}"
        );
        let edges_full = tier1_edges(&SLICE_KIND, &text_full).unwrap();
        assert_eq!(edges_full[0].degree, None, "absent degree ≡ None (Full)");

        // A non-fulfils edge with degree is parsed: degree appears on the edge.
        // (governed_by is NOT degree_bearing, but read_block still parses the cell —
        //  validity is checked elsewhere; here we just prove the round-trip.)
        let (text_deg, _) = append_relation_row(
            "id = 1\n",
            RelationLabel::GovernedBy,
            None,
            Some(Degree::Full),
            "ADR-010",
        )
        .unwrap();
        assert!(
            text_deg.contains("degree = \"full\""),
            "a governed_by with explicit degree=full serialises the cell"
        );
    }

    /// VT-2 ["DuplicateEdge","read_block"]: two fulfils rows with the same
    /// `(label, role, target)` but DIFFERENT degree in one entity's toml are flagged
    /// at `read_block` as `DuplicateEdge`, degree-agnostic.
    #[test]
    fn duplicate_edge_flagged_at_read_block() {
        let doc = RelationDoc::parse(
            "[[relation]]\nlabel = \"fulfils\"\ntarget = \"IMP-001\"\n\
             [[relation]]\nlabel = \"fulfils\"\ndegree = \"partial\"\ntarget = \"IMP-001\"\n",
        )
        .unwrap();
        let (edges, illegal) = read_block(&SLICE_KIND, &doc);
        // FIRST occurrence stays as an edge; the second (duplicate) is flagged.
        assert_eq!(edges.len(), 1, "only one edge survives");
        assert_eq!(edges[0].label, RelationLabel::Fulfils);
        assert_eq!(edges[0].target, "IMP-001");
        assert_eq!(illegal.len(), 1, "one duplicate finding");
        assert_eq!(illegal[0].reason, IllegalReason::DuplicateEdge);
        assert_eq!(illegal[0].label, "fulfils");
        assert_eq!(illegal[0].target, "IMP-001");
    }

    /// VT-3 ["AppendOutcome","degree"]: append identical (incl. degree) → Noop;
    /// same triple different degree → hard error; unlink matches ignoring degree.
    #[test]
    fn append_no_upsert_and_unlink_ignores_degree() {
        // Append a fulfils edge with degree=partial.
        let (once, o1) = append_relation_row(
            "id = 1\n",
            RelationLabel::Fulfils,
            None,
            Some(Degree::Partial),
            "IMP-001",
        )
        .unwrap();
        assert_eq!(o1, AppendOutcome::Wrote);

        // Identical (triple + degree) → Noop.
        let (twice, o2) = append_relation_row(
            &once,
            RelationLabel::Fulfils,
            None,
            Some(Degree::Partial),
            "IMP-001",
        )
        .unwrap();
        assert_eq!(o2, AppendOutcome::Noop);
        assert_eq!(once, twice, "identical append is byte-identical");

        // Same triple, DIFFERENT degree → hard error (no upsert).
        let err = append_relation_row(
            &once,
            RelationLabel::Fulfils,
            None,
            None, // full (the row has partial)
            "IMP-001",
        )
        .unwrap_err();
        let msg = err.to_string();
        assert!(
            msg.contains("already") && msg.contains("IMP-001") && msg.contains("partial"),
            "degree conflict error names the existing degree: {msg}"
        );

        // Unlink matches (label, role, target), degree IGNORED — removing the edge
        // does not require naming the degree.
        let (removed, o_rm) =
            remove_relation_row(&once, RelationLabel::Fulfils, None, "IMP-001").unwrap();
        assert_eq!(o_rm, RemoveOutcome::Removed);
        assert!(
            tier1_edges(&SLICE_KIND, &removed).unwrap().is_empty(),
            "the edge is gone after unlink"
        );
    }

    /// VT-4 ["DegreeNotApplicable"]: `validate_link` refuses a degree on a
    /// non-degree_bearing label; widened originates_from target gate goldens pass.
    #[test]
    fn degree_not_applicable_on_non_degree_bearing_label() {
        // fulfils IS degree_bearing — a degree is accepted.
        match validate_link(&SLICE_KIND, "fulfils", None, Some(Degree::Partial)) {
            Ok(rule) => {
                assert!(rule.degree_bearing);
                assert_eq!(rule.label, RelationLabel::Fulfils);
            }
            Err(e) => panic!("fulfils should accept a degree: {e}"),
        }

        // governed_by is NOT degree_bearing — a degree is refused.
        let err = match validate_link(&SLICE_KIND, "governed_by", None, Some(Degree::Partial)) {
            Ok(_) => panic!("governed_by with degree should be refused"),
            Err(e) => e.to_string(),
        };
        assert!(
            err.contains("does not take a degree"),
            "DegreeNotApplicable: {err}"
        );

        // Absent degree (None) is always legal — no MissingDegree error.
        match validate_link(&SLICE_KIND, "fulfils", None, None) {
            Ok(rule) => assert_eq!(rule.label, RelationLabel::Fulfils),
            Err(e) => panic!("fulfils without degree should be legal: {e}"),
        }

        // Widened originates_from target gate: SL target IS now legal (PHASE-01 widened).
        let rule = match validate_link(&SLICE_KIND, "references", Some(Role::OriginatesFrom), None)
        {
            Ok(rule) => rule,
            Err(e) => panic!("originates_from should validate: {e}"),
        };
        assert!(
            check_target_kind(rule, &SLICE_KIND, "SL").is_ok(),
            "originates_from now accepts SL target (widened)"
        );
        assert!(
            check_target_kind(rule, &SLICE_KIND, "ISS").is_ok(),
            "originates_from accepts backlog target"
        );
        assert!(
            check_target_kind(rule, &SLICE_KIND, "SPEC").is_err(),
            "originates_from still refuses SPEC target"
        );
        // A backlog item MAY author originates_from (source widened PHASE-01).
        match validate_link(&ISSUE_KIND, "references", Some(Role::OriginatesFrom), None) {
            Ok(rule) => {
                assert_eq!(rule.label, RelationLabel::References);
                assert_eq!(rule.role, Some(Role::OriginatesFrom));
            }
            Err(e) => panic!("backlog should be able to author originates_from: {e}"),
        }
    }

    /// An unknown degree spelling (e.g. `degree = "half"`) is an `IllegalDegree`
    /// finding, mirroring the role-parse handling.
    #[test]
    fn unknown_degree_is_illegal_degree_finding() {
        let doc = RelationDoc::parse(
            "[[relation]]\nlabel = \"fulfils\"\ndegree = \"half\"\ntarget = \"IMP-001\"\n",
        )
        .unwrap();
        let (_edges, illegal) = read_block(&SLICE_KIND, &doc);
        assert_eq!(illegal.len(), 1, "expected one illegal finding");
        assert_eq!(illegal[0].reason, IllegalReason::IllegalDegree);
    }

    // -- SL-176 PHASE-04 migration faithfulness oracle (VT-1 / VT-2) --------
    //
    // The committed disposition record `.doctrine/slice/176/migration-dispositions.md`
    // is the VH-1 human-approved editorial judgement (which `slices` edges were
    // provenance vs fulfilment). Its machine companion `migration-dispositions.toml`
    // is the oracle input: one row per migrated edge, carrying the pre-cut FROM shape
    // and the applied TO shape. These two tests prove the migration was APPLIED
    // faithfully — codex F6: human review cannot self-certify application. VT-1 checks
    // each TO edge exists in the LIVE corpus at its recorded shape; VT-2 checks each
    // row's class-aware structural transform (the multiset rule), purely over the
    // committed record. Corpus-coupled by mandate: the rows record durable provenance
    // facts (e.g. IMP-019 originated from SL-036), so the oracle is stable in practice.

    /// One `[[edge]]` row of the disposition record. The human `kind` label is an
    /// extra toml key serde ignores — `class` is the structural discriminant.
    #[derive(serde::Deserialize)]
    struct DispositionEdge {
        class: u8,
        from_source: String,
        from_label: String,
        from_target: String,
        from_role: Option<String>,
        to_source: String,
        to_label: String,
        to_target: String,
        to_role: Option<String>,
        degree: Option<String>,
    }

    #[derive(serde::Deserialize)]
    struct DispositionDoc {
        #[serde(rename = "edge")]
        edges: Vec<DispositionEdge>,
    }

    /// Parse the committed disposition record from the live worktree.
    fn load_dispositions() -> Vec<DispositionEdge> {
        let path = crate::test_support::repo_root()
            .join(".doctrine/slice/176/migration-dispositions.toml");
        let text = std::fs::read_to_string(&path)
            .unwrap_or_else(|e| panic!("read {}: {e}", path.display()));
        let doc: DispositionDoc =
            toml::from_str(&text).unwrap_or_else(|e| panic!("parse disposition record: {e}"));
        assert!(!doc.edges.is_empty(), "disposition record is empty");
        doc.edges
    }

    /// Split a canonical entity ref (`IMP-019`) into `(prefix, id)`.
    fn split_ref(r: &str) -> (&str, u32) {
        let (prefix, num) = r
            .rsplit_once('-')
            .unwrap_or_else(|| panic!("`{r}` is not a canonical entity ref"));
        (
            prefix,
            num.parse()
                .unwrap_or_else(|_| panic!("`{r}` has no numeric id")),
        )
    }

    // VT-1 faithfulness: every disposition TO edge whose label is a relation-layer
    // `RelationLabel` exists in the live corpus at exactly its recorded
    // (label, role, degree, target). `full`≡absent degree is normalised
    // (D-degree-default). The single dep-seq label (`needs`/`after`, class 5) lives in
    // a different subsystem (`[relationships]` arrays, not `[[relation]]`); its presence
    // is covered by the corpus `validate` (VT-3) and asserted structurally by VT-2 —
    // here it is an explicit, counted carve-out, never a silent skip.
    #[test]
    fn sl176_migration_dispositions_applied_to_corpus() {
        let root = crate::test_support::repo_root();
        let mut checked = 0usize;
        let mut dep_seq_carved = 0usize;
        for e in load_dispositions() {
            let Some(want_label) = RelationLabel::from_name(&e.to_label) else {
                assert!(
                    matches!(e.to_label.as_str(), "needs" | "after"),
                    "unexpected non-relation-layer to_label `{}` in disposition row",
                    e.to_label
                );
                dep_seq_carved += 1;
                continue;
            };
            let want_role = e.to_role.as_deref().and_then(Role::from_name);
            let want_degree = e.degree.as_deref().and_then(Degree::from_name);
            let (prefix, id) = split_ref(&e.to_source);
            let kind = crate::integrity::kind_by_prefix(prefix)
                .unwrap_or_else(|| panic!("unknown kind prefix `{prefix}`"))
                .kind;
            let edges = crate::catalog::scan::outbound_for(&root, kind, id)
                .unwrap_or_else(|err| panic!("read outbound for {}: {err}", e.to_source));
            let present = edges.iter().any(|x| {
                x.label == want_label
                    && x.role == want_role
                    && x.target == e.to_target
                    && (want_label != RelationLabel::Fulfils
                        || x.degree.unwrap_or(Degree::Full) == want_degree.unwrap_or(Degree::Full))
            });
            assert!(
                present,
                "VT-1 faithfulness: corpus is missing migrated edge {} --{}{}--> {} (degree {:?})",
                e.to_source,
                e.to_label,
                want_role
                    .map(|r| format!("({})", r.name()))
                    .unwrap_or_default(),
                e.to_target,
                want_degree,
            );
            checked += 1;
        }
        assert_eq!(checked, 103, "expected 103 relation-layer migrated edges");
        assert_eq!(
            dep_seq_carved, 1,
            "expected exactly one dep-seq (needs/after) row"
        );
    }

    // VT-2 class-aware multiset: each row obeys its class's structural transform
    // (design §B.1/§B.2). Pure over the committed record — no corpus read, stable
    // regardless of later corpus evolution.
    #[test]
    fn sl176_migration_class_aware_multiset() {
        for e in load_dispositions() {
            match e.class {
                // (source,target) preserved; relabel in place to references(originates_from).
                // Class 1 renames the role (scoped_from→originates_from); class 2 relabels
                // `slices`/`references(concerns)` provenance.
                1 | 2 => {
                    assert_eq!(
                        e.from_source, e.to_source,
                        "class {}: source preserved",
                        e.class
                    );
                    assert_eq!(
                        e.from_target, e.to_target,
                        "class {}: target preserved",
                        e.class
                    );
                    assert_eq!(e.to_label, "references");
                    assert_eq!(e.to_role.as_deref(), Some("originates_from"));
                    if e.class == 1 {
                        assert_eq!(e.from_label, "references", "class 1: in-place wire rename");
                        assert_eq!(e.from_role.as_deref(), Some("scoped_from"));
                    } else {
                        assert!(
                            matches!(e.from_label.as_str(), "slices" | "references"),
                            "class 2: provenance from `slices` or retcon `references`, got `{}`",
                            e.from_label
                        );
                    }
                }
                // Fulfilment flip: source↔target swap; becomes fulfils with a degree.
                3 => {
                    assert_eq!(e.from_source, e.to_target, "class 3: source↔target flipped");
                    assert_eq!(e.from_target, e.to_source, "class 3: source↔target flipped");
                    assert_eq!(e.from_label, "slices");
                    assert_eq!(e.to_label, "fulfils");
                    assert!(e.degree.is_some(), "class 3: fulfils carries a degree");
                }
                // Drift carved out: source preserved, entity carved from free-text target.
                4 => {
                    assert_eq!(e.from_label, "drift");
                    assert_eq!(e.from_source, e.to_source, "class 4: source preserved");
                    assert!(
                        e.from_target.contains(&e.to_target),
                        "class 4: carved target `{}` named in free-text `{}`",
                        e.to_target,
                        e.from_target
                    );
                    assert_eq!(e.to_label, "references");
                    assert_eq!(e.to_role.as_deref(), Some("originates_from"));
                }
                // Drift feeds-into → dep-seq layer: source preserved, entity carved from
                // free-text, label MOVED out of relation space (needs/after).
                5 => {
                    assert_eq!(e.from_label, "drift");
                    assert_eq!(e.from_source, e.to_source, "class 5: source preserved");
                    assert!(
                        e.from_target.contains(&e.to_target),
                        "class 5: carved target `{}` named in free-text `{}`",
                        e.to_target,
                        e.from_target
                    );
                    assert!(
                        matches!(e.to_label.as_str(), "needs" | "after"),
                        "class 5: label moved to dep-seq (needs/after), got `{}`",
                        e.to_label
                    );
                    assert!(
                        RelationLabel::from_name(&e.to_label).is_none(),
                        "class 5: dep-seq label is not a relation-layer RelationLabel"
                    );
                }
                other => panic!("unexpected disposition class {other}"),
            }
        }
    }
}