agentnative 0.5.0

The agent-native CLI linter — audit whether your CLI follows agent-readiness principles
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
pub mod audience;

use std::collections::{BTreeMap, HashMap, HashSet};
use std::fmt::Write as _;

use serde::Serialize;

use crate::audit::Audit;
use crate::principles::registry::{Level, REQUIREMENTS, SPEC_VERSION};
use crate::types::{AuditGroup, AuditLayer, AuditResult, AuditStatus};

/// Current scorecard JSON schema version. Consumers (site rendering,
/// leaderboard pipeline) pin against this to detect shape changes.
///
/// `0.x` is pre-launch — shape may still evolve. Will lock to `1.0` on
/// first public release of `anc`. During `0.x`, additive fields are the
/// norm; consumers feature-detect new keys rather than pinning exact
/// values. History: `0.1` (initial), `0.2` (audience, audit_profile,
/// coverage_summary), `0.3` (spec_version), `0.4` (tool / anc / run /
/// target metadata blocks — self-describing scoring run), `0.5` (`badge`
/// block — eligibility, embed snippet, and badge/scorecard URLs derived
/// from the run, so authors learn about the badge from the CLI itself
/// rather than a round-trip to the site), `0.6` (7-status taxonomy:
/// `opt_out` + `n_a` added to `status`; matching counters in `summary`;
/// `tier` field on each result; one result per requirement-row instead of
/// per-audit_id; antecedent propagation for conditional rows).
pub const SCHEMA_VERSION: &str = "0.7";

/// Eligibility floor for the agent-native badge, expressed as an integer
/// percent. A score that meets or exceeds this floor qualifies a tool to
/// embed the badge.
///
/// Authority is the spec's scoring contract (`agentnative-spec`
/// `principles/scoring.md`): the floor is deliberately low so the badge
/// can spread the standard, with exclusivity carried by the cohort bands
/// the site renders rather than by a high gate. A tool below the floor
/// still gets a rendered scorecard and badge SVG; only the README embed
/// snippet is withheld (the do-not-nag contract).
pub const BADGE_ELIGIBILITY_FLOOR_PCT: u32 = 70;

/// Canonical base URL the badge convention publishes against. Per the
/// site convention, the URL is "always-latest" — `<base>/badge/<tool>.svg`
/// reflects the most recent score against the most recent published spec.
/// The constant is centralized here so the URL pattern is the single
/// source of truth across `text_hint`, JSON emission, and tests.
pub const BADGE_BASE_URL: &str = "https://anc.dev";

/// Pre-launch (`0.x`) scorecard shape emitted by `anc audit --output json`.
///
/// **Scorecard-level enum values are kebab-case.** Both `audience` and
/// `audit_profile` serialize their enum values as kebab-case strings
/// (`agent-optimized` / `mixed` / `human-primary` for `audience`;
/// `human-tui` / `file-traversal` / `posix-utility` / `diagnostic-only`
/// for `audit_profile`). `audit_profile` MUST be kebab-case because it
/// echoes the CLI flag value a caller types (`--audit-profile human-tui`);
/// `audience` uses the same convention so consumers don't have to juggle
/// two casing rules inside one JSON document.
///
/// Per-result enum values in `results[].group` / `layer` / `confidence`
/// stay snake_case via their `#[serde(rename_all = "snake_case")]`
/// derives — they are a different contract (one row per audit) with
/// broader consumer history, and share spelling with the Rust
/// type-system identifiers they come from.
///
/// Consumers key on the exact string; never transform case.
#[derive(Serialize)]
pub struct Scorecard {
    pub schema_version: &'static str,
    pub results: Vec<AuditResultView>,
    pub summary: Summary,
    pub coverage_summary: CoverageSummary,
    /// Derived audience classification (`agent-optimized`, `mixed`,
    /// `human-primary`). Reserved in `anc` v0.1.1 / v0.1.2 (always `null`);
    /// populated in v0.1.3+. Pre-launch additive (schema `0.2`); older
    /// consumers feature-detect.
    pub audience: Option<String>,
    /// When `audience` is `null`, the reason the classifier declined to
    /// label: `suppressed` (signal audit masked by `--audit-profile`) or
    /// `insufficient_signal` (signal audit never produced, e.g. source-only
    /// run). Omitted from JSON when `audience` has a label. Pre-launch
    /// additive (schema `0.2`).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub audience_reason: Option<String>,
    /// Registry-sourced exemption category (human-tui, file-traversal, etc.).
    /// Reserved for `anc` v0.1.3; emitted as `null` in v0.1.1 / v0.1.2.
    /// Pre-launch additive (schema `0.2`).
    pub audit_profile: Option<String>,
    /// agentnative-spec version this CLI was built against. Sourced at build
    /// time from `src/principles/spec/VERSION` by `build.rs`. Reads
    /// `"unknown"` if the vendored VERSION file was missing at build time
    /// (build still succeeds; warning emitted). Pre-launch additive
    /// (schema `0.3`); older consumers feature-detect.
    pub spec_version: &'static str,
    /// Identity of the scored target. Pre-launch additive (schema `0.4`).
    pub tool: ToolInfo,
    /// Identity of the `anc` build that produced this scorecard. Pre-launch
    /// additive (schema `0.4`).
    pub anc: AncInfo,
    /// Run-level facts: invocation, timestamp, duration, platform.
    /// Pre-launch additive (schema `0.4`).
    pub run: RunInfo,
    /// What `anc` was pointed at: project path, binary file, or PATH-resolved
    /// command. Pre-launch additive (schema `0.4`).
    pub target: TargetInfo,
    /// Agent-native badge eligibility + embed snippet for this run. Always
    /// emitted; below-floor runs leave `embed_markdown` `null` per the
    /// "do not nag" rule in the site's badge convention. Pre-launch
    /// additive (schema `0.5`).
    pub badge: BadgeInfo,
}

/// Agent-native badge metadata derived from the current run.
///
/// `score_pct` is the credit-weighted leaderboard score defined in
/// `agentnative-spec` `principles/scoring.md`, computed by [`score_pct`]
/// over behavioral-layer rows only. When the denominator set is empty (no
/// scoring data — e.g., `--principle 99` filters every audit out) the
/// score is reported as `0` and `eligible` is `false`.
///
/// `eligible` is `true` iff `score_pct >= BADGE_ELIGIBILITY_FLOOR_PCT`
/// **and** a tool slug was derivable. Without a slug we cannot construct
/// the embed URL truthfully, and silently emitting a placeholder would
/// mislead authors.
///
/// `embed_markdown` is `Some` only when the tool is eligible — the field
/// drives the gating contract: a consumer that emits `embed_markdown` to
/// a README knows it's safe to show because the floor was verified here.
///
/// `scorecard_url` and `badge_url` are populated whenever a tool slug
/// exists, even below the floor. The site renders the SVG for every
/// scored tool regardless of score so a regression below the floor shows
/// the visual color shift instead of a 404.
#[derive(Serialize)]
pub struct BadgeInfo {
    pub eligible: bool,
    pub score_pct: u32,
    pub embed_markdown: Option<String>,
    pub scorecard_url: Option<String>,
    pub badge_url: Option<String>,
    pub convention_url: &'static str,
}

impl BadgeInfo {
    /// Render the post-summary text hint shown in `--output text` mode
    /// when the tool qualifies for the badge. Returns `None` below the
    /// eligibility floor so callers can append unconditionally without
    /// nagging authors who are not yet eligible.
    pub fn text_hint(&self) -> Option<String> {
        let embed = self.embed_markdown.as_deref()?;
        Some(format!(
            "\n🏆 Score: {}% — your tool qualifies for the agent-native badge.\n\
             \x20  Embed in your README:\n\
             \x20    {embed}\n\
             \x20  Convention: {}/badge\n",
            self.score_pct, BADGE_BASE_URL,
        ))
    }
}

/// Pure derivation of `BadgeInfo` from a result set and a tool slug. Used
/// by both `build_scorecard` (for JSON emission) and the runner's text
/// path (for the post-summary hint), so a single source of truth backs
/// both surfaces.
pub fn compute_badge(results: &[AuditResult], tool_name: &str) -> BadgeInfo {
    let pct = score_pct(results);
    let trimmed = tool_name.trim();
    let has_slug = !trimmed.is_empty();
    let eligible = has_slug && pct >= BADGE_ELIGIBILITY_FLOOR_PCT;

    let scorecard_url = has_slug.then(|| format!("{BADGE_BASE_URL}/score/{trimmed}"));
    let badge_url = has_slug.then(|| format!("{BADGE_BASE_URL}/badge/{trimmed}.svg"));
    let embed_markdown = if eligible {
        Some(format!(
            "[![agent-native]({BADGE_BASE_URL}/badge/{trimmed}.svg)]({BADGE_BASE_URL}/score/{trimmed})"
        ))
    } else {
        None
    };

    BadgeInfo {
        eligible,
        score_pct: pct,
        embed_markdown,
        scorecard_url,
        badge_url,
        convention_url: "https://anc.dev/badge",
    }
}

/// Per-tier weights for the leaderboard formula, published **flat** per
/// `agentnative-spec` `principles/scoring.md` (`w(must) = w(should) =
/// w(may) = 1`): every behavioral audit counts the same regardless of its
/// RFC-2119 tier. The weights are a tunable parameter, not a constant baked
/// into the formula — a future non-flat re-tune (e.g. weighting MUST
/// failures more heavily) changes only these constants while the general
/// `Σ w·credit / Σ w` shape in [`score_pct`] stays put. Held stable for at
/// least six months from publication per the spec's stability commitment.
const W_MUST: f64 = 1.0;
const W_SHOULD: f64 = 1.0;
const W_MAY: f64 = 1.0;

/// Tier weight for a requirement row, keyed by its registry `level`. Rows
/// whose id is absent from the registry fall back to the MUST weight — the
/// most conservative choice under any future non-flat weighting. Under the
/// published flat weights every arm returns `1.0`, so the fallback is inert
/// today.
fn tier_weight(level: Option<Level>) -> f64 {
    match level {
        Some(Level::Should) => W_SHOULD,
        Some(Level::May) => W_MAY,
        Some(Level::Must) | None => W_MUST,
    }
}

/// Execution credit a status contributes to the numerator, or `None` when
/// the status falls outside the denominator set `D`. Per
/// `principles/scoring.md`: `pass` earns full credit, `warn` half, `fail`
/// and `opt_out` zero — both count against, since `opt_out` is deliberate
/// non-adoption and a real signal. `n_a` / `skip` / `error` are excluded
/// from `D` entirely.
fn status_credit(status: &AuditStatus) -> Option<f64> {
    match status {
        AuditStatus::Pass => Some(1.0),
        AuditStatus::Warn(_) => Some(0.5),
        AuditStatus::Fail(_) | AuditStatus::OptOut(_) => Some(0.0),
        AuditStatus::NotApplicable(_) | AuditStatus::Skip(_) | AuditStatus::Error(_) => None,
    }
}

/// Compute the rounded integer leaderboard score defined in `agentnative-spec`
/// `principles/scoring.md`.
///
/// The score reflects **shipped-binary behavior only**: solely
/// behavioral-layer rows enter the formula. Source- and project-layer rows
/// still emit in the scorecard but never move the score — what a tool's
/// source looks like does not change how an agent experiences the installed
/// binary.
///
/// Over the denominator set `D` (rows whose status is in
/// `{pass, warn, fail, opt_out}`):
///
/// ```text
/// score_pct = round(100 × Σ_{i∈D} w(tier_i)·credit(status_i)
///                        / Σ_{i∈D} w(tier_i))
/// ```
///
/// `n_a` / `skip` / `error` are excluded from `D`. Returns `0` when `D` is
/// empty — pairs with `BadgeInfo::eligible == false` so a zero score never
/// qualifies.
fn score_pct(results: &[AuditResult]) -> u32 {
    let mut weighted_credit = 0.0_f64;
    let mut weight_sum = 0.0_f64;
    for r in results {
        if r.layer != AuditLayer::Behavioral {
            continue;
        }
        let Some(credit) = status_credit(&r.status) else {
            continue;
        };
        let weight = tier_weight(crate::principles::registry::find(&r.id).map(|req| req.level));
        weighted_credit += weight * credit;
        weight_sum += weight;
    }
    if weight_sum == 0.0 {
        0
    } else {
        ((weighted_credit / weight_sum) * 100.0).round() as u32
    }
}

