omena-transform-passes 0.4.0

Transform pass registry and DAG planner for Omena CSS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
//! Public transform planning, execution, provenance, and context contracts.
//!
//! These data models are the stable JSON-facing boundary for Omena CSS transform
//! passes. Runtime modules own mutation execution, while this module keeps the
//! pass registry, execution summaries, semantic-removal witnesses, fuzz reports,
//! and cross-file transform context shapes serializable for `omena-query`,
//! bindings, CLI runners, and release gates.

use omena_abstract_value::{AbstractCssValueV0, FactPrecision};
use omena_cascade::{
    CascadeDeclaration, CascadeLevel, CascadeOriginV0, CascadeOutcome, CascadeProof,
    ElementSignature, GuardedCascadeWinnerAuthorityV0, GuardedCascadeWinnerPlaneAnswerV0,
    GuardedCascadeWinnerRootV0, SupportsTargetCapabilityV0,
};
use omena_cascade_proof::{
    CanonicalSmtInputV0, DischargeLedgerLookupStatusV0, DischargeLedgerLookupV0,
    DischargeLedgerVerdictV0,
};
use omena_evidence_graph::{
    EvidenceDemandEdgeV0, EvidenceGraphBuildErrorV0, EvidenceGraphV0, EvidenceNodeKeyV0,
    EvidenceNodeSeedV0, GuaranteeFamilyV0, GuaranteeKindV0, build_evidence_graph_from_edges_v0,
};
use omena_incremental::{IncrementalComputationPlanV0, IncrementalSnapshotV0};
use omena_parser::ModuleInstanceKeyV0;
use omena_transform_cst::{
    StableNodeKeyV0, TransformBuildProfileV0, TransformDagEdgeV0, TransformPassContractV0,
    TransformPassDescriptorV0, TransformPassKind, TransformStrictPolicyDescriptorV0,
    strict_policy_descriptor_for_profile,
};
use serde::{Deserialize, Serialize};
use serde_json::Value;

const TRANSFORM_PASS_OUTCOME_EVIDENCE_QUERY_V0: &str =
    "omena-transform-passes.transform-pass-execution-outcome";
const TRANSFORM_PROVENANCE_NODE_EVIDENCE_QUERY_V0: &str =
    "omena-transform-passes.provenance-derivation-node";