/// Identity of the scored target. `version` is best-effort: when the binary
/// self-reports a parseable `--version` / `-V` first line we capture it,
/// otherwise the field is `null`. The site's `registry.yaml` continues to own
/// `version_extract` shell snippets as a fallback. Always-present keys
/// (`null` rather than missing) keep consumer code simple.
#[derive(Serialize)]
pub struct ToolInfo {
    pub name: String,
    /// Binary basename when an executable was located; `null` for
    /// project-mode runs without a built artifact.
    pub binary: Option<String>,
    /// Version string the tool self-reported. `null` when probing failed,
    /// produced no parseable output, or was declined (self-spawn guard).
    pub version: Option<String>,
}

/// Identity of the `anc` build that produced this scorecard. `version` is a
/// build-time constant generated by `build.rs`.
#[derive(Serialize)]
pub struct AncInfo {
    pub version: &'static str,
}

/// Run-level metadata. Captured by the runner immediately around the
/// `Commands::Audit` arm so the scorecard reflects this specific scoring run.
///
/// `invocation` is the user's argv joined with spaces, captured *before*
/// `inject_default_subcommand` rewrites bare paths into `audit <path>`.
/// `started_at` is RFC 3339 / ISO 8601 in UTC. `duration_ms` is wall-clock
/// milliseconds.
#[derive(Serialize)]
pub struct RunInfo {
    pub invocation: String,
    pub started_at: String,
    pub duration_ms: u64,
    pub platform: PlatformInfo,
}

/// `os` / `arch` tuple sourced from `std::env::consts::{OS, ARCH}`.
#[derive(Serialize)]
pub struct PlatformInfo {
    pub os: &'static str,
    pub arch: &'static str,
}

/// What `anc audit` was pointed at. `kind` is one of `"project"`, `"binary"`,
/// or `"command"`. `path` carries the **basename** of the resolved target
/// (directory name in project mode, file name in binary mode) — never the
/// full filesystem path, which would leak operator PII (home-dir username,
/// org/employer dir structure) into committed scorecards, README badge URLs,
/// and any agent-posted artifact. `command` carries the user-supplied name
/// for `--command` mode. Always-present keys (the unused field is `null`,
/// not missing) keep consumer code simple.
#[derive(Serialize)]
pub struct TargetInfo {
    pub kind: String,
    pub path: Option<String>,
    pub command: Option<String>,
}

/// Per-level verification counts: how many requirements at this level had
/// at least one audit in this run that declared `covers()` against them.
/// A requirement is "verified" regardless of pass/fail — the status tells
/// the consumer whether verification succeeded, this counter tells them
/// whether it was attempted at all.
#[derive(Serialize)]
pub struct LevelCounts {
    pub total: usize,
    pub verified: usize,
}

#[derive(Serialize)]
pub struct CoverageSummary {
    pub must: LevelCounts,
    pub should: LevelCounts,
    pub may: LevelCounts,
}

/// Run-level outcome counts. The 7-status taxonomy added `opt_out` and
/// `n_a` in schema 0.6; pre-0.6 consumers tolerate the new keys (additive
/// extension).
#[derive(Serialize, Debug)]
pub struct Summary {
    pub total: usize,
    pub pass: usize,
    pub warn: usize,
    pub fail: usize,
    pub opt_out: usize,
    pub n_a: usize,
    pub skip: usize,
    pub error: usize,
}

/// One row of `results[]` in the scorecard JSON.
///
/// Schema 0.6 changed the unit of emission from "per audit_id" to "per
/// requirement-row". `id` is now the requirement row id (matches
/// `coverage/matrix.json` row IDs). `tier` carries the row's RFC 2119
/// level (`must`/`should`/`may`) so downstream scoring consumers do not
/// need a matrix join. `audit_id` is the probe that produced this row,
/// preserved for provenance and so the site renderer / audience classifier
/// can find the originating probe without a registry walk.
#[derive(Serialize)]
pub struct AuditResultView {
    pub id: String,
    pub label: String,
    pub group: String,
    pub layer: String,
    pub status: String,
    pub evidence: Option<String>,
    /// `high` for direct probes, `medium` for heuristics. Older consumers
    /// feature-detect and tolerate missing keys.
    pub confidence: String,
    /// Requirement tier (`must`/`should`/`may`). Pre-launch additive
    /// (schema `0.6`). `null` only for results whose row id is not in the
    /// registry — an internal inconsistency that should be loud.
    pub tier: Option<String>,
    /// Underlying probe that produced this row (e.g., `p3-version` covers
    /// both `p3-must-version` and `p3-should-version-short` — two rows
    /// share one `audit_id`). Pre-launch additive (schema `0.6`). Falls
    /// back to the row `id` itself when no provenance was threaded in
    /// (legacy test fixtures that hand-build a `AuditResult` without the
    /// fan-out pipeline).
    pub audit_id: String,
}

impl AuditResultView {
    /// Construct from a raw probe result (pre-fan-out callers and test
    /// fixtures). `audit_id` defaults to `r.id` and `tier` is looked up
    /// from the registry (which fails to find anything for arbitrary test
    /// IDs — surfaces as JSON null). Production code uses `from_row`
    /// directly with the threaded probe provenance; this fallback exists
    /// for tests and any future caller that builds a per-audit view
    /// without the fan-out pipeline.
    #[allow(dead_code)]
    pub fn from_result(r: &AuditResult) -> Self {
        Self::from_row(r, &r.id)
    }

    /// Construct from a fanned-out per-row result with explicit probe
    /// provenance. `audit_id` is the probe's `Audit::id()`; `r.id` is the
    /// requirement row id.
    pub fn from_row(r: &AuditResult, audit_id: &str) -> Self {
        let (status, evidence) = match &r.status {
            AuditStatus::Pass => ("pass".to_string(), None),
            AuditStatus::Warn(e) => ("warn".to_string(), Some(e.clone())),
            AuditStatus::Fail(e) => ("fail".to_string(), Some(e.clone())),
            AuditStatus::OptOut(e) => ("opt_out".to_string(), Some(e.clone())),
            AuditStatus::NotApplicable(e) => ("n_a".to_string(), Some(e.clone())),
            AuditStatus::Skip(e) => ("skip".to_string(), Some(e.clone())),
            AuditStatus::Error(e) => ("error".to_string(), Some(e.clone())),
        };
        // Serialize AuditGroup / AuditLayer / Confidence via serde_json so
        // the JSON mirrors the canonical enum spelling (snake_case).
        let group = serde_json::to_value(r.group)
            .ok()
            .and_then(|v| v.as_str().map(|s| s.to_string()))
            .unwrap_or_else(|| format!("{:?}", r.group));
        let layer = serde_json::to_value(r.layer)
            .ok()
            .and_then(|v| v.as_str().map(|s| s.to_string()))
            .unwrap_or_else(|| format!("{:?}", r.layer));
        let confidence = serde_json::to_value(r.confidence)
            .ok()
            .and_then(|v| v.as_str().map(|s| s.to_string()))
            .unwrap_or_else(|| format!("{:?}", r.confidence));
        // Look up tier from the registry. The row ID is the result ID under
        // the per-row emission contract introduced in schema 0.6. Per-audit
        // results fed in by older callers (or test fixtures) won't find a
        // match here — `tier` falls back to None, which surfaces as JSON
        // null and is a visible sign of inconsistency.
        let tier =
            crate::principles::registry::find(&r.id).map(|req| req.level.as_str().to_string());
        AuditResultView {
            id: r.id.clone(),
            label: r.label.clone(),
            group,
            layer,
            status,
            evidence,
            confidence,
            tier,
            audit_id: audit_id.to_string(),
        }
    }
}

fn build_summary(results: &[AuditResult]) -> Summary {
    Summary {
        total: results.len(),
        pass: results
            .iter()
            .filter(|r| matches!(r.status, AuditStatus::Pass))
            .count(),
        warn: results
            .iter()
            .filter(|r| matches!(r.status, AuditStatus::Warn(_)))
            .count(),
        fail: results
            .iter()
            .filter(|r| matches!(r.status, AuditStatus::Fail(_)))
            .count(),
        opt_out: results
            .iter()
            .filter(|r| matches!(r.status, AuditStatus::OptOut(_)))
            .count(),
        n_a: results
            .iter()
            .filter(|r| matches!(r.status, AuditStatus::NotApplicable(_)))
            .count(),
        skip: results
            .iter()
            .filter(|r| matches!(r.status, AuditStatus::Skip(_)))
            .count(),
        error: results
            .iter()
            .filter(|r| matches!(r.status, AuditStatus::Error(_)))
            .count(),
    }
}

fn group_display(group: &AuditGroup) -> &'static str {
    match group {
        AuditGroup::P1 => "P1 — Non-Interactive by Default",
        AuditGroup::P2 => "P2 — Structured Output",
        AuditGroup::P3 => "P3 — Progressive Help",
        AuditGroup::P4 => "P4 — Actionable Errors",
        AuditGroup::P5 => "P5 — Safe Retries",
        AuditGroup::P6 => "P6 — Composable Structure",
        AuditGroup::P7 => "P7 — Bounded Responses",
        AuditGroup::P8 => "P8 — Discoverable Skill Bundles",
        AuditGroup::CodeQuality => "Code Quality",
        AuditGroup::ProjectStructure => "Project Structure",
    }
}

/// Order groups for consistent display.
fn group_order(group: &AuditGroup) -> u8 {
    match group {
        AuditGroup::P1 => 1,
        AuditGroup::P2 => 2,
        AuditGroup::P3 => 3,
        AuditGroup::P4 => 4,
        AuditGroup::P5 => 5,
        AuditGroup::P6 => 6,
        AuditGroup::P7 => 7,
        AuditGroup::P8 => 8,
        AuditGroup::CodeQuality => 9,
        AuditGroup::ProjectStructure => 10,
    }
}

/// Format the scorecard as plain text. Pass `Some(badge)` to append the
/// post-summary embed hint when the tool qualifies for the agent-native
/// badge; below-floor runs see `text_hint()` return `None`, so nothing is
/// appended (the "do not nag" rule from the badge convention).
/// Rendering options for [`format_text`]. Grouped here so future flags
/// (raw mode, color choice, etc.) can be added without churning every
/// call site's argument list.
#[derive(Clone, Copy, Default)]
pub struct TextOptions {
    /// Suppress group headers, PASS/SKIP rows, summary, and badge hint —
    /// emit only `id<TAB>status` per audit. Wired to `--raw`.
    pub raw: bool,
    /// Apply ANSI styling to status prefixes. Computed by the caller from
    /// `--color` plus TTY / `NO_COLOR` introspection so the renderer stays
    /// pure.
    pub color: bool,
}

pub fn format_text(
    results: &[AuditResult],
    quiet: bool,
    badge: Option<&BadgeInfo>,
    opts: TextOptions,
) -> String {
    if opts.raw {
        return format_text_raw(results);
    }
    let mut out = String::new();

    // Group results by AuditGroup
    let mut grouped: BTreeMap<u8, (AuditGroup, Vec<&AuditResult>)> = BTreeMap::new();
    for r in results {
        let order = group_order(&r.group);
        grouped
            .entry(order)
            .or_insert_with(|| (r.group, Vec::new()))
            .1
            .push(r);
    }

    for (group, audits) in grouped.values() {
        if !quiet {
            let _ = writeln!(out, "\n{}", group_display(group));
        }
        for r in audits {
            let prefix = match &r.status {
                AuditStatus::Pass => {
                    if quiet {
                        continue;
                    }
                    "PASS"
                }
                AuditStatus::Warn(_) => "WARN",
                AuditStatus::Fail(_) => "FAIL",
                AuditStatus::OptOut(_) => {
                    if quiet {
                        continue;
                    }
                    "OPT "
                }
                AuditStatus::NotApplicable(_) => {
                    if quiet {
                        continue;
                    }
                    "N/A "
                }
                AuditStatus::Skip(_) => {
                    if quiet {
                        continue;
                    }
                    "SKIP"
                }
                AuditStatus::Error(_) => "ERR ",
            };
            let painted =
                crate::color::paint(crate::color::status_style(prefix, opts.color), prefix);
            // Tier comes from the requirement registry keyed on the row id.
            // Unregistered ids (legacy per-audit rows, test fixtures) yield
            // no suffix rather than panicking — the same tolerance
            // `AuditResultView::from_row` applies for the JSON `tier` field.
            let tier_suffix = crate::principles::registry::find(&r.id)
                .map(|req| format!(" ({})", req.level.as_str()))
                .unwrap_or_default();
            let _ = writeln!(out, "  [{painted}] {} ({}){tier_suffix}", r.label, r.id);
            match &r.status {
                AuditStatus::Warn(e) | AuditStatus::Fail(e) | AuditStatus::Error(e) => {
                    for line in e.lines() {
                        let _ = writeln!(out, "         {line}");
                    }
                }
                AuditStatus::Skip(reason)
                | AuditStatus::OptOut(reason)
                | AuditStatus::NotApplicable(reason)
                    if !quiet =>
                {
                    let _ = writeln!(out, "         {reason}");
                }
                _ => {}
            }
        }
    }

    // Summary line
    let s = build_summary(results);
    let _ = writeln!(
        out,
        "\n{} audits: {} pass, {} warn, {} fail, {} opt_out, {} n_a, {} skip, {} error",
        s.total, s.pass, s.warn, s.fail, s.opt_out, s.n_a, s.skip, s.error
    );

    // Badge embed hint — appended only when eligible. Below the floor the
    // `text_hint()` returns None and nothing is added (the convention's
    // "do not nag" rule).
    if let Some(hint) = badge.and_then(BadgeInfo::text_hint) {
        out.push_str(&hint);
    }

    out
}