const TRANSFORM_EVIDENCE_EDGE_KIND_V0: &str = "transform-evidence";

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum TransformPassExecutionStatus {
    RegistryAndPlannerReady,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum TransformPassDispatchKindV0 {
    TextLocalSliceRewrite,
    StructuralIrTransaction,
    ModuleEvaluationHandler,
    EmissionBoundary,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformPassRegistryEntryV0 {
    pub contract: TransformPassContractV0,
    pub descriptor: TransformPassDescriptorV0,
    pub module_family: &'static str,
    pub query_family: &'static str,
    pub dispatch_kind: TransformPassDispatchKindV0,
    pub execution_status: TransformPassExecutionStatus,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformPassRegistryV0 {
    pub schema_version: &'static str,
    pub product: &'static str,
    pub entries: Vec<TransformPassRegistryEntryV0>,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformPassesBoundarySummaryV0 {
    pub schema_version: &'static str,
    pub product: &'static str,
    pub registry_entries: Vec<TransformPassRegistryEntryV0>,
    pub dag_edges: Vec<TransformDagEdgeV0>,
    pub pass_count: usize,
    pub full_catalog_registered: bool,
    pub semantic_aware_pass_count: usize,
    pub cascade_aware_pass_count: usize,
    pub structural_pass_count: usize,
    pub text_local_pass_count: usize,
    pub module_evaluation_pass_count: usize,
    pub planner_enforces_dag_edges: bool,
    pub planner_uses_pass_descriptors: bool,
    pub ordinal_has_execution_semantics: bool,
    pub execution_runtime_ready: bool,
    pub incremental_execution_runtime_ready: bool,
    pub module_evaluation_native_output_marker: &'static str,
    pub module_evaluation_requires_native_product_output: bool,
    pub module_evaluation_requires_oracle_readiness: bool,
    pub module_evaluation_legacy_output_is_oracle_only: bool,
    pub module_evaluation_preserves_source_without_native_output: bool,
    pub implemented_mutation_pass_ids: Vec<&'static str>,
    pub next_surfaces: Vec<&'static str>,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformPassPlanV0 {
    pub schema_version: &'static str,
    pub product: &'static str,
    pub build_profile: TransformBuildProfileV0,
    pub requested_pass_ids: Vec<&'static str>,
    pub ordered_pass_ids: Vec<&'static str>,
    pub satisfied_dag_edge_count: usize,
    pub violated_dag_edge_count: usize,
    pub all_requested_registered: bool,
    pub conflicting_unordered_pass_pairs: Vec<TransformPlanPassConflictV0>,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformPlanPassConflictV0 {
    pub pass_a: &'static str,
    pub pass_b: &'static str,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformStructuralIrShadowFieldReportV0 {
    pub field: &'static str,
    pub string_path_values: Vec<String>,
    pub ir_path_values: Vec<String>,
    pub typed_path_values: Vec<String>,
    pub matches: bool,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformStructuralIrShadowFixtureReportV0 {
    pub schema_version: &'static str,
    pub product: &'static str,
    pub fixture: String,
    pub pass_id: &'static str,
    pub dialect: &'static str,
    pub string_path_mutation_count: Option<usize>,
    pub ir_path_mutation_count: Option<usize>,
    pub typed_path_mutation_count: Option<usize>,
    pub ir_path_transaction_commit_count: Option<u64>,
    pub typed_payload_projections_consumed: usize,
    pub typed_payload_memo_hits: usize,
    pub fields: Vec<TransformStructuralIrShadowFieldReportV0>,
    pub all_fields_match: bool,
    pub all_typed_path_fields_match: bool,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformStructuralIrShadowEquivalenceReportV0 {
    pub schema_version: &'static str,
    pub product: &'static str,
    pub fixture_count: usize,
    pub compared_pass_ids: Vec<&'static str>,
    pub compared_fields: Vec<&'static str>,
    pub reports: Vec<TransformStructuralIrShadowFixtureReportV0>,
    pub all_fields_match: bool,
    pub all_typed_path_fields_match: bool,
    pub typed_payload_projections_consumed: usize,
    pub typed_payload_memo_hits: usize,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum TransformPassRuntimeStatus {
    Applied,
    NoChange,
    PlannedOnly,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformPassExecutionOutcomeV0 {
    pub pass_id: &'static str,
    pub status: TransformPassRuntimeStatus,
    pub input_byte_len: usize,
    pub output_byte_len: usize,
    pub mutation_count: usize,
    pub provenance_preserved: bool,
    pub detail: &'static str,
}

impl TransformPassExecutionOutcomeV0 {
    pub fn evidence_node_key(&self) -> EvidenceNodeKeyV0 {
        EvidenceNodeKeyV0::new(TRANSFORM_PASS_OUTCOME_EVIDENCE_QUERY_V0, self.pass_id)
    }

    pub fn evidence_node_seed(&self) -> EvidenceNodeSeedV0 {
        EvidenceNodeSeedV0::new(
            self.evidence_node_key(),
            vec![
                ["pass:", self.pass_id].concat(),
                ["detail:", self.detail].concat(),
                ["mutationCount:", self.mutation_count.to_string().as_str()].concat(),
                [
                    "provenancePreserved:",
                    self.provenance_preserved.to_string().as_str(),
                ]
                .concat(),
            ],
            GuaranteeKindV0::for_label_less_family(),
        )
    }

    pub fn evidence_demand_edge(&self) -> EvidenceDemandEdgeV0 {
        EvidenceDemandEdgeV0::new(
            TRANSFORM_PASS_OUTCOME_EVIDENCE_QUERY_V0,
            self.evidence_node_key(),
            TRANSFORM_EVIDENCE_EDGE_KIND_V0,
        )
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum TransformEvaluationProfileV0 {
    Scss,
    Less,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(tag = "kind", rename_all = "camelCase")]
pub enum TransformPreconditionV0 {
    EvaluatorOutput {
        profile: TransformEvaluationProfileV0,
    },
    ResolvedImportReplacements,
    CssModulesComposesResolution,
    DesignTokenRoutes,
    SelectorIdentity,
    ClosedStyleWorldBundle,
    ClosedWorldBundle,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(tag = "kind", rename_all = "camelCase")]
pub enum TransformNoChangeReasonV0 {
    NoMutation,
    EmissionBoundary,
    ProfileNotApplicable {
        profile: TransformEvaluationProfileV0,
    },
    NoMatchingSelectorRewrite,
    DialectNotApplicable,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(
    tag = "kind",
    rename_all = "camelCase",
    rename_all_fields = "camelCase"
)]
pub enum TransformBlockedReasonV0 {
    MissingPrecondition {
        precondition: TransformPreconditionV0,
    },
    PrecisionBelowFloor {
        required: FactPrecision,
        observed: FactPrecision,
    },
    DischargeMissing {
        lookup_status: Option<DischargeLedgerLookupStatusV0>,
        verdict: Option<DischargeLedgerVerdictV0>,
    },
    StrictVerification {
        reasons: Vec<TransformStrictPolicyReasonV0>,
    },
    PassImplementation,
    ClosedWorldAdmission {
        reasons: Vec<TransformStrictPolicyReasonV0>,
    },
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(tag = "kind", rename_all = "camelCase")]
pub enum TransformRejectionReasonV0 {
    IrTransaction {
        pass: TransformPassKind,
    },
    SemanticPreservation,
    StrictVerification {
        reasons: Vec<TransformStrictPolicyReasonV0>,
    },
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
#[serde(
    tag = "kind",
    rename_all = "camelCase",
    rename_all_fields = "camelCase"
)]
pub enum TransformStructuralDecisionClassV0 {
    FactConsuming { required_precision: FactPrecision },
    StaticExact,
    ObligationDischarge,
    NonRemovalRewrite,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformStructuralDecisionPolicyV0 {
    pub pass: TransformPassKind,
    pub class: TransformStructuralDecisionClassV0,
    pub reason: &'static str,
}

impl TransformStructuralDecisionPolicyV0 {
    pub const fn new(
        pass: TransformPassKind,
        class: TransformStructuralDecisionClassV0,
        reason: &'static str,
    ) -> Self {
        Self {
            pass,
            class,
            reason,
        }
    }

    pub const fn required_precision(self) -> Option<FactPrecision> {
        match self.class {
            TransformStructuralDecisionClassV0::FactConsuming { required_precision } => {
                Some(required_precision)
            }
            TransformStructuralDecisionClassV0::StaticExact
            | TransformStructuralDecisionClassV0::ObligationDischarge
            | TransformStructuralDecisionClassV0::NonRemovalRewrite => None,
        }
    }
}

pub const TRANSFORM_STRUCTURAL_DECISION_POLICIES_V0: &[TransformStructuralDecisionPolicyV0] = &[
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::ImportInline,
        TransformStructuralDecisionClassV0::NonRemovalRewrite,
        "materializes explicitly resolved imports without reachability pruning",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::ResolveCssModulesComposes,
        TransformStructuralDecisionClassV0::NonRemovalRewrite,
        "materializes explicit CSS Modules composition resolution",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::DesignTokenRouting,
        TransformStructuralDecisionClassV0::NonRemovalRewrite,
        "rewrites values through explicit design-token routes",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::HashCssModuleClassNames,
        TransformStructuralDecisionClassV0::NonRemovalRewrite,
        "rewrites selectors through an explicit identity map",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::RuleDeduplication,
        TransformStructuralDecisionClassV0::StaticExact,
        "removes only statically equivalent duplicate rules",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::RuleMerging,
        TransformStructuralDecisionClassV0::NonRemovalRewrite,
        "combines adjacent declarations without reachability pruning",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::SelectorMerging,
        TransformStructuralDecisionClassV0::NonRemovalRewrite,
        "combines equivalent selector blocks without reachability pruning",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::NestingUnwrap,
        TransformStructuralDecisionClassV0::NonRemovalRewrite,
        "expands nested selectors without reachability pruning",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::ScopeFlatten,
        TransformStructuralDecisionClassV0::ObligationDischarge,
        "requires accepted scope-flatten obligations",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::LayerFlatten,
        TransformStructuralDecisionClassV0::ObligationDischarge,
        "requires accepted layer-flatten obligations",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::SupportsStaticEval,
        TransformStructuralDecisionClassV0::StaticExact,
        "removes only statically decided supports branches",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::MediaStaticEval,
        TransformStructuralDecisionClassV0::StaticExact,
        "removes only statically unsatisfiable media branches",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::ContainerStaticEval,
        TransformStructuralDecisionClassV0::StaticExact,
        "removes only statically unsatisfiable container branches",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::NativeCssStaticEval,
        TransformStructuralDecisionClassV0::StaticExact,
        "folds only statically evaluable native CSS expressions",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::DeadMediaBranchRemoval,
        TransformStructuralDecisionClassV0::StaticExact,
        "removes only media branches selected by explicit static policy",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::DeadSupportsBranchRemoval,
        TransformStructuralDecisionClassV0::StaticExact,
        "removes only statically decided supports branches",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::TreeShakeClass,
        TransformStructuralDecisionClassV0::FactConsuming {
            required_precision: FactPrecision::Conservative,
        },
        "removes class rules only from a closed-world reachability over-approximation",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::TreeShakeKeyframes,
        TransformStructuralDecisionClassV0::FactConsuming {
            required_precision: FactPrecision::Conservative,
        },
        "removes keyframes only from a closed-world reachability over-approximation",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::TreeShakeValue,
        TransformStructuralDecisionClassV0::FactConsuming {
            required_precision: FactPrecision::Conservative,
        },
        "removes CSS Modules values only from a closed-world reachability over-approximation",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::TreeShakeCustomProperty,
        TransformStructuralDecisionClassV0::FactConsuming {
            required_precision: FactPrecision::Conservative,
        },
        "removes custom properties only from a closed-world reachability over-approximation",
    ),
    TransformStructuralDecisionPolicyV0::new(
        TransformPassKind::EmptyRuleRemoval,
        TransformStructuralDecisionClassV0::StaticExact,
        "removes only structurally empty rules",
    ),
];

pub fn transform_structural_decision_policy(
    pass: TransformPassKind,
) -> Option<&'static TransformStructuralDecisionPolicyV0> {
    TRANSFORM_STRUCTURAL_DECISION_POLICIES_V0
        .iter()
        .find(|policy| policy.pass == pass)
}

#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
#[serde(tag = "kind", rename_all = "camelCase")]
pub enum RollbackScopeV0 {
    RejectPreservedInput,
    InversePatch,
    CommittedIrrecoverable,
}

#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct RollbackReceiptV0 {
    pub pass_id: String,
    pub attempted_mutation_count: Option<usize>,
    pub input_content_signature: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub output_preserved_content_signature: Option<String>,
    pub restorable: RollbackScopeV0,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformDischargeEvidenceV0 {
    pub evidence_node_key: EvidenceNodeKeyV0,
    pub guarantee_family: GuaranteeFamilyV0,
    pub ledger_cell_key: String,
    pub boundedness_kind: String,
}

/// Cascade dimensions covered by an observed winner-equality comparison.
///
/// Coverage is explicit so consumers do not mistake a partial observation for
/// a guarantee over cascade dimensions that have no production driver yet.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum TransformWinnerEqualityAxisV0 {
    CascadeLevel,
    LayerRank,
    ScopeProximity,
    Specificity,
    SourceOrder,
}

/// Why a winner-equality observation could not cover one cascade dimension.
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(
    tag = "kind",
    rename_all = "camelCase",
    rename_all_fields = "camelCase"
)]
pub enum TransformWinnerEqualityAbsenceReasonV0 {
    DriverUnavailable {
        level: Option<CascadeLevel>,
    },
    AffectedPairUnavailable,
    SpecificityInexact,
    WinnerNotDefinite,
    WinnerChanged,
    GuardedWinnerFunctionsDiffer {
        input_root: GuardedCascadeWinnerRootV0,
        output_root: GuardedCascadeWinnerRootV0,
    },
    GuardedWinnerPlaneDisagreement {
        side: &'static str,
        canonical_mtbdd: GuardedCascadeWinnerPlaneAnswerV0,
        scenario_sweep: GuardedCascadeWinnerPlaneAnswerV0,
    },
}

/// A typed precision boundary for a missing winner-equality observation.
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformWinnerEqualityAbsenceV0 {
    pub axis: TransformWinnerEqualityAxisV0,
    pub reason: TransformWinnerEqualityAbsenceReasonV0,
}

/// The semantic location whose cascade winner is compared across a transform.
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformWinnerEqualityAffectedPairV0 {
    pub element_signature: ElementSignature,
    pub property: String,
}

/// A definite winner and the proof emitted by the cascade authority.
///
/// Keeping the authority-owned types here prevents transform code from
/// reconstructing winner order or proof fields independently.
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformWinnerEqualityWitnessV0 {
    pub winner: CascadeDeclaration,
    pub proof: CascadeProof,
}

impl TransformWinnerEqualityWitnessV0 {
    pub fn from_cascade_outcome(outcome: &CascadeOutcome) -> Option<Self> {
        match outcome {
            CascadeOutcome::Definite { winner, proof, .. } => Some(Self {
                winner: winner.clone(),
                proof: proof.as_ref().clone(),
            }),
            CascadeOutcome::RankedSet(_) | CascadeOutcome::Inherit | CascadeOutcome::Top => None,
        }
    }
}

/// Result of comparing authority-produced cascade witnesses for one affected pair.
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(
    tag = "kind",
    rename_all = "camelCase",
    rename_all_fields = "camelCase"
)]
pub enum TransformWinnerEqualityObservationV0 {
    ObservedEqual {
        axes: Vec<TransformWinnerEqualityAxisV0>,
        input: TransformWinnerEqualityWitnessV0,
        output: TransformWinnerEqualityWitnessV0,
    },
    ObservedDifferent {
        axes: Vec<TransformWinnerEqualityAxisV0>,
        input: TransformWinnerEqualityWitnessV0,
        output: TransformWinnerEqualityWitnessV0,
    },
    Absent {
        reasons: Vec<TransformWinnerEqualityAbsenceV0>,
    },
    ObservedGuardedEqual {
        axes: Vec<TransformWinnerEqualityAxisV0>,
        input: TransformWinnerEqualityWitnessV0,
        output: TransformWinnerEqualityWitnessV0,
        authority: GuardedCascadeWinnerAuthorityV0,
    },
}

/// A cascade-winner comparison requested for one admitted transform mutation.
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformWinnerEqualityObligationV0 {
    pub pass_id: &'static str,
    pub affected_pair: TransformWinnerEqualityAffectedPairV0,
    pub observation: TransformWinnerEqualityObservationV0,
}

#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct TransformExecutionPolicyV0 {
    pub strict_policy: Option<TransformStrictPolicyDescriptorV0>,
}

impl TransformExecutionPolicyV0 {
    pub fn for_profile(profile_id: &str) -> Option<Self> {
        strict_policy_descriptor_for_profile(profile_id).map(|strict_policy| Self {
            strict_policy: Some(strict_policy),
        })
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(
    tag = "kind",
    rename_all = "camelCase",
    rename_all_fields = "camelCase"
)]
pub enum TransformStrictPolicyReasonV0 {
    RequiredAxisUnavailable {
        axis: TransformWinnerEqualityAxisV0,
    },
    CascadeEnvironmentUnavailable,
    WinnerChanged {
        axes: Vec<TransformWinnerEqualityAxisV0>,
    },
    ObservationUnavailable {
        reasons: Vec<TransformWinnerEqualityAbsenceV0>,
    },
    UnknownPass,
    ClosedWorldEvidenceUnavailable,
    DecisionCoverageIncomplete,
    ClosedWorldEvidenceIncomplete {
        missing: Vec<String>,
    },
    LivenessNotClosed {
        symbol: String,
        from_module: ModuleInstanceKeyV0,
        via_edge: &'static str,
    },
    EvidenceUnavailable,
    OwnershipNotSeparable {
        token: String,
        module_paths: Vec<String>,
    },
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub enum CssModuleTokenCollisionPathScopeV0 {
    BothPaths,
    ImportInlineLegacyOnly,
    LinkedOrderOnly,
}

impl CssModuleTokenCollisionPathScopeV0 {
    pub const fn as_wire_label(self) -> &'static str {
        match self {
            Self::BothPaths => "bothPaths",
            Self::ImportInlineLegacyOnly => "importInlineLegacyOnly",
            Self::LinkedOrderOnly => "linkedOrderOnly",
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct CssModuleTokenOwnershipV0 {
    pub emitted_token: String,
    pub module_instances: Vec<ModuleInstanceKeyV0>,
    pub module_paths: Vec<String>,
    pub original_names: Vec<String>,
}

impl CssModuleTokenOwnershipV0 {
    pub fn new(
        emitted_token: impl Into<String>,
        module_instances: Vec<ModuleInstanceKeyV0>,
        module_paths: Vec<String>,
        original_names: Vec<String>,
    ) -> Self {
        Self {
            emitted_token: emitted_token.into(),
            module_instances,
            module_paths,
            original_names,
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct CssModuleTokenCollisionV0 {
    pub emitted_token: String,
    pub module_instances: Vec<ModuleInstanceKeyV0>,
    pub module_paths: Vec<String>,
    pub original_names: Vec<String>,
    pub observed_emission_paths: Vec<&'static str>,
    pub path_scope: CssModuleTokenCollisionPathScopeV0,
}

impl CssModuleTokenCollisionV0 {
    pub fn new(
        ownership: CssModuleTokenOwnershipV0,
        observed_emission_paths: Vec<&'static str>,
        path_scope: CssModuleTokenCollisionPathScopeV0,
    ) -> Self {
        Self {
            emitted_token: ownership.emitted_token,
            module_instances: ownership.module_instances,
            module_paths: ownership.module_paths,
            original_names: ownership.original_names,
            observed_emission_paths,
            path_scope,
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct CssModuleTokenInterfaceMismatchV0 {
    pub module_instance: ModuleInstanceKeyV0,
    pub module_path: String,
    pub original_name: String,
    pub promised_token: String,
    pub emitted_token: String,
}

impl CssModuleTokenInterfaceMismatchV0 {
    pub fn new(
        module_instance: ModuleInstanceKeyV0,
        module_path: impl Into<String>,
        original_name: impl Into<String>,
        promised_token: impl Into<String>,
        emitted_token: impl Into<String>,
    ) -> Self {
        Self {
            module_instance,
            module_path: module_path.into(),
            original_name: original_name.into(),
            promised_token: promised_token.into(),
            emitted_token: emitted_token.into(),
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct CssModuleTokenOwnershipCensusV0 {
    pub schema_version: &'static str,
    pub product: &'static str,
    pub scope: &'static str,
    pub emission_path: &'static str,
    pub complete: bool,
    pub modeled_preimage_count: usize,
    pub emitted_token_count: usize,
    pub token_ownerships: Vec<CssModuleTokenOwnershipV0>,
    pub module_token_collision_count: usize,
    pub module_token_collisions: Vec<CssModuleTokenCollisionV0>,
    pub unattributed_emitted_tokens: Vec<String>,
    pub interface_mismatches: Vec<CssModuleTokenInterfaceMismatchV0>,
    pub unavailable_reasons: Vec<String>,
}

impl CssModuleTokenOwnershipCensusV0 {
    pub fn new(
        emission_path: &'static str,
        modeled_preimage_count: usize,
        token_ownerships: Vec<CssModuleTokenOwnershipV0>,
        module_token_collisions: Vec<CssModuleTokenCollisionV0>,
        unattributed_emitted_tokens: Vec<String>,
        interface_mismatches: Vec<CssModuleTokenInterfaceMismatchV0>,
    ) -> Self {
        let module_token_collision_count = module_token_collisions.len();
        let emitted_token_count = token_ownerships.len() + unattributed_emitted_tokens.len();
        Self {
            schema_version: "0",
            product: "omena-query.css-module-token-ownership-census",
            scope: "bundleEmission",
            emission_path,
            complete: unattributed_emitted_tokens.is_empty(),
            modeled_preimage_count,
            emitted_token_count,
            token_ownerships,
            module_token_collision_count,
            module_token_collisions,
            unattributed_emitted_tokens,
            interface_mismatches,
            unavailable_reasons: Vec::new(),
        }
    }

    pub fn unavailable(emission_path: &'static str, reason: impl Into<String>) -> Self {
        Self {
            schema_version: "0",
            product: "omena-query.css-module-token-ownership-census",
            scope: "bundleEmission",
            emission_path,
            complete: false,
            modeled_preimage_count: 0,
            emitted_token_count: 0,
            token_ownerships: Vec::new(),
            module_token_collision_count: 0,
            module_token_collisions: Vec::new(),
            unattributed_emitted_tokens: Vec::new(),
            interface_mismatches: Vec::new(),
            unavailable_reasons: vec![reason.into()],
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformStrictPolicyEventV0 {
    pub pass_id: String,
    pub reasons: Vec<TransformStrictPolicyReasonV0>,
}

#[derive(Debug, Clone, Default, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformStrictPolicySummaryV0 {
    pub profile_id: Option<String>,
    pub refused_count: usize,
    pub rolled_back_count: usize,
    pub refusal_reasons: Vec<TransformStrictPolicyEventV0>,
    pub rollback_reasons: Vec<TransformStrictPolicyEventV0>,
}

impl TransformStrictPolicySummaryV0 {
    pub fn for_profile(profile_id: &str) -> Self {
        Self {
            profile_id: Some(profile_id.to_string()),
            ..Self::default()
        }
    }

    pub fn record_refusal(
        &mut self,
        pass_id: impl Into<String>,
        reasons: Vec<TransformStrictPolicyReasonV0>,
    ) {
        self.refusal_reasons.push(TransformStrictPolicyEventV0 {
            pass_id: pass_id.into(),
            reasons,
        });
        self.refused_count = self.refusal_reasons.len();
    }

    pub fn record_rollback(
        &mut self,
        pass_id: impl Into<String>,
        reasons: Vec<TransformStrictPolicyReasonV0>,
    ) {
        self.rollback_reasons.push(TransformStrictPolicyEventV0 {
            pass_id: pass_id.into(),
            reasons,
        });
        self.rolled_back_count = self.rollback_reasons.len();
    }
}

#[derive(Debug, Clone, Copy, Default, PartialEq, Eq)]
pub struct ClosedWorldAdmissionTierV0;

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformClosedWorldAdmissionEventV0 {
    pub pass_id: String,
    pub module_instance: Option<ModuleInstanceKeyV0>,
    pub reasons: Vec<TransformStrictPolicyReasonV0>,
}

#[derive(Debug, Clone, Default, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformClosedWorldAdmissionSummaryV0 {
    pub refused_count: usize,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub evidence_scope: Option<&'static str>,
    pub refusal_reasons: Vec<TransformClosedWorldAdmissionEventV0>,
}

impl TransformClosedWorldAdmissionSummaryV0 {
    pub fn record_refusal(
        &mut self,
        pass_id: impl Into<String>,
        module_instance: Option<ModuleInstanceKeyV0>,
        reasons: Vec<TransformStrictPolicyReasonV0>,
    ) {
        self.refusal_reasons
            .push(TransformClosedWorldAdmissionEventV0 {
                pass_id: pass_id.into(),
                module_instance,
                reasons,
            });
        self.refused_count = self.refusal_reasons.len();
    }
}

/// Trust carried by an admitted transform decision.
///
/// This is descriptive evidence for default and other non-strict profiles. The
/// enum itself never participates in admission. An opt-in strict profile may
/// separately enforce the underlying typed obligations while leaving the base
/// admission predicate unchanged.
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(
    tag = "kind",
    rename_all = "camelCase",
    rename_all_fields = "camelCase"
)]
pub enum TransformSemanticGuaranteeTierV0 {
    L0Observed,
    WinnerEqualityObserved {
        axes: Vec<TransformWinnerEqualityAxisV0>,
    },
    Absent {
        reasons: Vec<TransformWinnerEqualityAbsenceV0>,
    },
}

impl RollbackReceiptV0 {
    pub fn preserves_rejected_input(&self) -> bool {
        self.restorable == RollbackScopeV0::RejectPreservedInput
            && self.output_preserved_content_signature.as_deref()
                == Some(self.input_content_signature.as_str())
    }

    pub fn covers_inverse_patch(
        &self,
        inverse_patch_count: usize,
        input_content_signature: &str,
    ) -> bool {
        self.restorable == RollbackScopeV0::InversePatch
            && self.attempted_mutation_count == Some(inverse_patch_count)
            && self.input_content_signature == input_content_signature
            && self.output_preserved_content_signature.is_none()
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(
    tag = "kind",
    rename_all = "camelCase",
    rename_all_fields = "camelCase"
)]
pub enum TransformDecision {
    Applied {
        outcome: TransformPassExecutionOutcomeV0,
        rollback_receipt: RollbackReceiptV0,
        #[serde(skip_serializing_if = "Option::is_none")]
        semantic_guarantee_tier: Option<TransformSemanticGuaranteeTierV0>,
        #[serde(skip_serializing_if = "Vec::is_empty")]
        discharge_evidence: Vec<TransformDischargeEvidenceV0>,
    },
    NoChange {
        reason: TransformNoChangeReasonV0,
        outcome: TransformPassExecutionOutcomeV0,
    },
    Blocked {
        reason: TransformBlockedReasonV0,
        outcome: TransformPassExecutionOutcomeV0,
    },
    Rejected {
        reason: TransformRejectionReasonV0,
        outcome: TransformPassExecutionOutcomeV0,
        rollback_receipt: RollbackReceiptV0,
    },
}

impl TransformDecision {
    pub fn compatibility_outcome(&self) -> &TransformPassExecutionOutcomeV0 {
        match self {
            Self::Applied { outcome, .. }
            | Self::NoChange { outcome, .. }
            | Self::Blocked { outcome, .. }
            | Self::Rejected { outcome, .. } => outcome,
        }
    }

    pub fn into_compatibility_outcome(self) -> TransformPassExecutionOutcomeV0 {
        match self {
            Self::Applied { outcome, .. }
            | Self::NoChange { outcome, .. }
            | Self::Blocked { outcome, .. }
            | Self::Rejected { outcome, .. } => outcome,
        }
    }

    pub fn rollback_receipt(&self) -> Option<&RollbackReceiptV0> {
        match self {
            Self::Applied {
                rollback_receipt, ..
            }
            | Self::Rejected {
                rollback_receipt, ..
            } => Some(rollback_receipt),
            Self::NoChange { .. } | Self::Blocked { .. } => None,
        }
    }

    pub fn semantic_guarantee_tier(&self) -> Option<&TransformSemanticGuaranteeTierV0> {
        match self {
            Self::Applied {
                semantic_guarantee_tier,
                ..
            } => semantic_guarantee_tier.as_ref(),
            Self::NoChange { .. } | Self::Blocked { .. } | Self::Rejected { .. } => None,
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformProvenanceDerivationForestV0 {
    pub schema_version: &'static str,
    pub product: &'static str,
    pub root_count: usize,
    pub node_count: usize,
    pub nodes: Vec<TransformProvenanceDerivationNodeV0>,
}

impl TransformProvenanceDerivationForestV0 {
    pub fn evidence_graph(&self) -> Result<EvidenceGraphV0, EvidenceGraphBuildErrorV0> {
        build_evidence_graph_from_edges_v0(
            self.nodes
                .iter()
                .map(TransformProvenanceDerivationNodeV0::evidence_node_seed),
            self.nodes
                .iter()
                .map(TransformProvenanceDerivationNodeV0::evidence_demand_edge),
        )
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformProvenanceDerivationNodeV0 {
    pub node_index: usize,
    pub parent_index: Option<usize>,
    pub pass_id: &'static str,
    pub status: TransformPassRuntimeStatus,
    pub input_byte_len: usize,
    pub output_byte_len: usize,
    pub source_span_start: usize,
    pub source_span_end: usize,
    pub generated_span_start: usize,
    pub generated_span_end: usize,
    pub mutation_spans: Vec<TransformProvenanceMutationSpanV0>,
    pub mutation_count: usize,
    pub provenance_preserved: bool,
    pub detail: &'static str,
}

impl TransformProvenanceDerivationNodeV0 {
    pub fn evidence_node_key(&self) -> EvidenceNodeKeyV0 {
        EvidenceNodeKeyV0::new(
            TRANSFORM_PROVENANCE_NODE_EVIDENCE_QUERY_V0,
            format!("{}#{}", self.pass_id, self.node_index),
        )
    }

    pub fn evidence_node_seed(&self) -> EvidenceNodeSeedV0 {
        EvidenceNodeSeedV0::new(
            self.evidence_node_key(),
            vec![
                ["pass:", self.pass_id].concat(),
                ["detail:", self.detail].concat(),
                ["mutationCount:", self.mutation_count.to_string().as_str()].concat(),
                [
                    "provenancePreserved:",
                    self.provenance_preserved.to_string().as_str(),
                ]
                .concat(),
            ],
            GuaranteeKindV0::for_label_less_family(),
        )
    }

    pub fn evidence_demand_edge(&self) -> EvidenceDemandEdgeV0 {
        EvidenceDemandEdgeV0::new(
            TRANSFORM_PROVENANCE_NODE_EVIDENCE_QUERY_V0,
            self.evidence_node_key(),
            TRANSFORM_EVIDENCE_EDGE_KIND_V0,
        )
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformProvenanceMutationSpanV0 {
    pub source_span_start: usize,
    pub source_span_end: usize,
    pub generated_span_start: usize,
    pub generated_span_end: usize,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub node_key: Option<StableNodeKeyV0>,
}

/// Counts incremental lex-splice outcomes inside a transform execution.
///
/// A fallback is conservative: the cache declines to reuse token ranges and the
/// next consumer re-lexes the generated source normally.
#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformLexCacheSpliceTelemetryV0 {
    /// Number of generated token streams inserted through bounded splicing.
    pub splice_hit_count: u64,
    /// Number of active-cache attempts that intentionally fell back to full re-lex.
    pub full_relex_fallback_count: u64,
    /// Fallbacks caused by invalid or non-projectable mutation windows.
    pub window_derivation_fallback_count: u64,
    /// Fallbacks where the safe restart window covers the full generated output.
    pub full_output_window_fallback_count: u64,
    /// Fallbacks caused by token offset arithmetic or projection failure.
    pub token_offset_fallback_count: u64,
}

/// Counts structural IR transaction outcomes that matter for String-currency
/// retirement.
#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct TransformStructuralIrTransactionTelemetryV0 {
    pub transaction_commit_count: u64,
    pub ir_metadata_refresh_count: u64,
    pub ir_transaction_commit_count: u64,
    pub ir_materialization_count: u64,
    pub ir_mutation_count: u64,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum TransformSemanticObservationKeyAxisV0 {
    Selector,
    Property,
    Context,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum TransformSemanticObservationValueAxisV0 {
    Value,
    Important,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum TransformSemanticObservationOrderingRuleV0 {
    SourceOrder,
    ImportantPrecedence,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum TransformSemanticUnobservedAxisV0 {
    InterSelectorSpecificityCompetition,
    CascadeLayerOrder,
    Origin,
    ScopeProximity,
    DomDependentMatching,
    Inheritance,
    CustomPropertyEnvironment,
    AnimationAndTransition,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum TransformSemanticPreservationClaimScopeV0 {
    ObservedSurfaceOnly,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum TransformSemanticPreservationVocabularyReviewV0 {
    DeferredUntilFullCascadeObservation,
}

/// Declares exactly which semantic projection the transform guard compares.
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformSemanticObservationSurfaceV0 {
    pub key_axes: Vec<TransformSemanticObservationKeyAxisV0>,
    pub value_axes: Vec<TransformSemanticObservationValueAxisV0>,
    pub ordering_rules: Vec<TransformSemanticObservationOrderingRuleV0>,
    pub unobserved_axes: Vec<TransformSemanticUnobservedAxisV0>,
    pub claim_scope: TransformSemanticPreservationClaimScopeV0,
    pub vocabulary_review: TransformSemanticPreservationVocabularyReviewV0,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformSemanticPreservationTelemetryV0 {
    pub observed_pass_count: u64,
    pub preserved_pass_count: u64,
    pub blocked_pass_count: u64,
    pub observed_surface: TransformSemanticObservationSurfaceV0,
}

#[derive(Debug, Clone, Default, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformDischargeLedgerTelemetryV0 {
    pub lookup_count: u64,
    pub matched_lookup_count: u64,
    pub accepted_stamp_count: u64,
    pub blocked_lookup_count: u64,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformExecutionSummaryV0 {
    pub schema_version: &'static str,
    pub product: &'static str,
    pub input_byte_len: usize,
    pub output_byte_len: usize,
    pub requested_pass_ids: Vec<&'static str>,
    pub ordered_pass_ids: Vec<&'static str>,
    pub executed_pass_ids: Vec<&'static str>,
    pub planned_only_pass_ids: Vec<&'static str>,
    pub mutation_count: usize,
    pub provenance_preserved: bool,
    pub output_css: String,
    pub css_module_evaluation: Option<TransformModuleEvaluationV0>,
    pub css_import_inlines: Vec<TransformImportInlineV0>,
    pub css_module_composes_exports: Vec<TransformCssModuleComposesResolutionV0>,
    pub design_token_routes: Vec<TransformDesignTokenRouteV0>,
    pub semantic_removals: Vec<TransformSemanticRemovalV0>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub module_qualified_shake: Option<TransformModuleQualifiedShakeSummaryV0>,
    pub cascade_proof_obligations: TransformCascadeProofObligationReportV0,
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub winner_equality_obligations: Vec<TransformWinnerEqualityObligationV0>,
    pub provenance_derivation_forest: TransformProvenanceDerivationForestV0,
    pub structural_ir_transaction_telemetry: TransformStructuralIrTransactionTelemetryV0,
    pub semantic_preservation_telemetry: TransformSemanticPreservationTelemetryV0,
    pub discharge_ledger_telemetry: TransformDischargeLedgerTelemetryV0,
    pub strict_policy: TransformStrictPolicySummaryV0,
    pub closed_world_admission: TransformClosedWorldAdmissionSummaryV0,
    pub decisions: Vec<TransformDecision>,
    pub outcomes: Vec<TransformPassExecutionOutcomeV0>,
    pub pass_plan: TransformPassPlanV0,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformModuleQualifiedShakeSummaryV0 {
    pub module_instance: ModuleInstanceKeyV0,
    pub removed_count: usize,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(
    tag = "kind",
    rename_all = "camelCase",
    rename_all_fields = "camelCase"
)]
pub enum TransformModuleQualifiedExecutionErrorV0 {
    UnknownModuleInstance {
        module_instance: ModuleInstanceKeyV0,
    },
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformCascadeProofObligationReportV0 {
    pub schema_version: &'static str,
    pub product: &'static str,
    pub obligation_count: usize,
    pub accepted_count: usize,
    pub blocked_count: usize,
    pub checked_pass_ids: Vec<&'static str>,
    pub obligations: Vec<TransformCascadeProofObligationV0>,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformCascadeProofObligationV0 {
    pub pass_id: &'static str,
    pub proof_product: &'static str,
    pub accepted: bool,
    pub blocked_reason: Option<String>,
    pub provenance_preserved: bool,
    pub cascade_safe_witness: String,
    pub source_span_start: Option<usize>,
    pub source_span_end: Option<usize>,
    pub checked_obligations: Vec<&'static str>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub canonical_smt_input: Option<CanonicalSmtInputV0>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub discharge_ledger_lookup: Option<DischargeLedgerLookupV0>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub discharge_evidence: Option<TransformDischargeEvidenceV0>,
    pub proof_payload: Value,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformSemanticRemovalV0 {
    pub pass_id: &'static str,
    pub symbol_kind: &'static str,
    pub name: String,
    pub source_span_start: usize,
    pub source_span_end: usize,
    pub reason: &'static str,
    pub certainty: &'static str,
    pub derivation_steps: Vec<&'static str>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct TransformSemanticRemovalCandidate {
    pub(crate) symbol_kind: &'static str,
    pub(crate) name: String,
    pub(crate) source_span_start: usize,
    pub(crate) source_span_end: usize,
    pub(crate) reason: &'static str,
}

impl TransformSemanticRemovalCandidate {
    pub(crate) fn into_public(self, pass_id: &'static str) -> TransformSemanticRemovalV0 {
        TransformSemanticRemovalV0 {
            pass_id,
            symbol_kind: self.symbol_kind,
            name: self.name,
            source_span_start: self.source_span_start,
            source_span_end: self.source_span_end,
            reason: self.reason,
            certainty: "high",
            derivation_steps: vec![
                "closedStyleWorld",
                "reachableRootSetComputed",
                "symbolNotMarkedReachable",
                "sourceRangeRemoved",
            ],
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformIncrementalExecutionSummaryV0 {
    pub schema_version: &'static str,
    pub product: &'static str,
    pub incremental_engine: &'static str,
    pub query_model: &'static str,
    pub reuse_policy: &'static str,
    pub reused_previous_execution: bool,
    pub incremental_plan: IncrementalComputationPlanV0,
    pub next_snapshot: IncrementalSnapshotV0,
    pub execution: TransformExecutionSummaryV0,
    pub ready_surfaces: Vec<&'static str>,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformCascadeSafetyFuzzCaseV0 {
    pub seed: u64,
    pub pass_count: usize,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformCascadeSafetyFuzzResultV0 {
    pub seed: u64,
    pub pass_count: usize,
    pub requested_pass_ids: Vec<&'static str>,
    pub executed_pass_ids: Vec<&'static str>,
    pub output_byte_len: usize,
    pub output_token_count: usize,
    pub output_error_count: usize,
    pub provenance_node_count: usize,
    pub passed: bool,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformFuzzSeedReportV0 {
    pub schema_version: &'static str,
    pub product: &'static str,
    pub case_count: usize,
    pub passed_count: usize,
    pub failed_count: usize,
    pub results: Vec<TransformCascadeSafetyFuzzResultV0>,
}

#[derive(Debug, Clone, Default, PartialEq, Eq, Deserialize, Serialize)]
#[serde(default, rename_all = "camelCase")]
pub struct TransformExecutionContextV0 {
    pub drop_dark_mode_media_queries: bool,
    pub supports_target_capability: Option<SupportsTargetCapabilityV0>,
    pub vendor_prefix_policy: Option<TransformVendorPrefixPolicyV0>,
    pub reachable_class_names: Vec<String>,
    pub reachable_keyframe_names: Vec<String>,
    pub reachable_value_names: Vec<String>,
    pub reachable_custom_property_names: Vec<String>,
    pub scss_module_evaluation: Option<TransformModuleEvaluationV0>,
    pub less_module_evaluation: Option<TransformModuleEvaluationV0>,
    pub import_inlines: Vec<TransformImportInlineV0>,
    pub class_name_rewrites: Vec<TransformClassNameRewriteV0>,
    pub css_module_composes_resolutions: Vec<TransformCssModuleComposesResolutionV0>,
    pub css_module_value_resolutions: Vec<TransformCssModuleValueResolutionV0>,
    pub design_token_routes: Vec<TransformDesignTokenRouteV0>,
    /// Complete declarations outside the transformed stylesheet that may
    /// participate in the cascade. Absence keeps winner trust fail-closed.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cascade_environment: Option<TransformCascadeEnvironmentV0>,
}

#[derive(Debug, Clone, Default, PartialEq, Eq, Deserialize, Serialize)]
#[serde(default, rename_all = "camelCase")]
pub struct TransformCascadeEnvironmentV0 {
    /// Global source-order coordinate assigned to the first declaration in
    /// the transformed stylesheet.
    pub stylesheet_source_order_base: u32,
    pub declarations: Vec<TransformCascadeEnvironmentDeclarationV0>,
}

#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformCascadeEnvironmentDeclarationV0 {
    pub declaration_id: String,
    pub selector: String,
    pub property: String,
    pub value: String,
    pub origin: CascadeOriginV0,
    pub important: bool,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub layer_rank: Option<i32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub scope_proximity: Option<u32>,
    pub source_order: u32,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformVendorPrefixPolicyV0 {
    pub webkit: bool,
    pub moz: bool,
    pub ms: bool,
}

impl TransformVendorPrefixPolicyV0 {
    pub const fn none() -> Self {
        Self {
            webkit: false,
            moz: false,
            ms: false,
        }
    }

    pub const fn conservative() -> Self {
        Self {
            webkit: true,
            moz: true,
            ms: true,
        }
    }

    pub const fn is_empty(self) -> bool {
        !(self.webkit || self.moz || self.ms)
    }

    pub fn allows_prefix(self, prefixed_name: &str) -> bool {
        if prefixed_name.starts_with("-webkit-") {
            return self.webkit;
        }
        if prefixed_name.starts_with("-moz-") {
            return self.moz;
        }
        if prefixed_name.starts_with("-ms-") {
            return self.ms;
        }
        true
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformModuleEvaluationV0 {
    pub evaluator: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub product_output_source: Option<String>,
    pub evaluated_css: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub native_edit_output: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub native_replacements: Vec<TransformModuleEvaluationNativeReplacementV0>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub native_edits: Vec<TransformModuleEvaluationNativeEditV0>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub oracle: Option<TransformModuleEvaluationOracleV0>,
}

impl TransformModuleEvaluationV0 {
    pub fn declares_native_product_output(&self) -> bool {
        self.product_output_source
            .as_deref()
            .is_some_and(|source| source == "nativeEditOutput")
    }

    // HONESTY NOTE: `divergence_count == 0` is a value-WELL-FORMEDNESS self-check on the
    // native-edit output (every native-emitted declaration value canonically round-trips), NOT a
    // differential against an external SCSS/Less compiler. So this gate means "native output is
    // self-consistent and value-preserving", NOT "native agrees with dart-sass/lessc". External
    // agreement is witnessed separately by the `externalDifferential` gate
    // (`scripts/check-rust-omena-diff-test-external-corpus-differential.ts`, pinned dart-sass/lessc) over
    // its covered fixture slices only; this self-check stays the cheap inner oracle for every
    // evaluated candidate, and the production rail remains a self-comparison.
    pub fn oracle_allows_native_product_output(&self) -> bool {
        self.oracle.as_ref().is_some_and(|oracle| {
            oracle.mode == "oracleOnly"
                && oracle.divergence_count == 0
                && oracle.all_legacy_declaration_values_preserved
        })
    }

    pub fn may_consume_native_product_output(&self) -> bool {
        self.declares_native_product_output() && self.oracle_allows_native_product_output()
    }

    // NOTE: the "retained oracle" here is the retained product-output string (`evaluated_css`),
    // which in the production rail is itself native-derived — so this is a byte-equality
    // self-consistency check between two native-derived strings, not a comparison to an
    // independent external evaluator.
    pub fn native_output_matches_retained_oracle(&self, native_output: &str) -> bool {
        self.oracle
            .as_ref()
            .is_some_and(|_| native_output == self.evaluated_css)
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformModuleEvaluationNativeReplacementV0 {
    pub name: String,
    pub start: usize,
    pub end: usize,
    pub text: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub rendered_value: Option<String>,
    pub abstract_value: AbstractCssValueV0,
    pub abstract_value_kind: String,
}

#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformModuleEvaluationNativeEditV0 {
    pub start: usize,
    pub end: usize,
    pub replacement: String,
    pub edit_kind: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub abstract_value: Option<AbstractCssValueV0>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub abstract_value_kind: Option<String>,
}

#[derive(Debug, Clone, Default, PartialEq, Eq, Deserialize, Serialize)]
#[serde(default, rename_all = "camelCase")]
pub struct TransformModuleEvaluationOracleV0 {
    pub mode: String,
    pub product_output_source: String,
    pub legacy_declaration_value_count: usize,
    pub abstract_value_count: usize,
    pub exact_value_count: usize,
    pub raw_value_count: usize,
    pub bottom_value_count: usize,
    pub top_value_count: usize,
    pub divergence_count: usize,
    pub all_legacy_declaration_values_preserved: bool,
    pub native_replacement_count: usize,
    pub native_replacement_legacy_reflection_count: usize,
    pub native_replacement_legacy_unreflected_count: usize,
    pub native_value_reference_count: usize,
    pub native_resolved_value_count: usize,
    pub native_raw_value_count: usize,
    pub native_top_value_count: usize,
    pub native_cycle_count: usize,
    pub native_fuel_exhausted_count: usize,
    pub native_unresolved_reference_count: usize,
    pub native_unsupported_dynamic_count: usize,
}

#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformImportInlineV0 {
    pub import_source: String,
    pub replacement_css: String,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TransformLessInlineLiteralPlaceholderV0 {
    pub placeholder: String,
    pub literal_css: String,
}

#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformClassNameRewriteV0 {
    pub original_name: String,
    pub rewritten_name: String,
}

/// Module-qualified CSS Modules rewrite input.
///
/// Consumers that need different rewrites for identical class spellings in
/// different modules use this carrier instead of flattening those rewrites
/// into [`TransformExecutionContextV0::class_name_rewrites`]. The module key is
/// compared before the canonical class-name key. Under an equal compound key,
/// the consumer-supplied record is the first witness and wins independently of
/// raw spelling or later presentation sorting.
#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct TransformModuleCssModuleContextV0 {
    pub module_instance: ModuleInstanceKeyV0,
    pub class_name_rewrites: Vec<TransformClassNameRewriteV0>,
    pub composes_resolutions: Vec<TransformCssModuleComposesResolutionV0>,
}

impl TransformModuleCssModuleContextV0 {
    pub fn new(module_instance: ModuleInstanceKeyV0) -> Self {
        Self {
            module_instance,
            class_name_rewrites: Vec::new(),
            composes_resolutions: Vec::new(),
        }
    }

    pub fn with_class_name_rewrites(
        mut self,
        class_name_rewrites: Vec<TransformClassNameRewriteV0>,
    ) -> Self {
        self.class_name_rewrites = class_name_rewrites;
        self
    }

    pub fn with_composes_resolutions(
        mut self,
        composes_resolutions: Vec<TransformCssModuleComposesResolutionV0>,
    ) -> Self {
        self.composes_resolutions = composes_resolutions;
        self
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformCssModuleComposesResolutionV0 {
    pub local_class_name: String,
    pub exported_class_names: Vec<String>,
}

#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformCssModuleValueResolutionV0 {
    pub local_name: String,
    pub resolved_value: String,
}

#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TransformDesignTokenRouteV0 {
    pub token_name: String,
    pub routed_value: String,
}

#[cfg(test)]
mod evidence_graph_tests {
    use super::*;
    use omena_cascade::{
        CascadeKey, CascadeValue, LayerOrdinal, OpenWorldTieEvidence, Specificity,
        cascade_property, normalized_layer_rank,
    };

    fn winner_equality_test_declaration(
        id: &str,
        value: &str,
        source_order: u32,
    ) -> CascadeDeclaration {
        CascadeDeclaration {
            id: id.to_string(),
            property: "color".to_string(),
            value: CascadeValue::Literal(value.to_string()),
            key: CascadeKey::new(
                CascadeLevel::AuthorNormal,
                normalized_layer_rank(false, LayerOrdinal::new(0)),
                0,
                Specificity::new(0, 1, 0),
                source_order,
            ),
            open_world_tie_evidence: OpenWorldTieEvidence::NONE,
            specificity_exactness: omena_cascade::SpecificityExactnessV0::Exact,
        }
    }

    #[test]
    fn winner_equality_witness_consumes_the_cascade_authority_outcome() -> Result<(), String> {
        let outcome = cascade_property(
            [
                winner_equality_test_declaration("earlier", "red", 0),
                winner_equality_test_declaration("later", "blue", 1),
            ],
            "color",
        );
        let witness = TransformWinnerEqualityWitnessV0::from_cascade_outcome(&outcome)
            .ok_or_else(|| "the closed cascade should have a definite winner".to_string())?;

        assert_eq!(witness.winner.id, "later");
        assert_eq!(
            witness.proof,
            CascadeProof::from_declaration(&witness.winner)
        );
        Ok(())
    }

    #[test]
    fn winner_equality_witness_stays_absent_for_non_definite_outcomes() {
        assert!(
            TransformWinnerEqualityWitnessV0::from_cascade_outcome(&CascadeOutcome::Top).is_none()
        );
        assert!(
            TransformWinnerEqualityWitnessV0::from_cascade_outcome(&CascadeOutcome::Inherit)
                .is_none()
        );
    }

    #[test]
    fn winner_equality_trust_records_name_covered_axes() -> Result<(), serde_json::Error> {
        let tier = TransformSemanticGuaranteeTierV0::WinnerEqualityObserved {
            axes: vec![
                TransformWinnerEqualityAxisV0::CascadeLevel,
                TransformWinnerEqualityAxisV0::LayerRank,
            ],
        };

        assert_eq!(
            serde_json::to_value(tier)?,
            serde_json::json!({
                "kind": "winnerEqualityObserved",
                "axes": ["cascadeLevel", "layerRank"]
            })
        );
        Ok(())
    }

    #[test]
    fn winner_equality_absence_names_the_undriven_level() -> Result<(), serde_json::Error> {
        let tier = TransformSemanticGuaranteeTierV0::Absent {
            reasons: vec![TransformWinnerEqualityAbsenceV0 {
                axis: TransformWinnerEqualityAxisV0::CascadeLevel,
                reason: TransformWinnerEqualityAbsenceReasonV0::DriverUnavailable {
                    level: Some(CascadeLevel::Animation),
                },
            }],
        };

        assert_eq!(
            serde_json::to_value(tier)?,
            serde_json::json!({
                "kind": "absent",
                "reasons": [{
                    "axis": "cascadeLevel",
                    "reason": {
                        "kind": "driverUnavailable",
                        "level": "animation"
                    }
                }]
            })
        );
        Ok(())
    }

    #[test]
    fn transform_outcome_evidence_graph_preserves_public_shape() -> Result<(), serde_json::Error> {
        let outcome = TransformPassExecutionOutcomeV0 {
            pass_id: "number-compression",
            status: TransformPassRuntimeStatus::Applied,
            input_byte_len: 32,
            output_byte_len: 28,
            mutation_count: 1,
            provenance_preserved: true,
            detail: "fixture pass",
        };

        let before = serde_json::to_value(&outcome)?;
        let node = outcome.evidence_node_seed();
        let graph = build_evidence_graph_from_edges_v0([node], [outcome.evidence_demand_edge()])
            .map_err(|_| serde::ser::Error::custom("outcome edge must target its node"))?;
        let after = serde_json::to_value(&outcome)?;

        assert_eq!(before, after);
        assert_eq!(graph.nodes.len(), 1);
        assert_eq!(graph.nodes[0].key.input_identity, "number-compression");
        assert_eq!(graph.nodes[0].guarantee, GuaranteeKindV0::Floor);
        assert!(
            graph.nodes[0]
                .provenance
                .iter()
                .any(|item| item == "mutationCount:1")
        );
        Ok(())
    }

    #[test]
    fn transform_derivation_forest_evidence_graph_preserves_public_shape()
    -> Result<(), serde_json::Error> {
        let forest = TransformProvenanceDerivationForestV0 {
            schema_version: "0",
            product: "omena-transform-passes.provenance-derivation-forest",
            root_count: 1,
            node_count: 1,
            nodes: vec![TransformProvenanceDerivationNodeV0 {
                node_index: 0,
                parent_index: None,
                pass_id: "comment-strip",
                status: TransformPassRuntimeStatus::Applied,
                input_byte_len: 48,
                output_byte_len: 36,
                source_span_start: 0,
                source_span_end: 12,
                generated_span_start: 0,
                generated_span_end: 0,
                mutation_spans: Vec::new(),
                mutation_count: 1,
                provenance_preserved: true,
                detail: "fixture derivation",
            }],
        };

        let before = serde_json::to_value(&forest)?;
        let graph = forest
            .evidence_graph()
            .map_err(|_| serde::ser::Error::custom("forest edge must target its node"))?;
        let after = serde_json::to_value(&forest)?;

        assert_eq!(before, after);
        assert_eq!(graph.nodes.len(), 1);
        assert_eq!(graph.nodes[0].key.input_identity, "comment-strip#0");
        assert_eq!(graph.nodes[0].guarantee, GuaranteeKindV0::Floor);
        Ok(())
    }
}