/// `--raw` rendering: one `id<TAB>status` line per result, nothing else.
/// Status maps to one of the seven tokens (`PASS`, `WARN`, `FAIL`,
/// `OPT_OUT`, `N_A`, `SKIP`, `ERR`) so downstream pipelines see the same
/// vocabulary as the JSON `status` field (uppercased).
fn format_text_raw(results: &[AuditResult]) -> String {
    let mut out = String::with_capacity(results.len() * 32);
    for r in results {
        let token = match &r.status {
            AuditStatus::Pass => "PASS",
            AuditStatus::Warn(_) => "WARN",
            AuditStatus::Fail(_) => "FAIL",
            AuditStatus::OptOut(_) => "OPT_OUT",
            AuditStatus::NotApplicable(_) => "N_A",
            AuditStatus::Skip(_) => "SKIP",
            AuditStatus::Error(_) => "ERR",
        };
        let _ = writeln!(out, "{}\t{token}", r.id);
    }
    out
}

/// Fan one probe-level result out into one entry per requirement-row in
/// the audit's `Audit::covers()` slice. The probe's status, label, group,
/// layer, and confidence propagate to every row; the `id` field is
/// replaced with the row id. Returns a pair `(row_result, audit_id)` per
/// emitted row so downstream consumers (AuditResultView, propagation) know
/// the originating probe without a registry walk.
///
/// Audits that declare no `covers()` rows produce a single passthrough
/// entry keyed by their own id — preserves the legacy per-audit_id shape
/// for audits not yet wired into the requirement registry.
pub fn fan_out_per_row(
    raw: &[AuditResult],
    catalog: &[Box<dyn Audit>],
) -> Vec<(AuditResult, String)> {
    let covers_by_id: HashMap<&str, &'static [&'static str]> =
        catalog.iter().map(|c| (c.id(), c.covers())).collect();
    let mut out: Vec<(AuditResult, String)> = Vec::with_capacity(raw.len());
    for r in raw {
        let covers = covers_by_id.get(r.id.as_str()).copied().unwrap_or(&[]);
        if covers.is_empty() {
            out.push((r.clone(), r.id.clone()));
            continue;
        }
        for row_id in covers {
            let mut row = r.clone();
            row.id = (*row_id).to_string();
            out.push((row, r.id.clone()));
        }
    }
    out
}

/// Apply the antecedent-status propagation table from plan Decision 2a.
///
/// For each row whose registry entry has a conditional applicability with
/// an `antecedent.audit_id`, look up the antecedent probe's raw status and
/// rewrite the row's status accordingly:
///
/// | Antecedent status | Consequent row becomes              |
/// | ----------------- | ----------------------------------- |
/// | `pass` / `warn` / `fail` | unchanged (evaluated normally) |
/// | `opt_out` / `n_a` | `n_a` (prerequisite absent)         |
/// | `skip`            | `skip` (inherited indeterminacy)    |
/// | `error`           | `error` (inherited indeterminacy)   |
///
/// Rows with no registry entry (legacy / unknown ids) are left untouched.
/// Rows whose antecedent did not produce a raw result (the antecedent
/// probe didn't run this invocation, e.g., source-only mode) are left
/// untouched — propagation needs an antecedent status to act on.
pub fn propagate_antecedents(rows: &mut [(AuditResult, String)], raw: &[AuditResult]) {
    use crate::principles::registry::{Applicability, find};
    let raw_by_id: HashMap<&str, &AuditStatus> =
        raw.iter().map(|r| (r.id.as_str(), &r.status)).collect();
    for (row, _audit_id) in rows.iter_mut() {
        let Some(req) = find(&row.id) else { continue };
        let Applicability::Conditional { antecedent, .. } = req.applicability else {
            continue;
        };
        let Some(ante) = antecedent else { continue };
        let Some(ante_status) = raw_by_id.get(ante.audit_id) else {
            continue;
        };
        let new_status = match ante_status {
            AuditStatus::Pass | AuditStatus::Warn(_) | AuditStatus::Fail(_) => continue,
            AuditStatus::OptOut(reason) | AuditStatus::NotApplicable(reason) => {
                AuditStatus::NotApplicable(format!(
                    "antecedent `{}` is {}: {reason}",
                    ante.audit_id,
                    short_status_name(ante_status),
                ))
            }
            AuditStatus::Skip(reason) => AuditStatus::Skip(format!(
                "antecedent `{}` could not be measured: {reason}",
                ante.audit_id,
            )),
            AuditStatus::Error(reason) => {
                AuditStatus::Error(format!("antecedent `{}` errored: {reason}", ante.audit_id,))
            }
        };
        row.status = new_status;
    }
}

fn short_status_name(s: &AuditStatus) -> &'static str {
    match s {
        AuditStatus::Pass => "pass",
        AuditStatus::Warn(_) => "warn",
        AuditStatus::Fail(_) => "fail",
        AuditStatus::OptOut(_) => "opt_out",
        AuditStatus::NotApplicable(_) => "n_a",
        AuditStatus::Skip(_) => "skip",
        AuditStatus::Error(_) => "error",
    }
}

/// Fan raw probe results out to per-requirement rows and apply antecedent
/// propagation. The shared derivation every output surface routes through —
/// the JSON scorecard, the text renderer, the badge, and the process exit
/// code all build their per-row set with this one function, so they cannot
/// disagree on the row set, counts, score, or status of any requirement.
///
/// Each pair carries the row plus its originating probe `Audit::id()` for
/// provenance; callers that only need the rows project the `String` away.
pub fn build_row_results(
    raw: &[AuditResult],
    catalog: &[Box<dyn Audit>],
) -> Vec<(AuditResult, String)> {
    let mut rows = fan_out_per_row(raw, catalog);
    propagate_antecedents(&mut rows, raw);
    rows
}

/// Bundle of run-level metadata captured by the runner around `Commands::Audit`
/// and threaded into the scorecard. Grouped to keep `build_scorecard`'s
/// signature manageable as schema `0.x` continues to add fields. The runner
/// owns capture; this module owns serialization shape.
pub struct RunMetadata {
    pub tool: ToolInfo,
    pub anc: AncInfo,
    pub run: RunInfo,
    pub target: TargetInfo,
}

/// Build the scorecard. The `ran_audits` slice is the catalog of audits
/// that produced `raw_results`.
///
/// Pipeline (schema 0.6):
///   raw probe results → fan out per requirement-row → antecedent
///   propagation → JSON view. Audience and coverage_summary still consume
///   raw probe results (signal classification keys on audit_ids; coverage
///   counts requirements covered by the underlying probes).
pub fn build_scorecard(
    raw_results: &[AuditResult],
    ran_audits: &[Box<dyn Audit>],
    audience: Option<String>,
    audit_profile: Option<String>,
    metadata: RunMetadata,
) -> Scorecard {
    let row_results = build_row_results(raw_results, ran_audits);

    // `audience_reason` is derived from `raw_results` rather than threaded
    // through as a caller parameter — the reason is a property of the
    // probe-level result set, not a caller decision, and deriving it here
    // keeps the label and its explanation in lock-step. When audience has
    // a label the field is omitted from JSON.
    let audience_reason = if audience.is_some() {
        None
    } else {
        audience::classify_reason(raw_results).map(|s| s.to_string())
    };
    let RunMetadata {
        tool,
        anc,
        run,
        target,
    } = metadata;

    // Per-row results drive `summary` and `score_pct`. The badge uses the
    // same per-row vector so the embed URL the JSON emits agrees with the
    // post-summary text hint.
    let per_row_only: Vec<AuditResult> = row_results.iter().map(|(r, _)| r.clone()).collect();
    let badge = compute_badge(&per_row_only, &tool.name);

    Scorecard {
        schema_version: SCHEMA_VERSION,
        results: row_results
            .iter()
            .map(|(r, audit_id)| AuditResultView::from_row(r, audit_id))
            .collect(),
        summary: build_summary(&per_row_only),
        coverage_summary: build_coverage_summary(raw_results, ran_audits),
        audience,
        audience_reason,
        audit_profile,
        spec_version: SPEC_VERSION,
        tool,
        anc,
        run,
        target,
        badge,
    }
}

pub fn format_json(
    raw_results: &[AuditResult],
    ran_audits: &[Box<dyn Audit>],
    audience: Option<String>,
    audit_profile: Option<String>,
    metadata: RunMetadata,
) -> String {
    let scorecard = build_scorecard(raw_results, ran_audits, audience, audit_profile, metadata);
    serde_json::to_string_pretty(&scorecard).unwrap_or_else(|e| format!("{{\"error\": \"{e}\"}}"))
}

fn build_coverage_summary(
    results: &[AuditResult],
    ran_audits: &[Box<dyn Audit>],
) -> CoverageSummary {
    // Map each ran audit to its covers() so we can turn the set of ran
    // audit IDs into a set of covered requirement IDs.
    let covers_by_id: HashMap<&str, &'static [&'static str]> =
        ran_audits.iter().map(|c| (c.id(), c.covers())).collect();

    // Verified = requirements covered by an audit that actually executed.
    // An audit suppressed by --audit-profile did NOT verify its
    // requirement — it emitted Skip with the `SUPPRESSION_EVIDENCE_PREFIX`
    // sentinel. Counting it toward `verified` would overstate coverage on
    // any --audit-profile run (a misleading public metric for the site
    // leaderboard). Filter those out here and mirror the exclusion in the
    // regression test below.
    let mut verified: HashSet<&'static str> = HashSet::new();
    for r in results {
        if audience::is_audit_profile_suppression(&r.status) {
            continue;
        }
        if let Some(ids) = covers_by_id.get(r.id.as_str()) {
            verified.extend(ids.iter().copied());
        }
    }

    let mut must = LevelCounts {
        total: 0,
        verified: 0,
    };
    let mut should = LevelCounts {
        total: 0,
        verified: 0,
    };
    let mut may = LevelCounts {
        total: 0,
        verified: 0,
    };

    for req in REQUIREMENTS {
        let bucket = match req.level {
            Level::Must => &mut must,
            Level::Should => &mut should,
            Level::May => &mut may,
        };
        bucket.total += 1;
        if verified.contains(req.id) {
            bucket.verified += 1;
        }
    }

    CoverageSummary { must, should, may }
}

/// Derive the process exit code from the full result set.
///
/// - `0` — every audit Pass or Skip.
/// - `1` — at least one Warn.
/// - `2` — at least one Fail or Error.
///
/// **`--audit-profile` affects the exit code by masking Fails to Skips.**
/// An audit that would otherwise Fail but is suppressed by the applied
/// profile contributes nothing to `has_fail_or_error` and cannot lift the
/// code above `0`/`1`. This is intentional per plan R4: the caller is
/// declaring "this category of audit doesn't apply to this tool", so
/// scoring against that requirement would produce a misleading non-zero
/// exit. The tradeoff is that callers passing the wrong profile can
/// silently bless a broken tool — guarding against that lives upstream
/// (site's regen script, CI policy), not here.
pub fn exit_code(results: &[AuditResult]) -> i32 {
    let has_fail_or_error = results
        .iter()
        .any(|r| matches!(r.status, AuditStatus::Fail(_) | AuditStatus::Error(_)));
    let has_warn = results
        .iter()
        .any(|r| matches!(r.status, AuditStatus::Warn(_)));

    if has_fail_or_error {
        2
    } else if has_warn {
        1
    } else {
        0
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::types::{AuditGroup, AuditLayer, AuditResult, AuditStatus, Confidence};

    fn make_result(id: &str, status: AuditStatus, group: AuditGroup) -> AuditResult {
        AuditResult {
            id: id.to_string(),
            label: format!("Test {id}"),
            group,
            layer: AuditLayer::Behavioral,
            status,
            confidence: Confidence::High,
        }
    }

    /// Synthesize the metadata bundle existing tests need but don't care
    /// about. Tests that exercise metadata behavior build their own.
    fn fixture_metadata() -> RunMetadata {
        RunMetadata {
            tool: ToolInfo {
                name: "fixture-tool".into(),
                binary: None,
                version: None,
            },
            anc: AncInfo {
                version: "0.0.0-test",
            },
            run: RunInfo {
                invocation: "anc audit .".into(),
                started_at: "1970-01-01T00:00:00Z".into(),
                duration_ms: 0,
                platform: PlatformInfo {
                    os: "test-os",
                    arch: "test-arch",
                },
            },
            target: TargetInfo {
                kind: "project".into(),
                path: Some(".".into()),
                command: None,
            },
        }
    }

    #[test]
    fn test_format_json_valid() {
        let results = vec![
            make_result("c1", AuditStatus::Pass, AuditGroup::P1),
            make_result("c2", AuditStatus::Fail("bad".into()), AuditGroup::P2),
        ];
        let json = format_json(&results, &[], None, None, fixture_metadata());
        let parsed: serde_json::Value = serde_json::from_str(&json).expect("valid JSON");
        assert_eq!(parsed["schema_version"], "0.7");
        assert_eq!(parsed["summary"]["total"], 2);
        assert_eq!(parsed["summary"]["pass"], 1);
        assert_eq!(parsed["summary"]["fail"], 1);
        assert_eq!(parsed["results"][0]["status"], "pass");
        assert!(parsed["results"][0]["evidence"].is_null());
        assert_eq!(parsed["results"][0]["confidence"], "high");
        assert_eq!(parsed["results"][1]["status"], "fail");
        assert_eq!(parsed["results"][1]["evidence"], "bad");
        assert_eq!(parsed["results"][1]["confidence"], "high");
        // 0.2 additions: coverage_summary present with three levels, audience + audit_profile null.
        assert!(parsed["coverage_summary"]["must"]["total"].is_number());
        assert!(parsed["coverage_summary"]["should"]["total"].is_number());
        assert!(parsed["coverage_summary"]["may"]["total"].is_number());
        assert!(parsed["audience"].is_null());
        assert!(parsed["audit_profile"].is_null());
        // 0.3 addition: spec_version is always present and non-empty.
        let spec = parsed["spec_version"]
            .as_str()
            .expect("spec_version is a string");
        assert!(!spec.is_empty(), "spec_version must not be empty");
    }

    #[test]
    fn medium_confidence_serializes_as_medium() {
        let mut r = make_result("c3", AuditStatus::Warn("soft".into()), AuditGroup::P6);
        r.confidence = Confidence::Medium;
        let view = AuditResultView::from_result(&r);
        assert_eq!(view.confidence, "medium");
    }

    #[test]
    fn coverage_summary_counts_verified_requirements() {
        use crate::audit::Audit;
        use crate::project::Project;
        use crate::types::AuditLayer;

        struct FakeAudit {
            id: &'static str,
            covers: &'static [&'static str],
        }

        impl Audit for FakeAudit {
            fn id(&self) -> &str {
                self.id
            }
            fn label(&self) -> &'static str {
                "fake"
            }
            fn group(&self) -> AuditGroup {
                AuditGroup::P1
            }
            fn layer(&self) -> AuditLayer {
                AuditLayer::Behavioral
            }
            fn applicable(&self, _p: &Project) -> bool {
                true
            }
            fn run(&self, _p: &Project) -> anyhow::Result<AuditResult> {
                unreachable!()
            }
            fn covers(&self) -> &'static [&'static str] {
                self.covers
            }
        }

        let results = vec![make_result("verifier-a", AuditStatus::Pass, AuditGroup::P1)];
        let audits: Vec<Box<dyn Audit>> = vec![Box::new(FakeAudit {
            id: "verifier-a",
            covers: &["p1-must-no-interactive"],
        })];

        let summary = build_coverage_summary(&results, &audits);
        assert_eq!(summary.must.verified, 1);
        assert_eq!(summary.should.verified, 0);
        assert_eq!(summary.may.verified, 0);
        // Totals match the registry snapshot baked into registry.rs tests.
        assert!(summary.must.total >= 1);
    }

    #[test]
    fn coverage_summary_excludes_audit_profile_suppressed_audits() {
        use crate::audit::Audit;
        use crate::principles::registry::SUPPRESSION_EVIDENCE_PREFIX;
        use crate::project::Project;
        use crate::types::AuditLayer;

        struct FakeAudit {
            id: &'static str,
            covers: &'static [&'static str],
        }

        impl Audit for FakeAudit {
            fn id(&self) -> &str {
                self.id
            }
            fn label(&self) -> &'static str {
                "fake"
            }
            fn group(&self) -> AuditGroup {
                AuditGroup::P1
            }
            fn layer(&self) -> AuditLayer {
                AuditLayer::Behavioral
            }
            fn applicable(&self, _p: &Project) -> bool {
                true
            }
            fn run(&self, _p: &Project) -> anyhow::Result<AuditResult> {
                unreachable!()
            }
            fn covers(&self) -> &'static [&'static str] {
                self.covers
            }
        }

        // Two audits: one ran (Pass → counts as verified), one was
        // suppressed by --audit-profile (Skip with the sentinel prefix →
        // MUST NOT count as verified).
        let results = vec![
            make_result("verifier-ran", AuditStatus::Pass, AuditGroup::P1),
            make_result(
                "verifier-suppressed",
                AuditStatus::Skip(format!("{SUPPRESSION_EVIDENCE_PREFIX}human-tui")),
                AuditGroup::P1,
            ),
        ];
        let audits: Vec<Box<dyn Audit>> = vec![
            Box::new(FakeAudit {
                id: "verifier-ran",
                covers: &["p1-must-no-interactive"],
            }),
            Box::new(FakeAudit {
                id: "verifier-suppressed",
                covers: &["p1-should-tty-detection"],
            }),
        ];

        let summary = build_coverage_summary(&results, &audits);
        assert_eq!(
            summary.must.verified, 1,
            "only the non-suppressed verifier's requirement should count; \
             suppressed Skips MUST NOT inflate coverage_summary.verified",
        );
        assert_eq!(summary.should.verified, 0);
    }

    #[test]
    fn test_exit_code_all_pass() {
        let results = vec![
            make_result("c1", AuditStatus::Pass, AuditGroup::P1),
            make_result("c2", AuditStatus::Skip("n/a".into()), AuditGroup::P2),
        ];
        assert_eq!(exit_code(&results), 0);
    }

    #[test]
    fn test_exit_code_warn() {
        let results = vec![
            make_result("c1", AuditStatus::Pass, AuditGroup::P1),
            make_result("c2", AuditStatus::Warn("meh".into()), AuditGroup::P2),
        ];
        assert_eq!(exit_code(&results), 1);
    }

    #[test]
    fn test_exit_code_fail() {
        let results = vec![
            make_result("c1", AuditStatus::Fail("bad".into()), AuditGroup::P1),
            make_result("c2", AuditStatus::Warn("meh".into()), AuditGroup::P2),
        ];
        assert_eq!(exit_code(&results), 2);
    }

    #[test]
    fn test_exit_code_error() {
        let results = vec![make_result(
            "c1",
            AuditStatus::Error("boom".into()),
            AuditGroup::P1,
        )];
        assert_eq!(exit_code(&results), 2);
    }

    #[test]
    fn test_audit_result_view_conversion() {
        let r = make_result(
            "test-id",
            AuditStatus::Warn("warning msg".into()),
            AuditGroup::P3,
        );
        let view = AuditResultView::from_result(&r);
        assert_eq!(view.id, "test-id");
        assert_eq!(view.status, "warn");
        assert_eq!(view.evidence.as_deref(), Some("warning msg"));
        assert_eq!(view.layer, "behavioral");
    }

    #[test]
    fn test_audit_result_view_pass_has_no_evidence() {
        let r = make_result("pass-id", AuditStatus::Pass, AuditGroup::P1);
        let view = AuditResultView::from_result(&r);
        assert_eq!(view.status, "pass");
        assert!(view.evidence.is_none());
    }

    #[test]
    fn format_json_emits_audience_when_all_signals_present() {
        use crate::scorecard::audience::{SIGNAL_AUDIT_IDS, classify};

        let results: Vec<AuditResult> = SIGNAL_AUDIT_IDS
            .iter()
            .map(|id| make_result(id, AuditStatus::Pass, AuditGroup::P1))
            .collect();
        let audience = classify(&results);
        let json = format_json(&results, &[], audience, None, fixture_metadata());
        let parsed: serde_json::Value = serde_json::from_str(&json).expect("valid JSON");
        assert_eq!(parsed["audience"], "agent-optimized");
        assert!(parsed["audit_profile"].is_null());
        assert_eq!(parsed["schema_version"], "0.7");
    }

    #[test]
    fn format_json_emits_human_primary_when_signals_warn() {
        use crate::scorecard::audience::{SIGNAL_AUDIT_IDS, classify};

        let results: Vec<AuditResult> = SIGNAL_AUDIT_IDS
            .iter()
            .enumerate()
            .map(|(i, id)| {
                let status = if i < 3 {
                    AuditStatus::Warn(format!("missing {id}"))
                } else {
                    AuditStatus::Pass
                };
                make_result(id, status, AuditGroup::P1)
            })
            .collect();
        let audience = classify(&results);
        let json = format_json(&results, &[], audience, None, fixture_metadata());
        let parsed: serde_json::Value = serde_json::from_str(&json).expect("valid JSON");
        assert_eq!(parsed["audience"], "human-primary");
    }

    #[test]
    fn format_json_audience_null_when_signals_missing() {
        use crate::scorecard::audience::classify;

        // Source-only-style run: no behavioral audits, so no signal IDs.
        let results = vec![make_result(
            "p1-env-flags-source",
            AuditStatus::Pass,
            AuditGroup::P1,
        )];
        let audience = classify(&results);
        let json = format_json(&results, &[], audience, None, fixture_metadata());
        let parsed: serde_json::Value = serde_json::from_str(&json).expect("valid JSON");
        assert!(parsed["audience"].is_null());
    }

    #[test]
    fn format_json_echoes_audit_profile() {
        let results = vec![make_result("c1", AuditStatus::Pass, AuditGroup::P1)];
        let json = format_json(
            &results,
            &[],
            None,
            Some("human-tui".into()),
            fixture_metadata(),
        );
        let parsed: serde_json::Value = serde_json::from_str(&json).expect("valid JSON");
        assert_eq!(parsed["audit_profile"], "human-tui");
    }

    #[test]
    fn format_json_audience_reason_insufficient_signal() {
        // Source-only-style run: no signal audits → audience null and
        // audience_reason must explain why.
        let results = vec![make_result(
            "p1-env-flags-source",
            AuditStatus::Pass,
            AuditGroup::P1,
        )];
        let json = format_json(&results, &[], None, None, fixture_metadata());
        let parsed: serde_json::Value = serde_json::from_str(&json).expect("valid JSON");
        assert!(parsed["audience"].is_null());
        assert_eq!(parsed["audience_reason"], "insufficient_signal");
    }

    #[test]
    fn format_json_audience_reason_omitted_when_audience_labeled() {
        use crate::scorecard::audience::{SIGNAL_AUDIT_IDS, classify};

        let results: Vec<AuditResult> = SIGNAL_AUDIT_IDS
            .iter()
            .map(|id| make_result(id, AuditStatus::Pass, AuditGroup::P1))
            .collect();
        let audience = classify(&results);
        let json = format_json(&results, &[], audience, None, fixture_metadata());
        let parsed: serde_json::Value = serde_json::from_str(&json).expect("valid JSON");
        // audience has a label, so audience_reason must be omitted — not
        // merely null. `#[serde(skip_serializing_if = "Option::is_none")]`
        // on the field makes this verifiable by key presence.
        assert_eq!(parsed["audience"], "agent-optimized");
        assert!(
            parsed.get("audience_reason").is_none(),
            "audience_reason key should be absent when audience is labeled, got {}",
            parsed["audience_reason"],
        );
    }

    #[test]
    fn format_json_audience_reason_suppressed() {
        use crate::principles::registry::SUPPRESSION_EVIDENCE_PREFIX;
        use crate::scorecard::audience::{SIGNAL_AUDIT_IDS, classify};

        // One signal suppressed → audience null and reason "suppressed".
        let results: Vec<AuditResult> = SIGNAL_AUDIT_IDS
            .iter()
            .enumerate()
            .map(|(i, id)| {
                let status = if i == 0 {
                    AuditStatus::Skip(format!("{SUPPRESSION_EVIDENCE_PREFIX}human-tui"))
                } else {
                    AuditStatus::Pass
                };
                make_result(id, status, AuditGroup::P1)
            })
            .collect();
        let audience = classify(&results);
        let json = format_json(
            &results,
            &[],
            audience,
            Some("human-tui".into()),
            fixture_metadata(),
        );
        let parsed: serde_json::Value = serde_json::from_str(&json).expect("valid JSON");
        assert!(parsed["audience"].is_null());
        assert_eq!(parsed["audience_reason"], "suppressed");
    }

    #[test]
    fn exit_code_drops_when_audit_profile_suppresses_a_would_have_failed_audit() {
        // Intentional behavior per plan R4: when --audit-profile suppresses
        // an audit that would otherwise Fail, the audit emits Skip with the
        // suppression prefix and the overall exit code reflects the
        // masked state. This is a trust-boundary choice — the caller
        // declared the requirement doesn't apply, so failing on it would
        // be misleading.
        //
        // This test pins the behavior against a future well-meaning
        // change that tries to "refuse to exit 0 if any audit was
        // suppressed." Such a change must update this test deliberately
        // and resolve the conflict with plan R4, not sneak through.
        use crate::principles::registry::SUPPRESSION_EVIDENCE_PREFIX;

        let baseline = vec![
            make_result("c-pass", AuditStatus::Pass, AuditGroup::P1),
            make_result(
                "c-would-fail",
                AuditStatus::Fail("violates MUST".into()),
                AuditGroup::P1,
            ),
        ];
        assert_eq!(exit_code(&baseline), 2, "baseline: a Fail → exit 2");

        let suppressed = vec![
            make_result("c-pass", AuditStatus::Pass, AuditGroup::P1),
            make_result(
                "c-would-fail",
                AuditStatus::Skip(format!("{SUPPRESSION_EVIDENCE_PREFIX}human-tui")),
                AuditGroup::P1,
            ),
        ];
        assert_eq!(
            exit_code(&suppressed),
            0,
            "suppression by audit_profile must lower the exit code — \
             Fail → Skip is intentional masking per plan R4",
        );
    }

    #[test]
    fn scorecard_level_enum_values_are_kebab_case() {
        // Both `audience` and `audit_profile` enum values MUST serialize
        // as kebab-case inside the scorecard JSON. `audit_profile`
        // echoes the CLI flag value (`--audit-profile human-tui`) and
        // cannot change casing; `audience` adopts the same convention so
        // consumers don't juggle two rules inside one document.
        //
        // A future serde `rename_all` edit, field reorder, or enum
        // migration that silently flips either convention must fail here
        // loudly. The snake_case negative assertions below guard against
        // the most likely regression direction (adopting the per-result
        // enum convention from `AuditGroup` / `AuditLayer` / `Confidence`).
        use crate::scorecard::audience::{SIGNAL_AUDIT_IDS, classify};

        let results: Vec<AuditResult> = SIGNAL_AUDIT_IDS
            .iter()
            .map(|id| make_result(id, AuditStatus::Pass, AuditGroup::P1))
            .collect();
        let audience = classify(&results);
        let json = format_json(
            &results,
            &[],
            audience,
            Some("human-tui".into()),
            fixture_metadata(),
        );

        // audience: kebab-case.
        assert!(
            json.contains("\"audience\": \"agent-optimized\""),
            "audience must serialize as kebab-case 'agent-optimized', got:\n{json}",
        );
        assert!(
            !json.contains("\"agent_optimized\""),
            "audience must NOT render as snake_case 'agent_optimized' — \
             kebab-case unified with audit_profile in v0.1.3",
        );
        assert!(
            !json.contains("\"human_primary\""),
            "audience must NOT render as snake_case 'human_primary'",
        );

        // audit_profile: kebab-case (echo of the CLI flag value).
        assert!(
            json.contains("\"audit_profile\": \"human-tui\""),
            "audit_profile must serialize as kebab-case 'human-tui', got:\n{json}",
        );
        assert!(
            !json.contains("\"human_tui\""),
            "audit_profile must NOT render as snake_case 'human_tui' — \
             would desync from the --audit-profile flag value shape",
        );
    }

    #[test]
    fn schema_v05_emits_every_documented_key() {
        // Drift guard for schema 0.5. Builds a synthetic Scorecard, parses
        // the JSON, and asserts every documented key path resolves —
        // including keys that hold `null` values (those are part of the
        // contract: consumer code should treat null and missing differently
        // only for `audience_reason`, which uses `skip_serializing_if`).
        //
        // A field rename, deletion, or accidental top-level relocation is
        // caught here loudly with a named-field assertion. New fields land
        // alongside this test, not at the expense of it.
        let results = vec![make_result("c1", AuditStatus::Pass, AuditGroup::P1)];
        let metadata = RunMetadata {
            tool: ToolInfo {
                name: "demo".into(),
                binary: None,
                version: None,
            },
            anc: AncInfo {
                version: "0.0.1-test",
            },
            run: RunInfo {
                invocation: "anc audit .".into(),
                started_at: "2026-04-29T16:00:00Z".into(),
                duration_ms: 42,
                platform: PlatformInfo {
                    os: "linux",
                    arch: "x86_64",
                },
            },
            target: TargetInfo {
                kind: "project".into(),
                path: Some("/tmp/x".into()),
                command: None,
            },
        };
        let json = format_json(&results, &[], None, None, metadata);
        let parsed: serde_json::Value = serde_json::from_str(&json).expect("valid JSON");

        // 0.1 / 0.2 / 0.3 keys remain — defends against accidental removal
        // during schema work.
        for path in [
            "schema_version",
            "results",
            "summary",
            "coverage_summary",
            "audience",
            "audit_profile",
            "spec_version",
        ] {
            assert!(
                parsed.get(path).is_some(),
                "0.1-0.3 key `{path}` must remain present in 0.5",
            );
        }

        // 0.4 + 0.5 additions — every documented sub-key resolves.
        assert_eq!(parsed["schema_version"], "0.7");
        for path in [
            // 0.4
            "tool.name",
            "tool.binary",
            "tool.version",
            "anc.version",
            "run.invocation",
            "run.started_at",
            "run.duration_ms",
            "run.platform.os",
            "run.platform.arch",
            "target.kind",
            "target.path",
            "target.command",
            // 0.5 — badge block
            "badge.eligible",
            "badge.score_pct",
            "badge.embed_markdown",
            "badge.scorecard_url",
            "badge.badge_url",
            "badge.convention_url",
        ] {
            let mut node = &parsed;
            for segment in path.split('.') {
                node = node
                    .get(segment)
                    .unwrap_or_else(|| panic!("0.5 key `{path}` missing — segment `{segment}`"));
            }
        }

        // Emitted values match the synthetic input.
        assert_eq!(parsed["tool"]["name"], "demo");
        assert_eq!(parsed["anc"]["version"], "0.0.1-test");
        assert_eq!(parsed["run"]["invocation"], "anc audit .");
        assert_eq!(parsed["run"]["duration_ms"], 42);
        assert_eq!(parsed["run"]["platform"]["os"], "linux");
        assert_eq!(parsed["target"]["kind"], "project");
        assert_eq!(parsed["target"]["path"], "/tmp/x");

        // Always-present-null contract: `tool.version`, `target.command`
        // serialize as JSON null, not as missing keys. Consumer code should
        // be able to access these paths unconditionally.
        assert!(parsed["tool"]["version"].is_null());
        assert!(parsed["tool"]["binary"].is_null());
        assert!(parsed["target"]["command"].is_null());
    }

    #[test]
    fn compute_badge_eligible_when_all_pass_and_slug_present() {
        // Three Pass and zero failures → 100% → above the 70% floor.
        let results = vec![
            make_result("c1", AuditStatus::Pass, AuditGroup::P1),
            make_result("c2", AuditStatus::Pass, AuditGroup::P2),
            make_result("c3", AuditStatus::Pass, AuditGroup::P3),
        ];
        let badge = compute_badge(&results, "navi");
        assert!(badge.eligible);
        assert_eq!(badge.score_pct, 100);
        assert_eq!(
            badge.embed_markdown.as_deref(),
            Some("[![agent-native](https://anc.dev/badge/navi.svg)](https://anc.dev/score/navi)"),
        );
        assert_eq!(
            badge.scorecard_url.as_deref(),
            Some("https://anc.dev/score/navi"),
        );
        assert_eq!(
            badge.badge_url.as_deref(),
            Some("https://anc.dev/badge/navi.svg"),
        );
        assert_eq!(badge.convention_url, "https://anc.dev/badge");
    }

    #[test]
    fn compute_badge_below_floor_emits_urls_but_no_embed() {
        // 4 of 5 fail → 1 pass / 5 denom = 20% → below floor.
        let results = vec![
            make_result("c1", AuditStatus::Pass, AuditGroup::P1),
            make_result("c2", AuditStatus::Fail("a".into()), AuditGroup::P2),
            make_result("c3", AuditStatus::Fail("b".into()), AuditGroup::P3),
            make_result("c4", AuditStatus::Fail("c".into()), AuditGroup::P4),
            make_result("c5", AuditStatus::Fail("d".into()), AuditGroup::P5),
        ];
        let badge = compute_badge(&results, "needs-work");
        assert!(!badge.eligible);
        assert_eq!(badge.score_pct, 20);
        assert!(
            badge.embed_markdown.is_none(),
            "below the floor: embed_markdown must be None per the do-not-nag rule",
        );
        // The site renders an SVG for every scored tool regardless of
        // score, so the URL is still useful below the floor.
        assert!(badge.scorecard_url.is_some());
        assert!(badge.badge_url.is_some());
    }

    #[test]
    fn compute_badge_at_floor_is_eligible() {
        // 7 pass / 10 denom = 70% — exactly at the floor must qualify.
        let results = vec![
            make_result("c1", AuditStatus::Pass, AuditGroup::P1),
            make_result("c2", AuditStatus::Pass, AuditGroup::P2),
            make_result("c3", AuditStatus::Pass, AuditGroup::P3),
            make_result("c4", AuditStatus::Pass, AuditGroup::P4),
            make_result("c5", AuditStatus::Pass, AuditGroup::P5),
            make_result("c6", AuditStatus::Pass, AuditGroup::P6),
            make_result("c7", AuditStatus::Pass, AuditGroup::P7),
            make_result("c8", AuditStatus::Fail("one".into()), AuditGroup::P8),
            make_result("c9", AuditStatus::Fail("two".into()), AuditGroup::P8),
            make_result("c10", AuditStatus::Fail("three".into()), AuditGroup::P8),
        ];
        let badge = compute_badge(&results, "edge-case");
        assert!(badge.eligible, "score == floor must qualify");
        assert_eq!(badge.score_pct, 70);
        assert!(badge.embed_markdown.is_some());
    }

    #[test]
    fn compute_badge_skips_excluded_from_denominator() {
        // 1 Pass + 1 Skip + 1 Error → denom is 1 (only Pass), score 100%.
        // Skips and Errors must not pull the score down — they're not
        // verdicts, so the leaderboard formula excludes them.
        let results = vec![
            make_result("c1", AuditStatus::Pass, AuditGroup::P1),
            make_result(
                "c2",
                AuditStatus::Skip("not applicable".into()),
                AuditGroup::P2,
            ),
            make_result("c3", AuditStatus::Error("boom".into()), AuditGroup::P3),
        ];
        let badge = compute_badge(&results, "skipper");
        assert_eq!(badge.score_pct, 100);
        assert!(badge.eligible);
    }

    #[test]
    fn compute_badge_no_scoring_data_is_ineligible() {
        // Every result is a Skip → denominator is zero. Score 0% and not
        // eligible — guard against division-by-zero turning into NaN or a
        // misleading 100%.
        let results = vec![
            make_result("c1", AuditStatus::Skip("filtered".into()), AuditGroup::P1),
            make_result("c2", AuditStatus::Skip("filtered".into()), AuditGroup::P2),
        ];
        let badge = compute_badge(&results, "ghost");
        assert_eq!(badge.score_pct, 0);
        assert!(!badge.eligible);
        assert!(badge.embed_markdown.is_none());
    }

    #[test]
    fn compute_badge_empty_slug_is_ineligible_even_at_perfect_score() {
        // Without a tool slug the embed URL would be malformed
        // (`/badge/.svg`); ineligible is the safe default — better to omit
        // the hint than to emit a broken URL.
        let results = vec![make_result("c1", AuditStatus::Pass, AuditGroup::P1)];
        let badge = compute_badge(&results, "");
        assert_eq!(badge.score_pct, 100);
        assert!(!badge.eligible);
        assert!(badge.embed_markdown.is_none());
        assert!(badge.scorecard_url.is_none());
        assert!(badge.badge_url.is_none());
        // Convention URL is always emitted — it's the same for every tool.
        assert_eq!(badge.convention_url, "https://anc.dev/badge");
    }

    #[test]
    fn badge_text_hint_present_when_eligible() {
        let badge = compute_badge(
            &[make_result("c1", AuditStatus::Pass, AuditGroup::P1)],
            "demo",
        );
        let hint = badge.text_hint().expect("eligible run must produce hint");
        assert!(
            hint.contains("Score: 100%"),
            "hint should announce the score, got: {hint}",
        );
        assert!(
            hint.contains("https://anc.dev/badge/demo.svg"),
            "hint should embed the canonical badge URL, got: {hint}",
        );
        assert!(
            hint.contains("https://anc.dev/score/demo"),
            "hint should link to the per-tool scorecard page, got: {hint}",
        );
        assert!(
            hint.contains("https://anc.dev/badge"),
            "hint should reference the convention page, got: {hint}",
        );
    }

    #[test]
    fn badge_text_hint_absent_when_below_floor() {
        // The "do not nag" rule from the badge convention: below the floor
        // we print nothing badge-related.
        let badge = compute_badge(
            &[
                make_result("c1", AuditStatus::Fail("a".into()), AuditGroup::P1),
                make_result("c2", AuditStatus::Fail("b".into()), AuditGroup::P2),
            ],
            "needs-work",
        );
        assert!(badge.text_hint().is_none());
    }

    #[test]
    fn format_text_appends_hint_when_badge_eligible() {
        let results = vec![make_result("c1", AuditStatus::Pass, AuditGroup::P1)];
        let badge = compute_badge(&results, "demo");
        let text = format_text(&results, false, Some(&badge), TextOptions::default());
        assert!(
            text.contains("qualifies for the agent-native badge"),
            "format_text must append the badge hint when eligible:\n{text}",
        );
        assert!(
            text.contains("https://anc.dev/badge/demo.svg"),
            "embedded URL must use the tool slug:\n{text}",
        );
    }

    #[test]
    fn format_text_omits_hint_when_below_floor() {
        let results = vec![
            make_result("c1", AuditStatus::Fail("a".into()), AuditGroup::P1),
            make_result("c2", AuditStatus::Fail("b".into()), AuditGroup::P2),
        ];
        let badge = compute_badge(&results, "needs-work");
        let text = format_text(&results, false, Some(&badge), TextOptions::default());
        assert!(
            !text.contains("agent-native badge"),
            "below-floor runs must not nag:\n{text}",
        );
    }

    #[test]
    fn format_text_without_badge_arg_is_unchanged() {
        // Callers that pass `None` (e.g., legacy plumbing or tests
        // exercising the formatter alone) get the historical output with
        // no badge tail.
        let results = vec![make_result("c1", AuditStatus::Pass, AuditGroup::P1)];
        let text = format_text(&results, false, None, TextOptions::default());
        assert!(!text.contains("agent-native badge"));
    }

    #[test]
    fn format_text_raw_emits_id_tab_status_per_line() {
        let results = vec![
            make_result("c1", AuditStatus::Pass, AuditGroup::P1),
            make_result("c2", AuditStatus::Warn("watch this".into()), AuditGroup::P2),
            make_result("c3", AuditStatus::Fail("broken".into()), AuditGroup::P3),
            make_result("c4", AuditStatus::Skip("n/a".into()), AuditGroup::P4),
        ];
        let opts = TextOptions {
            raw: true,
            color: false,
        };
        let text = format_text(&results, false, None, opts);
        let lines: Vec<&str> = text.lines().collect();
        assert_eq!(lines, vec!["c1\tPASS", "c2\tWARN", "c3\tFAIL", "c4\tSKIP"]);
    }

    #[test]
    fn format_text_color_wraps_status_prefix() {
        let results = vec![make_result("c1", AuditStatus::Pass, AuditGroup::P1)];
        let opts = TextOptions {
            raw: false,
            color: true,
        };
        let text = format_text(&results, false, None, opts);
        // Color enabled means the PASS prefix carries ANSI escapes.
        assert!(
            text.contains('\u{1b}'),
            "color=true should embed ANSI escapes around the PASS prefix:\n{text}",
        );
    }

    #[test]
    fn scorecard_emits_badge_block() {
        // End-to-end: a synthetic perfect run produces a JSON scorecard
        // whose `badge` block reflects eligibility and the slug echoed in
        // `tool.name`. Pins the contract that JSON consumers (notably the
        // site's `/score/<tool>` renderer) can rely on without re-running
        // `compute_badge` themselves.
        let results = vec![make_result("c1", AuditStatus::Pass, AuditGroup::P1)];
        let metadata = RunMetadata {
            tool: ToolInfo {
                name: "navi".into(),
                binary: Some("navi".into()),
                version: Some("0.1.0".into()),
            },
            anc: AncInfo {
                version: "0.0.0-test",
            },
            run: RunInfo {
                invocation: "anc audit .".into(),
                started_at: "1970-01-01T00:00:00Z".into(),
                duration_ms: 0,
                platform: PlatformInfo {
                    os: "test-os",
                    arch: "test-arch",
                },
            },
            target: TargetInfo {
                kind: "project".into(),
                path: Some(".".into()),
                command: None,
            },
        };
        let json = format_json(&results, &[], None, None, metadata);
        let parsed: serde_json::Value = serde_json::from_str(&json).expect("valid JSON");
        assert_eq!(parsed["badge"]["eligible"], true);
        assert_eq!(parsed["badge"]["score_pct"], 100);
        assert_eq!(
            parsed["badge"]["embed_markdown"],
            "[![agent-native](https://anc.dev/badge/navi.svg)](https://anc.dev/score/navi)"
        );
        assert_eq!(
            parsed["badge"]["scorecard_url"],
            "https://anc.dev/score/navi"
        );
        assert_eq!(
            parsed["badge"]["badge_url"],
            "https://anc.dev/badge/navi.svg"
        );
        assert_eq!(parsed["badge"]["convention_url"], "https://anc.dev/badge");
    }

    // ──────────────────────────────────────────────────────────────────
    // U2 (schema 0.6): per-row emission, tier, 7-status taxonomy,
    // antecedent propagation. Plan reference:
    // docs/plans/2026-05-21-001-feat-scorecard-fairness-taxonomy-plan.md
    // in agentnative-site.
    // ──────────────────────────────────────────────────────────────────

    fn make_raw(id: &str, status: AuditStatus) -> AuditResult {
        make_result(id, status, AuditGroup::P2)
    }

    /// A raw result on a chosen layer, for tests that exercise the
    /// behavioral-only scope of `score_pct`.
    fn make_raw_on(id: &str, status: AuditStatus, layer: AuditLayer) -> AuditResult {
        AuditResult {
            layer,
            ..make_raw(id, status)
        }
    }

    /// Minimal `Audit` impl that lets per-row fan-out tests express a
    /// `covers()` slice without spinning up a real probe.
    struct FakeAudit {
        id: &'static str,
        covers: &'static [&'static str],
    }

    impl crate::audit::Audit for FakeAudit {
        fn id(&self) -> &str {
            self.id
        }
        fn label(&self) -> &'static str {
            "fake"
        }
        fn group(&self) -> AuditGroup {
            AuditGroup::P2
        }
        fn layer(&self) -> AuditLayer {
            AuditLayer::Behavioral
        }
        fn applicable(&self, _p: &crate::project::Project) -> bool {
            true
        }
        fn run(&self, _p: &crate::project::Project) -> anyhow::Result<AuditResult> {
            unreachable!()
        }
        fn covers(&self) -> &'static [&'static str] {
            self.covers
        }
    }

    #[test]
    fn fan_out_emits_one_row_per_covered_requirement() {
        // Single probe (`p3-version`) covers two requirement rows. Fan-out
        // produces two entries with id = row_id and audit_id = probe id.
        let raw = vec![make_raw(
            "p3-version",
            AuditStatus::Warn("short alias missing".into()),
        )];
        let catalog: Vec<Box<dyn crate::audit::Audit>> = vec![Box::new(FakeAudit {
            id: "p3-version",
            covers: &["p3-must-version", "p3-should-version-short"],
        })];
        let rows = fan_out_per_row(&raw, &catalog);
        assert_eq!(rows.len(), 2);
        let ids: Vec<&str> = rows.iter().map(|(r, _)| r.id.as_str()).collect();
        assert!(ids.contains(&"p3-must-version"));
        assert!(ids.contains(&"p3-should-version-short"));
        for (r, audit_id) in &rows {
            assert_eq!(
                audit_id, "p3-version",
                "audit_id provenance lost on row {}",
                r.id
            );
            assert!(
                matches!(r.status, AuditStatus::Warn(_)),
                "probe status must propagate to every covered row pre-propagation",
            );
        }
    }

    #[test]
    fn fan_out_emits_passthrough_for_audits_without_covers() {
        // Audits that don't declare any covers() pass through as a single
        // row keyed by audit.id() — preserves the legacy shape for any
        // future audit not yet wired into the registry.
        let raw = vec![make_raw("orphan-audit", AuditStatus::Pass)];
        let catalog: Vec<Box<dyn crate::audit::Audit>> = vec![Box::new(FakeAudit {
            id: "orphan-audit",
            covers: &[],
        })];
        let rows = fan_out_per_row(&raw, &catalog);
        assert_eq!(rows.len(), 1);
        assert_eq!(rows[0].0.id, "orphan-audit");
        assert_eq!(rows[0].1, "orphan-audit");
    }

    #[test]
    fn propagation_passes_through_when_antecedent_is_pass_warn_fail() {
        // Antecedent statuses that mean "feature present" (pass / warn /
        // fail) leave the consequent row untouched.
        let raw = vec![
            make_raw("p2-json-output", AuditStatus::Pass),
            make_raw("p2-schema-print", AuditStatus::Fail("missing".into())),
        ];
        let mut rows = vec![(
            make_raw("p2-must-schema-print", AuditStatus::Fail("missing".into())),
            "p2-schema-print".to_string(),
        )];
        propagate_antecedents(&mut rows, &raw);
        assert!(matches!(rows[0].0.status, AuditStatus::Fail(_)));
    }

    #[test]
    fn propagation_collapses_consequent_when_antecedent_is_opt_out() {
        // Antecedent OptOut → consequent becomes NotApplicable, regardless
        // of what the consequent's own probe emitted.
        let raw = vec![
            make_raw(
                "p2-json-output",
                AuditStatus::OptOut("no --output flag".into()),
            ),
            make_raw("p2-schema-print", AuditStatus::Pass),
        ];
        let mut rows = vec![(
            make_raw("p2-must-schema-print", AuditStatus::Pass),
            "p2-schema-print".to_string(),
        )];
        propagate_antecedents(&mut rows, &raw);
        match &rows[0].0.status {
            AuditStatus::NotApplicable(reason) => {
                assert!(
                    reason.contains("p2-json-output") && reason.contains("opt_out"),
                    "evidence should cite the antecedent + its status, got: {reason}",
                );
            }
            other => panic!("expected NotApplicable, got {other:?}"),
        }
    }

    #[test]
    fn propagation_collapses_consequent_when_antecedent_is_n_a() {
        // n_a antecedent (e.g., a chained conditional) propagates the same
        // way as opt_out.
        let raw = vec![
            make_raw(
                "p2-json-output",
                AuditStatus::NotApplicable("upstream n/a".into()),
            ),
            make_raw("p2-schema-print", AuditStatus::Pass),
        ];
        let mut rows = vec![(
            make_raw("p2-must-schema-print", AuditStatus::Pass),
            "p2-schema-print".to_string(),
        )];
        propagate_antecedents(&mut rows, &raw);
        assert!(matches!(rows[0].0.status, AuditStatus::NotApplicable(_)));
    }

    #[test]
    fn propagation_inherits_skip_from_antecedent() {
        // Skip antecedent → consequent inherits Skip (couldn't measure
        // upstream means can't meaningfully evaluate downstream).
        let raw = vec![
            make_raw("p2-json-output", AuditStatus::Skip("probe limit".into())),
            make_raw("p2-schema-print", AuditStatus::Pass),
        ];
        let mut rows = vec![(
            make_raw("p2-must-schema-print", AuditStatus::Pass),
            "p2-schema-print".to_string(),
        )];
        propagate_antecedents(&mut rows, &raw);
        assert!(matches!(rows[0].0.status, AuditStatus::Skip(_)));
    }

    #[test]
    fn propagation_inherits_error_from_antecedent() {
        let raw = vec![
            make_raw("p2-json-output", AuditStatus::Error("probe crashed".into())),
            make_raw("p2-schema-print", AuditStatus::Pass),
        ];
        let mut rows = vec![(
            make_raw("p2-must-schema-print", AuditStatus::Pass),
            "p2-schema-print".to_string(),
        )];
        propagate_antecedents(&mut rows, &raw);
        assert!(matches!(rows[0].0.status, AuditStatus::Error(_)));
    }

    #[test]
    fn propagation_leaves_universal_rows_untouched() {
        // A row with applicability: universal must not be touched by
        // propagation even if an audit with the same id exists in `raw`.
        let raw = vec![make_raw("p1-non-interactive", AuditStatus::Pass)];
        let mut rows = vec![(
            make_raw("p1-must-no-interactive", AuditStatus::Pass),
            "p1-non-interactive".to_string(),
        )];
        propagate_antecedents(&mut rows, &raw);
        assert!(matches!(rows[0].0.status, AuditStatus::Pass));
    }

    #[test]
    fn build_row_results_fans_out_then_propagates() {
        // End-to-end through the shared entry point both output surfaces
        // use: fan-out keys rows to requirement ids, then propagation
        // collapses the conditional consequent because its antecedent
        // opted out. A refactor that drops either step is caught here.
        let raw = vec![
            make_raw(
                "p2-json-output",
                AuditStatus::OptOut("no --output flag".into()),
            ),
            make_raw("p2-schema-print", AuditStatus::Pass),
        ];
        let catalog: Vec<Box<dyn crate::audit::Audit>> = vec![
            Box::new(FakeAudit {
                id: "p2-json-output",
                covers: &["p2-must-output-flag"],
            }),
            Box::new(FakeAudit {
                id: "p2-schema-print",
                covers: &["p2-must-schema-print"],
            }),
        ];
        let rows = build_row_results(&raw, &catalog);
        let schema_row = rows
            .iter()
            .find(|(r, _)| r.id == "p2-must-schema-print")
            .expect("schema-print requirement row present");
        match &schema_row.0.status {
            AuditStatus::NotApplicable(reason) => assert!(
                reason.contains("p2-json-output") && reason.contains("opt_out"),
                "consequent must collapse to n_a citing the antecedent, got: {reason}",
            ),
            other => panic!("expected NotApplicable, got {other:?}"),
        }
    }

    #[test]
    fn exit_code_drops_to_zero_when_consequent_propagates_to_n_a() {
        // Key Technical Decision §4: exit_code reads the per-row set, not
        // raw probes. A probe that raw-Fails a requirement whose row
        // collapses to n_a (its antecedent opted out) must not lift the
        // exit code — the requirement does not apply. Raw results would
        // exit 2; the per-row set exits 0.
        let raw = vec![
            make_raw(
                "p2-json-output",
                AuditStatus::OptOut("no --output flag".into()),
            ),
            make_raw("p2-schema-print", AuditStatus::Fail("no schema".into())),
        ];
        assert_eq!(exit_code(&raw), 2, "raw probe Fail would exit 2");

        let catalog: Vec<Box<dyn crate::audit::Audit>> = vec![
            Box::new(FakeAudit {
                id: "p2-json-output",
                covers: &["p2-must-output-flag"],
            }),
            Box::new(FakeAudit {
                id: "p2-schema-print",
                covers: &["p2-must-schema-print"],
            }),
        ];
        let per_row: Vec<AuditResult> = build_row_results(&raw, &catalog)
            .into_iter()
            .map(|(r, _)| r)
            .collect();
        assert_eq!(
            exit_code(&per_row),
            0,
            "consequent propagated to n_a must not lift the exit code",
        );
    }

    #[test]
    fn text_and_json_agree_on_a_propagated_conditional_row() {
        // $100 guard for the text/JSON data-flow gap this plan closed: both
        // surfaces must derive the same row set from the same raw results +
        // catalog. A bat-shaped fixture — an opt_out antecedent
        // (p2-json-output) plus a raw-Fail consequent (p2-schema-print) —
        // exercises the n_a propagation both surfaces share. If the text
        // path ever stops routing through build_row_results, the row id,
        // count, status, and badge score diverge and this fails.
        let raw = vec![
            make_raw(
                "p2-json-output",
                AuditStatus::OptOut("no --output flag".into()),
            ),
            make_raw(
                "p2-schema-print",
                AuditStatus::Fail("no schema surface".into()),
            ),
        ];
        let catalog: Vec<Box<dyn crate::audit::Audit>> = vec![
            Box::new(FakeAudit {
                id: "p2-json-output",
                covers: &["p2-must-output-flag"],
            }),
            Box::new(FakeAudit {
                id: "p2-schema-print",
                covers: &["p2-must-schema-print"],
            }),
        ];

        // Text path: exactly the projection main::run feeds the renderer.
        let per_row: Vec<AuditResult> = build_row_results(&raw, &catalog)
            .into_iter()
            .map(|(r, _)| r)
            .collect();
        let text_badge = compute_badge(&per_row, "fixture-tool");
        let text = format_text(&per_row, false, Some(&text_badge), TextOptions::default());

        // JSON path.
        let scorecard = build_scorecard(&raw, &catalog, None, None, fixture_metadata());

        // (a) The consequent renders n_a, never fail, on both surfaces.
        let json_consequent = scorecard
            .results
            .iter()
            .find(|v| v.id == "p2-must-schema-print")
            .expect("consequent row present in JSON");
        assert_eq!(json_consequent.status, "n_a");
        assert!(
            text.contains("[N/A ]") && text.contains("p2-must-schema-print"),
            "text must render the consequent row as N/A:\n{text}",
        );
        assert!(
            !text.contains("[FAIL]"),
            "the only raw-Fail probe propagated to n_a; no row may render FAIL:\n{text}",
        );

        // (b) Row counts agree.
        assert_eq!(
            per_row.len(),
            scorecard.results.len(),
            "text row count must equal JSON results.len()",
        );

        // (c) Badge scores agree.
        assert_eq!(
            text_badge.score_pct, scorecard.badge.score_pct,
            "text badge score must equal JSON badge.score_pct",
        );
    }

    #[test]
    fn score_pct_counts_opt_out_in_denominator_excludes_n_a() {
        // Final formula (scoring.md): opt_out is in the denominator set D
        // with credit 0 (deliberate non-adoption counts against); n_a is
        // excluded from D entirely. A run of 1 Pass + 1 OptOut +
        // 1 NotApplicable scores (1 + 0) / (1 + 1) = 50%, not 100%.
        let results = vec![
            make_raw("c1", AuditStatus::Pass),
            make_raw("c2", AuditStatus::OptOut("deliberate".into())),
            make_raw("c3", AuditStatus::NotApplicable("conditional unmet".into())),
        ];
        assert_eq!(score_pct(&results), 50);

        // Adding one Fail: D = {pass, fail, opt_out}, numerator 1 → 33%.
        // n_a remains outside D.
        let mixed = vec![
            make_raw("c1", AuditStatus::Pass),
            make_raw("c2", AuditStatus::Fail("violates".into())),
            make_raw("c3", AuditStatus::OptOut("deliberate".into())),
            make_raw("c4", AuditStatus::NotApplicable("conditional unmet".into())),
        ];
        assert_eq!(score_pct(&mixed), 33);
    }

    #[test]
    fn score_pct_warn_earns_half_credit() {
        // Per scoring.md, warn contributes 0.5 to the numerator and 1 to
        // the denominator. 1 Pass + 1 Warn → (1 + 0.5) / 2 = 75%.
        let results = vec![
            make_raw("c1", AuditStatus::Pass),
            make_raw("c2", AuditStatus::Warn("partial".into())),
        ];
        assert_eq!(score_pct(&results), 75);
    }

    #[test]
    fn score_pct_counts_behavioral_rows_only() {
        // scoring.md scopes the score to shipped-binary behavior: only
        // behavioral-layer rows enter D. A source-layer and a project-layer
        // Fail must not move the score. Behavioral set here is a single
        // Pass → 100%, despite two non-behavioral failures present.
        let results = vec![
            make_raw_on("b1", AuditStatus::Pass, AuditLayer::Behavioral),
            make_raw_on("s1", AuditStatus::Fail("source".into()), AuditLayer::Source),
            make_raw_on(
                "p1",
                AuditStatus::Fail("project".into()),
                AuditLayer::Project,
            ),
        ];
        assert_eq!(score_pct(&results), 100);

        // And with no behavioral rows at all, D is empty → 0%.
        let non_behavioral = vec![
            make_raw_on("s1", AuditStatus::Pass, AuditLayer::Source),
            make_raw_on("p1", AuditStatus::Pass, AuditLayer::Project),
        ];
        assert_eq!(score_pct(&non_behavioral), 0);
    }

    #[test]
    fn score_pct_matches_scoring_md_worked_example() {
        // The worked example in agentnative-spec principles/scoring.md:
        // 20 pass, 7 warn, 0 fail, 1 opt_out, 1 n_a, 14 skip.
        // D = 20 + 7 + 0 + 1 = 28 rows; numerator = 20 + 7×0.5 = 23.5;
        // round(100 × 23.5 / 28) = 84 → Strong band.
        let mut results = Vec::new();
        for i in 0..20 {
            results.push(make_raw(&format!("pass-{i}"), AuditStatus::Pass));
        }
        for i in 0..7 {
            results.push(make_raw(
                &format!("warn-{i}"),
                AuditStatus::Warn("partial".into()),
            ));
        }
        results.push(make_raw("opt", AuditStatus::OptOut("declined".into())));
        results.push(make_raw(
            "na",
            AuditStatus::NotApplicable("antecedent unmet".into()),
        ));
        for i in 0..14 {
            results.push(make_raw(
                &format!("skip-{i}"),
                AuditStatus::Skip("unmeasured".into()),
            ));
        }
        assert_eq!(score_pct(&results), 84);
    }

    #[test]
    fn summary_counts_seven_statuses_independently() {
        // build_summary surfaces opt_out and n_a alongside the historical
        // five counters; total covers all seven.
        let results = vec![
            make_raw("a", AuditStatus::Pass),
            make_raw("b", AuditStatus::Warn("w".into())),
            make_raw("c", AuditStatus::Fail("f".into())),
            make_raw("d", AuditStatus::OptOut("o".into())),
            make_raw("e", AuditStatus::NotApplicable("n".into())),
            make_raw("f", AuditStatus::Skip("s".into())),
            make_raw("g", AuditStatus::Error("e".into())),
        ];
        let s = build_summary(&results);
        assert_eq!(s.total, 7);
        assert_eq!(s.pass, 1);
        assert_eq!(s.warn, 1);
        assert_eq!(s.fail, 1);
        assert_eq!(s.opt_out, 1);
        assert_eq!(s.n_a, 1);
        assert_eq!(s.skip, 1);
        assert_eq!(s.error, 1);
    }

    #[test]
    fn audit_result_view_carries_tier_and_audit_id() {
        // Per-row AuditResultView built via from_row exposes the requirement
        // tier (looked up from the registry) and the originating probe.
        let r = make_raw("p3-must-version", AuditStatus::Pass);
        let view = AuditResultView::from_row(&r, "p3-version");
        assert_eq!(view.id, "p3-must-version");
        assert_eq!(view.audit_id, "p3-version");
        assert_eq!(view.tier.as_deref(), Some("must"));
    }

    #[test]
    fn audit_result_view_tier_is_null_for_unknown_row_id() {
        // Test fixtures with synthetic ids that don't exist in the registry
        // surface as JSON null for tier — visible signal of inconsistency.
        let r = make_raw("not-a-real-row-id", AuditStatus::Pass);
        let view = AuditResultView::from_row(&r, "some-audit");
        assert!(view.tier.is_none(), "got: {:?}", view.tier);
    }

    #[test]
    fn opt_out_status_serializes_as_opt_out_in_json() {
        let r = make_raw("c1", AuditStatus::OptOut("test reason".into()));
        let view = AuditResultView::from_result(&r);
        assert_eq!(view.status, "opt_out");
        assert_eq!(view.evidence.as_deref(), Some("test reason"));
    }

    #[test]
    fn n_a_status_serializes_as_n_a_in_json() {
        let r = make_raw("c1", AuditStatus::NotApplicable("antecedent unmet".into()));
        let view = AuditResultView::from_result(&r);
        assert_eq!(view.status, "n_a");
        assert_eq!(view.evidence.as_deref(), Some("antecedent unmet"));
    }

    // ──────────────────────────────────────────────────────────────────
    // U2 red team: adversarial inputs that try to break the per-row +
    // propagation pipeline or the score formula.
    // ──────────────────────────────────────────────────────────────────

    #[test]
    fn rt_propagation_is_idempotent() {
        // Propagation reads raw probe statuses (not row statuses), so a
        // second pass over an already-propagated row vector must produce
        // an identical result. Pins the no-feedback contract — a future
        // refactor that reads `rows` in place would break this and
        // potentially loop or oscillate on chained conditionals.
        let raw = vec![
            make_raw(
                "p2-json-output",
                AuditStatus::OptOut("no --output flag".into()),
            ),
            make_raw("p2-schema-print", AuditStatus::Pass),
        ];
        let mut rows = vec![(
            make_raw("p2-must-schema-print", AuditStatus::Pass),
            "p2-schema-print".to_string(),
        )];
        propagate_antecedents(&mut rows, &raw);
        let after_first: Vec<(String, String)> = rows
            .iter()
            .map(|(r, c)| {
                (
                    serde_json::to_string(&r.status).expect("status serializes"),
                    c.clone(),
                )
            })
            .collect();
        propagate_antecedents(&mut rows, &raw);
        let after_second: Vec<(String, String)> = rows
            .iter()
            .map(|(r, c)| {
                (
                    serde_json::to_string(&r.status).expect("status serializes"),
                    c.clone(),
                )
            })
            .collect();
        assert_eq!(after_first, after_second, "propagation must be idempotent");
    }

    #[test]
    fn rt_propagation_no_op_when_antecedent_did_not_run() {
        // Source-only or filtered run: the antecedent probe didn't produce
        // a raw result. The row keeps its own status — propagation can't
        // override what it can't read. This is the exact path tools using
        // `--source` or `--principle <N>` exercise in production.
        let raw = vec![make_raw("p2-schema-print", AuditStatus::Pass)];
        let mut rows = vec![(
            make_raw("p2-must-schema-print", AuditStatus::Pass),
            "p2-schema-print".to_string(),
        )];
        propagate_antecedents(&mut rows, &raw);
        assert!(
            matches!(rows[0].0.status, AuditStatus::Pass),
            "no antecedent in raw → row untouched, got: {:?}",
            rows[0].0.status,
        );
    }

    #[test]
    fn rt_propagation_inherits_audit_profile_suppression_as_skip() {
        // Adversarial case: a CLI runs with `--audit-profile <X>` that
        // suppresses the antecedent probe. The suppressed Skip carries the
        // SUPPRESSION_EVIDENCE_PREFIX sentinel. The consequent row should
        // inherit Skip (cannot meaningfully evaluate). The new evidence
        // string cites the antecedent so a reader can still trace the
        // root cause back to the audit profile.
        use crate::principles::registry::SUPPRESSION_EVIDENCE_PREFIX;
        let raw = vec![
            make_raw(
                "p2-json-output",
                AuditStatus::Skip(format!("{SUPPRESSION_EVIDENCE_PREFIX}human-tui")),
            ),
            make_raw("p2-schema-print", AuditStatus::Pass),
        ];
        let mut rows = vec![(
            make_raw("p2-must-schema-print", AuditStatus::Pass),
            "p2-schema-print".to_string(),
        )];
        propagate_antecedents(&mut rows, &raw);
        match &rows[0].0.status {
            AuditStatus::Skip(reason) => {
                assert!(
                    reason.contains("p2-json-output"),
                    "propagated Skip must cite the antecedent, got: {reason}",
                );
                assert!(
                    reason.contains("human-tui"),
                    "propagated Skip must preserve the suppression reason, got: {reason}",
                );
            }
            other => panic!("expected Skip, got {other:?}"),
        }
    }

    #[test]
    fn rt_score_pct_only_n_a_returns_zero_without_panic() {
        // Pathological: every result is NotApplicable. Denominator is zero;
        // score must surface as 0 with no division-by-zero or NaN.
        let results: Vec<AuditResult> = (0..100)
            .map(|i| {
                make_raw(
                    &format!("row-{i}"),
                    AuditStatus::NotApplicable("conditional unmet".into()),
                )
            })
            .collect();
        assert_eq!(score_pct(&results), 0);
    }

    #[test]
    fn rt_score_pct_only_opt_out_returns_zero_without_panic() {
        // opt_out is in the denominator set D but contributes 0 credit, so
        // an all-opt_out run is 0 / N = 0% — not a div-by-zero (D is
        // non-empty here, unlike the all-n_a case above).
        let results: Vec<AuditResult> = (0..50)
            .map(|i| {
                make_raw(
                    &format!("row-{i}"),
                    AuditStatus::OptOut("deliberate".into()),
                )
            })
            .collect();
        assert_eq!(score_pct(&results), 0);
    }

    #[test]
    fn rt_score_pct_one_pass_amid_999_n_a_returns_100() {
        // n_a must not dilute. One genuine pass against a thousand
        // inapplicable rows is still 100%.
        let mut results: Vec<AuditResult> = (0..999)
            .map(|i| {
                make_raw(
                    &format!("row-{i}"),
                    AuditStatus::NotApplicable("conditional unmet".into()),
                )
            })
            .collect();
        results.push(make_raw("row-last", AuditStatus::Pass));
        assert_eq!(score_pct(&results), 100);
    }

    #[test]
    fn rt_score_pct_skip_and_error_still_excluded() {
        // Carry the legacy contract forward: Skip and Error contribute to
        // neither side. A run of (1 Pass + 100 Skip + 100 Error) is 100%.
        let mut results = vec![make_raw("good", AuditStatus::Pass)];
        for i in 0..100 {
            results.push(make_raw(
                &format!("s-{i}"),
                AuditStatus::Skip("limit".into()),
            ));
            results.push(make_raw(
                &format!("e-{i}"),
                AuditStatus::Error("boom".into()),
            ));
        }
        assert_eq!(score_pct(&results), 100);
    }

    #[test]
    fn rt_evidence_with_control_chars_roundtrips_through_json() {
        // Evidence strings come from probe output and may contain quotes,
        // backslashes, newlines, tabs. serde_json must escape them. The
        // roundtrip parse must recover the exact byte sequence.
        let hostile: &str = "line1\nline2\t\"quoted\"\\backslash\u{0007}bell";
        let r = make_raw("c1", AuditStatus::Warn(hostile.to_string()));
        let view = AuditResultView::from_result(&r);
        let json = serde_json::to_string(&view).expect("view serializes");
        let parsed: serde_json::Value = serde_json::from_str(&json).expect("re-parses");
        assert_eq!(
            parsed["evidence"].as_str(),
            Some(hostile),
            "evidence must roundtrip through JSON without loss",
        );
    }

    #[test]
    fn rt_evidence_with_unicode_zero_width_and_rtl_roundtrips() {
        // Zero-width joiner and RTL override are common smuggling vectors
        // in display contexts. They must roundtrip through JSON unchanged;
        // any sanitization belongs at the render layer (site), not here.
        let hostile = "left\u{202e}right\u{200b}invisible";
        let r = make_raw("c1", AuditStatus::OptOut(hostile.to_string()));
        let view = AuditResultView::from_result(&r);
        let json = serde_json::to_string(&view).expect("view serializes");
        let parsed: serde_json::Value = serde_json::from_str(&json).expect("re-parses");
        assert_eq!(parsed["evidence"].as_str(), Some(hostile));
        assert_eq!(parsed["status"], "opt_out");
    }

    #[test]
    fn rt_summary_total_equals_sum_of_per_status_counts() {
        // Invariant: total == pass + warn + fail + opt_out + n_a + skip + error.
        // A new variant added without updating build_summary would break this.
        let statuses = vec![
            AuditStatus::Pass,
            AuditStatus::Pass,
            AuditStatus::Warn("w".into()),
            AuditStatus::Fail("f".into()),
            AuditStatus::OptOut("o".into()),
            AuditStatus::OptOut("o".into()),
            AuditStatus::OptOut("o".into()),
            AuditStatus::NotApplicable("n".into()),
            AuditStatus::Skip("s".into()),
            AuditStatus::Error("e".into()),
        ];
        let results: Vec<AuditResult> = statuses
            .into_iter()
            .enumerate()
            .map(|(i, s)| make_raw(&format!("c{i}"), s))
            .collect();
        let s = build_summary(&results);
        assert_eq!(
            s.total,
            s.pass + s.warn + s.fail + s.opt_out + s.n_a + s.skip + s.error,
            "summary.total must equal the sum of every per-status counter",
        );
    }

    #[test]
    fn rt_full_pipeline_n_a_excluded_from_summary_n_a_and_score() {
        // End-to-end: a probe emits OptOut for the antecedent. After
        // fan-out + propagation, the consequent row carries n_a. The
        // summary counts both. n_a stays outside the denominator set D;
        // opt_out stays inside it with 0 credit.
        let raw = vec![
            make_raw("p2-json-output", AuditStatus::OptOut("no flag".into())),
            make_raw("p2-schema-print", AuditStatus::Pass),
            make_raw("p1-non-interactive", AuditStatus::Pass),
        ];
        let catalog: Vec<Box<dyn crate::audit::Audit>> = vec![
            Box::new(FakeAudit {
                id: "p2-json-output",
                covers: &["p2-must-output-flag"],
            }),
            Box::new(FakeAudit {
                id: "p2-schema-print",
                covers: &["p2-must-schema-print"],
            }),
            Box::new(FakeAudit {
                id: "p1-non-interactive",
                covers: &["p1-must-no-interactive"],
            }),
        ];
        let mut rows = fan_out_per_row(&raw, &catalog);
        propagate_antecedents(&mut rows, &raw);
        let per_row: Vec<AuditResult> = rows.into_iter().map(|(r, _)| r).collect();

        let s = build_summary(&per_row);
        assert_eq!(s.opt_out, 1, "p2-must-output-flag → opt_out: got {s:?}");
        assert_eq!(
            s.n_a, 1,
            "p2-must-schema-print → n_a via propagation: got {s:?}",
        );
        // Rows after propagation: p2-must-output-flag → opt_out,
        // p2-must-schema-print → n_a, p1-must-no-interactive → pass. D drops
        // the n_a row and keeps {opt_out, pass}: numerator 1, denominator 2
        // → 50%. The opt_out pulls the score down; the n_a does not count.
        assert_eq!(score_pct(&per_row), 50);
    }
}