-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtransformations.json
More file actions
2964 lines (2964 loc) · 82.9 KB
/
Copy pathtransformations.json
File metadata and controls
2964 lines (2964 loc) · 82.9 KB
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
[
{
"id": "xf.scores",
"name": "scores",
"kind": "transformation",
"cc_id": "1.7 / 2.4.2",
"category": "Structural ops",
"input": "attester+subject+dimension+score",
"output": "scores Attestation row",
"layer": "fabric",
"part": "Part I",
"description": "The one workhorse; a participatory act that constitutes standing"
},
{
"id": "xf.delegates_to",
"name": "delegates_to",
"kind": "transformation",
"cc_id": "2.4.1.2",
"category": "Structural ops",
"input": "A + B + scope+validity",
"output": "delegation edge A->B",
"layer": "fabric",
"part": "Part II",
"description": "Authorize B in bounded scope; also expresses authority-grounding"
},
{
"id": "xf.supersedes",
"name": "supersedes",
"kind": "transformation",
"cc_id": "2.4.1",
"category": "Structural ops",
"input": "new attestation + prior ref",
"output": "superseding edge",
"layer": "fabric",
"part": "Part II",
"description": "Replace a prior row by same attester (development, not falsity)"
},
{
"id": "xf.withdraws",
"name": "withdraws",
"kind": "transformation",
"cc_id": "2.4.1.1",
"category": "Structural ops",
"input": "attester + own prior",
"output": "withdrawal edge",
"layer": "fabric",
"part": "Part II",
"description": "Retract without asserting falsity (consent-revocation path)"
},
{
"id": "xf.recants",
"name": "recants",
"kind": "transformation",
"cc_id": "2.4.1.3",
"category": "Structural ops",
"input": "attester + prior claim",
"output": "recantation edge",
"layer": "fabric",
"part": "Part II",
"description": "Admit a prior attestation was false at issuance"
},
{
"id": "xf.four_test_admission_gate",
"name": "four-test admission gate (T1-T4)",
"kind": "transformation",
"cc_id": "1.2 / 3.4 / 4.5.6",
"category": "Admission & Promotion",
"input": "candidate prefix",
"output": "admit|reject",
"layer": "fabric",
"part": "Part I",
"description": "Mechanical mechanism-not-quality gate at federation_attestations"
},
{
"id": "xf.prefix_rename",
"name": "prefix rename (T2 remediation)",
"kind": "transformation",
"cc_id": "1.2",
"category": "Admission & Promotion",
"input": "quality-named prefix",
"output": "mechanism prefix",
"layer": "fabric",
"part": "Part I",
"description": "emergent_deception -> correlated_action"
},
{
"id": "xf.substrate_admission_gate",
"name": "substrate admission gate",
"kind": "transformation",
"cc_id": "2.3.1",
"category": "Admission & Promotion",
"input": "Contribution",
"output": "admit|reject(+hard_case)",
"layer": "fabric",
"part": "Part II",
"description": "Reject mis-shaped envelopes (subject missing, family/community id missing, over-precision)"
},
{
"id": "xf.reserved_prefix_checks",
"name": "reserved-prefix checks (CCS admit / CCC re-check / CCP emit)",
"kind": "transformation",
"cc_id": "3.4.7",
"category": "Admission & Promotion",
"input": "attestation + identity_type",
"output": "admit|reject",
"layer": "fabric",
"part": "Part III",
"description": "Trust does not propagate; consumer independently re-checks every emission"
},
{
"id": "xf.identity_type_set_membership_eval",
"name": "identity_type set-membership eval",
"kind": "transformation",
"cc_id": "3.4.7.1 / 4.5.8",
"category": "Admission & Promotion",
"input": "key role-set + required role",
"output": "pass|fail",
"layer": "fabric",
"part": "Part III",
"description": "Reserved gates evaluated as X in identity_type"
},
{
"id": "xf.capacity_score_self_emission_rejection",
"name": "capacity-score self-emission rejection",
"kind": "transformation",
"cc_id": "3.4.5",
"category": "Admission & Promotion",
"input": "capacity:* scores",
"output": "reject if self",
"layer": "fabric",
"part": "Part III",
"description": "attesting==attested forbidden (anti-Goodhart)"
},
{
"id": "xf.withdraws_admission_gate",
"name": "withdraws admission gate (4 paths)",
"kind": "transformation",
"cc_id": "2.4.1.1",
"category": "Admission & Promotion",
"input": "withdraws + issuer + target.subject_key_ids",
"output": "admit|reject+audit",
"layer": "fabric",
"part": "Part II",
"description": "self / subject-key / canonical-hash proxy / delegate"
},
{
"id": "xf.delegates_to_proxy_revocation",
"name": "rule-(3) delegates_to proxy revocation",
"kind": "transformation",
"cc_id": "2.3.2.2",
"category": "Admission & Promotion",
"input": "canonical-hash + chain",
"output": "admitted withdraws",
"layer": "fabric",
"part": "Part II",
"description": "Mediate revocation for an un-enrolled subject"
},
{
"id": "xf.canonical_binding",
"name": "canonical_binding",
"kind": "transformation",
"cc_id": "2.3.2.2",
"category": "Admission & Promotion",
"input": "enrolling key+proof",
"output": "binding",
"layer": "fabric",
"part": "Part II",
"description": "Retroactively bind a key to a canonical-hash"
},
{
"id": "xf.membership_change_ceremony",
"name": "membership-change ceremony",
"kind": "transformation",
"cc_id": "3.3.4 / 4.4.3.4.2",
"category": "Admission & Promotion",
"input": "record proposal + sigs",
"output": "admitted roster|violation",
"layer": "fabric",
"part": "Part III",
"description": "Supersede gated by current consensus_protocol"
},
{
"id": "xf.consensus_protocol_amendment",
"name": "consensus-protocol amendment",
"kind": "transformation",
"cc_id": "3.3.4 / 4.4.3.4.2",
"category": "Admission & Promotion",
"input": "record proposal + sigs",
"output": "admitted roster|violation",
"layer": "fabric",
"part": "Part III",
"description": "Entrenchment locks the door"
},
{
"id": "xf.location_proof_admission",
"name": "location_proof admission (containment)",
"kind": "transformation",
"cc_id": "3.2 / 2.6.6.1",
"category": "Admission & Promotion",
"input": "proof + constraint",
"output": "admit|reject+hard_case",
"layer": "fabric",
"part": "Part III",
"description": "Cell contained-in geographic_constraint"
},
{
"id": "xf.rough_only_enforcement",
"name": "rough-only enforcement",
"kind": "transformation",
"cc_id": "3.2 / 2.6.6.1",
"category": "Admission & Promotion",
"input": "proof + constraint",
"output": "admit|reject+hard_case",
"layer": "fabric",
"part": "Part III",
"description": "reject res >7"
},
{
"id": "xf.founder_quorum_admission",
"name": "founder-quorum admission",
"kind": "transformation",
"cc_id": "3.2 / 3.4.12",
"category": "Admission & Promotion",
"input": "admission proposal",
"output": "admit|reject",
"layer": "fabric",
"part": "Part III",
"description": "Trust-root over founders"
},
{
"id": "xf.steward_binding_admission",
"name": "steward-binding admission",
"kind": "transformation",
"cc_id": "3.2 / 3.4.12",
"category": "Admission & Promotion",
"input": "admission proposal",
"output": "admit|reject",
"layer": "fabric",
"part": "Part III",
"description": "live delegates_to to a user root"
},
{
"id": "xf.minor_admission",
"name": "minor admission",
"kind": "transformation",
"cc_id": "3.2 / 3.4.12",
"category": "Admission & Promotion",
"input": "admission proposal",
"output": "admit|reject",
"layer": "fabric",
"part": "Part III",
"description": "child-safety gated admission"
},
{
"id": "xf.adult_incapacity_admission",
"name": "adult-incapacity admission",
"kind": "transformation",
"cc_id": "3.2 / 3.4.12",
"category": "Admission & Promotion",
"input": "admission proposal",
"output": "admit|reject",
"layer": "fabric",
"part": "Part III",
"description": "attested-incapacity aperture (fails to liberty)"
},
{
"id": "xf.partner_record_m_of_n_admission",
"name": "partner_record M-of-N admission",
"kind": "transformation",
"cc_id": "3.3.9",
"category": "Admission & Promotion",
"input": "operational envelope",
"output": "admit|reject",
"layer": "fabric",
"part": "Part III",
"description": "M sigs over identical JCS"
},
{
"id": "xf.org_role_gated_admission",
"name": "org role-gated admission",
"kind": "transformation",
"cc_id": "3.3.9",
"category": "Admission & Promotion",
"input": "operational envelope",
"output": "admit|reject",
"layer": "fabric",
"part": "Part III",
"description": "role-chain resolver"
},
{
"id": "xf.payment_data_rejection",
"name": "payment-data rejection",
"kind": "transformation",
"cc_id": "3.3.9",
"category": "Admission & Promotion",
"input": "operational envelope",
"output": "admit|reject",
"layer": "fabric",
"part": "Part III",
"description": "fail-secure on payment identifiers"
},
{
"id": "xf.subject_bearing_admission_check",
"name": "subject-bearing admission check",
"kind": "transformation",
"cc_id": "4.5.2.1",
"category": "Admission & Promotion",
"input": "subject-pattern Contribution",
"output": "admit|hard_case",
"layer": "fabric",
"part": "Part IV",
"description": "Reject when a subject-naming dimension lacks subject_key_ids"
},
{
"id": "xf.delegation_depth_cap",
"name": "delegation-depth cap",
"kind": "transformation",
"cc_id": "4.1.1 / 4.5.5",
"category": "Admission & Promotion",
"input": "delegates_to chain",
"output": "bounded-trust|reject",
"layer": "fabric",
"part": "Part IV",
"description": "<=5 hops (UCAN-style)"
},
{
"id": "xf.delegation_cycle_detection",
"name": "delegation cycle detection",
"kind": "transformation",
"cc_id": "4.1.1 / 4.5.5",
"category": "Admission & Promotion",
"input": "delegates_to chain",
"output": "bounded-trust|reject",
"layer": "fabric",
"part": "Part IV",
"description": "reject cycles"
},
{
"id": "xf.delegation_attenuation",
"name": "deputization / attenuation",
"kind": "transformation",
"cc_id": "4.1.1 / 4.5.5",
"category": "Admission & Promotion",
"input": "delegates_to chain",
"output": "bounded-trust|reject",
"layer": "fabric",
"part": "Part IV",
"description": "child.scope subset-of parent.scope"
},
{
"id": "xf.levenshtein_collision_guard",
"name": "Levenshtein collision guard",
"kind": "transformation",
"cc_id": "4.5.1.3",
"category": "Admission & Promotion",
"input": "new vocab",
"output": "admit|409 advisory",
"layer": "fabric",
"part": "Part IV",
"description": "Flag {kind}/{axis} within Levenshtein <=2 (first-registered-wins)"
},
{
"id": "xf.pqc_mandatory_admission_gate",
"name": "PQC-mandatory admission gate",
"kind": "transformation",
"cc_id": "5.3.2.4.3.1",
"category": "Admission & Promotion",
"input": "federation-tier Contribution",
"output": "accept iff Ed25519+ML-DSA-65",
"layer": "fabric",
"part": "Part V",
"description": "Always-on; reject classical-only"
},
{
"id": "xf.ingest_gate",
"name": "ingest gate",
"kind": "transformation",
"cc_id": "5.3.2.4.3.1",
"category": "Admission & Promotion",
"input": "federation-tier Contribution",
"output": "accept iff Ed25519+ML-DSA-65",
"layer": "fabric",
"part": "Part V",
"description": "durable rows need ML-DSA half"
},
{
"id": "xf.trust_discovery_admission_gate_n1",
"name": "admission gate N1 (trust discovery)",
"kind": "transformation",
"cc_id": "6.1.8",
"category": "Admission & Promotion",
"input": "SignedClaim + caller chain",
"output": "admitted standing|reject",
"layer": "fabric",
"part": "Part VI",
"description": "Steward-binding + consensus_protocol at destination"
},
{
"id": "xf.chain_budget_n2",
"name": "chain-budget N2 (trust discovery)",
"kind": "transformation",
"cc_id": "6.1.8",
"category": "Admission & Promotion",
"input": "SignedClaim + caller chain",
"output": "admitted standing|reject",
"layer": "fabric",
"part": "Part VI",
"description": "transitive chain != founder-quorum"
},
{
"id": "xf.promotion_via_supersedes",
"name": "promotion via supersedes (local->federation, scope-widening)",
"kind": "transformation",
"cc_id": "4.4.3.3.1 / 5.3.2.4.2",
"category": "Admission & Promotion",
"input": "prior attestation",
"output": "wider-scope row",
"layer": "fabric",
"part": "Part IV",
"description": "Widen cohort_scope reusing content_sha256; promotion IS federation-emit"
},
{
"id": "xf.operational_data_merge",
"name": "operational-data merge (stable-id grouping)",
"kind": "transformation",
"cc_id": "3.3.9",
"category": "Admission & Promotion",
"input": "operational envelopes",
"output": "converged state",
"layer": "fabric",
"part": "Part III",
"description": "Group by business id; forward-only withdraws; LWW; anti-rollback on revision"
},
{
"id": "xf.time_skew_freshness_check",
"name": "time-skew / freshness check",
"kind": "transformation",
"cc_id": "2.6.7",
"category": "Admission & Promotion",
"input": "timestamps + clocks",
"output": "accept|reject",
"layer": "fabric",
"part": "Part II",
"description": "Reject signed_at >5min future; bound cosigner skew (fail-secure)"
},
{
"id": "xf.concurrent_write_precedence",
"name": "concurrent-write precedence",
"kind": "transformation",
"cc_id": "3.5.1",
"category": "Admission & Promotion",
"input": "racing composers",
"output": "deterministic verdict",
"layer": "fabric",
"part": "Part III",
"description": "recants>withdraws>supersedes, then signed_at, then attestation_id"
},
{
"id": "xf.idempotent_dedup",
"name": "idempotent dedup",
"kind": "transformation",
"cc_id": "3.5.1",
"category": "Admission & Promotion",
"input": "racing composers",
"output": "deterministic verdict",
"layer": "fabric",
"part": "Part III",
"description": "duplicate composer dedup"
},
{
"id": "xf.policy_a_direct_trust",
"name": "Policy A - direct trust",
"kind": "transformation",
"cc_id": "4.4.3.8",
"category": "Composition A-M",
"input": "attestations + pinned set",
"output": "verdict",
"layer": "fabric",
"part": "Part IV",
"description": "mean(score x confidence) over trusted attesters"
},
{
"id": "xf.policy_b_one_hop_transitive",
"name": "Policy B - one-hop transitive",
"kind": "transformation",
"cc_id": "4.4.3.12",
"category": "Composition A-M",
"input": "attestations + vouch edges",
"output": "verdict",
"layer": "fabric",
"part": "Part IV",
"description": "Trust an attester vouched for by the pinned set"
},
{
"id": "xf.policy_c_weighted_graph",
"name": "Policy C - weighted graph (EigenTrust)",
"kind": "transformation",
"cc_id": "4.4.3.13",
"category": "Composition A-M",
"input": "attestation graph",
"output": "verdict",
"layer": "fabric",
"part": "Part IV",
"description": "Transitive propagation weighted by bootstrap distance, per-hop decay"
},
{
"id": "xf.policy_d_lexical_vulnerability_priority",
"name": "Policy D - lexical-vulnerability-priority",
"kind": "transformation",
"cc_id": "4.4.3.9",
"category": "Composition A-M",
"input": "conflicting attestations",
"output": "tie-break",
"layer": "fabric",
"part": "Part IV",
"description": "Weight toward the more-affected (smaller) cohort"
},
{
"id": "xf.policy_e_locality_scaled_quorum",
"name": "Policy E - locality-scaled quorum (+sub-quorum fallback)",
"kind": "transformation",
"cc_id": "4.4.3.1",
"category": "Composition A-M",
"input": "locality:decision:{scale}",
"output": "quorum size+min_pool",
"layer": "fabric",
"part": "Part IV",
"description": "Recusal feasible iff cell_pool >= quorum x2; else scale-down/escalate/defer"
},
{
"id": "xf.policy_f_agent_files_trust",
"name": "Policy F - agent_files trust",
"kind": "transformation",
"cc_id": "4.4.3.7",
"category": "Composition A-M",
"input": "agent_files:*",
"output": "trust verdict",
"layer": "fabric",
"part": "Part IV",
"description": "steward-canonical / open / vote-then-trust; canonical binds at install"
},
{
"id": "xf.policy_g_trust_fresh_lighthouse",
"name": "Policy G - Trust-Fresh / Lighthouse",
"kind": "transformation",
"cc_id": "4.4.3.11",
"category": "Composition A-M",
"input": "freshness+attest+verify",
"output": "fresh-verified",
"layer": "fabric",
"part": "Part IV",
"description": "cert_validity + transparency_log:inclusion + (registry OR license)"
},
{
"id": "xf.policy_h_tiered_scope",
"name": "Policy H - tiered-scope composition",
"kind": "transformation",
"cc_id": "4.4.3.3",
"category": "Composition A-M",
"input": "attestations + cohort_scope",
"output": "feed verdict",
"layer": "fabric",
"part": "Part IV",
"description": "local/community/global feeds with tiered weighting"
},
{
"id": "xf.policy_i_attestation_ladder",
"name": "Policy I - attestation-ladder composition",
"kind": "transformation",
"cc_id": "4.4.3.6",
"category": "Composition A-M",
"input": "attestation:{mechanism}",
"output": "ladder UI",
"layer": "fabric",
"part": "Part IV",
"description": "Map mechanism prefixes to L1-L5; wire stays mechanism-only"
},
{
"id": "xf.policy_j_trusted_publisher",
"name": "Policy J - trusted-publisher composition",
"kind": "transformation",
"cc_id": "4.4.3.10",
"category": "Composition A-M",
"input": "external_content + distributor chain",
"output": "Allow/Block",
"layer": "fabric",
"part": "Part IV",
"description": "content_class + content_rating + age_assurance; canonical beats vote"
},
{
"id": "xf.policy_k_effective_consent",
"name": "Policy K - effective consent resolution",
"kind": "transformation",
"cc_id": "4.4.3.5.5",
"category": "Composition A-M",
"input": "target+subject+consent",
"output": "granted/revoked/expired/unspecified",
"layer": "fabric",
"part": "Part IV",
"description": "Walk latest non-superseded consent gated by valid_until + proxy chain"
},
{
"id": "xf.policy_l_self_family_membership",
"name": "Policy L - self/family membership composition",
"kind": "transformation",
"cc_id": "4.4.3.4",
"category": "Composition A-M",
"input": "occurrence/family Contributions",
"output": "member set + DEK-wrap targets",
"layer": "fabric",
"part": "Part IV",
"description": "Resolve who receives a key_grant"
},
{
"id": "xf.policy_m_community_membership",
"name": "Policy M - community membership composition",
"kind": "transformation",
"cc_id": "4.4.3.2",
"category": "Composition A-M",
"input": "community Contributions",
"output": "member set + visibility gate",
"layer": "fabric",
"part": "Part IV",
"description": "Gate cohort_scope:community + DEK cascade"
},
{
"id": "xf.aggregate_by_polarity",
"name": "aggregate-by-polarity",
"kind": "transformation",
"cc_id": "4.4.2",
"category": "Composition A-M",
"input": "attestations",
"output": "verdict",
"layer": "fabric",
"part": "Part IV",
"description": "signed->mean, boolean->min, positive->max, -1->min, enum->most-recent, detector->median"
},
{
"id": "xf.verdict_composition_consumer",
"name": "verdict composition (consumer, 8 axes) + weighting + source-weighting",
"kind": "transformation",
"cc_id": "2.5 / 4.4.4",
"category": "Composition A-M",
"input": "primitive attestations",
"output": "verdict",
"layer": "fabric",
"part": "Part II",
"description": "Weight by epistemic_mode/witness_relation/stake/oversight/source; wire prescribes no verdict"
},
{
"id": "xf.multi_subject_revocation",
"name": "multi-subject revocation (any-subject-binding)",
"kind": "transformation",
"cc_id": "4.4.3.5.4",
"category": "Composition A-M",
"input": "withdraws from any subject",
"output": "eviction for all",
"layer": "fabric",
"part": "Part IV",
"description": "OR over per-subject revocation state"
},
{
"id": "xf.event_lifecycle_composition",
"name": "event lifecycle composition",
"kind": "transformation",
"cc_id": "3.3.8",
"category": "Composition A-M",
"input": "latest emission + primitives",
"output": "state",
"layer": "fabric",
"part": "Part III",
"description": "open->cancelled/completed"
},
{
"id": "xf.consensus_mechanics_composition",
"name": "consensus mechanics composition",
"kind": "transformation",
"cc_id": "3.1.9.3",
"category": "Composition A-M",
"input": "latest emission + primitives",
"output": "state",
"layer": "fabric",
"part": "Part III",
"description": "vote->aggregate->truth_grounding"
},
{
"id": "xf.realtime_group_composition",
"name": "realtime group composition",
"kind": "transformation",
"cc_id": "5.3.3.2",
"category": "Composition A-M",
"input": "latest emission + primitives",
"output": "state",
"layer": "fabric",
"part": "Part V",
"description": "13th path = full realtime collab, zero new wire"
},
{
"id": "xf.envelope_reach_composition",
"name": "Envelope-reach composition",
"kind": "transformation",
"cc_id": "8.1.4",
"category": "Composition A-M",
"input": "story concept",
"output": "composition",
"layer": "fabric",
"part": "Part VIII",
"description": "Express un-named concepts via existing fields"
},
{
"id": "xf.flourishing_aggregation",
"name": "Flourishing aggregation",
"kind": "transformation",
"cc_id": "8.8.1",
"category": "Composition A-M",
"input": "per-axis metrics",
"output": "vector",
"layer": "fabric",
"part": "Part VIII",
"description": "Combine while preserving full vector"
},
{
"id": "xf.merge_policy_dispatch",
"name": "merge policy dispatch",
"kind": "transformation",
"cc_id": "5.3.2.3",
"category": "Merge",
"input": "subject_kind declaration + conflicts",
"output": "merged winner",
"layer": "fabric",
"part": "Part V",
"description": "Reads declared intent, never invents"
},
{
"id": "xf.lww_skew_bounded_merge",
"name": "lww_skew_bounded merge",
"kind": "transformation",
"cc_id": "5.3.2.3",
"category": "Merge",
"input": "conflicting org/org_membership",
"output": "LWW winner",
"layer": "fabric",
"part": "Part V",
"description": "Latest asserted_at, tie smallest id; forward-only withdraws"
},
{
"id": "xf.monotonic_quorum_merge",
"name": "monotonic_quorum merge + MergeBallot",
"kind": "transformation",
"cc_id": "5.3.2.3",
"category": "Merge",
"input": "revisioned partner/revocation + ballots",
"output": "most-restrictive",
"layer": "fabric",
"part": "Part V",
"description": "Anti-rollback then quorum_weight>time ordering (revoked>suspended>active)"
},
{
"id": "xf.content_addressed_idempotent_admission",
"name": "content-addressed idempotent admission",
"kind": "transformation",
"cc_id": "5.3.2.3",
"category": "Merge",
"input": "writes",
"output": "deduped admission",
"layer": "fabric",
"part": "Part V",
"description": "Same content->one envelope_hash"
},
{
"id": "xf.skew_bounded_rejection",
"name": "skew-bounded rejection",
"kind": "transformation",
"cc_id": "5.3.2.3",
"category": "Merge",
"input": "writes",
"output": "reject",
"layer": "fabric",
"part": "Part V",
"description": "reject future-dated (CLOCK_SKEW)"
},
{
"id": "xf.compute_merkle_root",
"name": "compute_merkle_root",
"kind": "transformation",
"cc_id": "6.1.1",
"category": "Merge",
"input": "leaf bytes",
"output": "32-byte root",
"layer": "fabric",
"part": "Part VI",
"description": "The one federation Merkle scheme (lexicographic, odd-dup, no RFC-6962 prefix)"
},
{
"id": "xf.compare_witnesses",
"name": "compare_witnesses + reconciliation",
"kind": "transformation",
"cc_id": "6.1.1",
"category": "Merge",
"input": "two verified witnesses",
"output": "Convergent/Divergent/EpochBehind/equivocation",
"layer": "fabric",
"part": "Part VI",
"description": "Observation/validation; never silently reconcile equivocation"
},
{
"id": "xf.epoch_anti_rollback",
"name": "epoch anti-rollback",
"kind": "transformation",
"cc_id": "6.1.1",
"category": "Merge",
"input": "two verified witnesses",
"output": "verdict",
"layer": "fabric",
"part": "Part VI",
"description": "anti-rollback on epoch_id"
},
{
"id": "xf.quorum_merge",
"name": "quorum-merge (triggered)",
"kind": "transformation",
"cc_id": "6.1.1 / 5.3.2.3",
"category": "Merge",
"input": "Divergence on anti-rollback kind",
"output": "monotonic revision",
"layer": "fabric",
"part": "Part VI",
"description": "The witness sees, the quorum-merge RULES (prevents resurrecting a revoked key)"
},
{
"id": "xf.two_quorums",
"name": "two quorums",
"kind": "transformation",
"cc_id": "5.3.2.3",
"category": "Merge",
"layer": "fabric",
"part": "Part V",
"description": "M-of-N signature admit (Verify) vs quorum_weight merge ordering (substrate)"
},
{
"id": "xf.epoch_rekey",
"name": "epoch rekey (membership change)",
"kind": "transformation",
"cc_id": "5.1",
"category": "Transport & Crypto",
"input": "member change + roster + old DEK",
"output": "new epoch DEK + cascade",
"layer": "fabric",
"part": "Part V",
"description": "Forward-secrecy on removal"
},
{
"id": "xf.removal_coalescing",
"name": "removal coalescing",
"kind": "transformation",
"cc_id": "5.1",
"category": "Transport & Crypto",
"input": "member change + roster",
"output": "batched rekey",
"layer": "fabric",
"part": "Part V",
"description": "Batch removals in window T (rate <=1/T)"
},
{
"id": "xf.key_grant_cascade",
"name": "key_grant cascade (Policy-L)",
"kind": "transformation",
"cc_id": "5.1 / 5.2",
"category": "Transport & Crypto",
"input": "roster + epoch key",
"output": "per-subscriber key_grants",
"layer": "fabric",
"part": "Part V",
"description": "O(N)/epoch"
},
{
"id": "xf.retroactive_grant",
"name": "retroactive grant",
"kind": "transformation",
"cc_id": "5.1 / 5.2",
"category": "Transport & Crypto",
"input": "roster + epoch key + new member",
"output": "re-granted content",
"layer": "fabric",
"part": "Part V",
"description": "re-grant all extant content per history_on_join"
},
{
"id": "xf.option_a_catchup",
"name": "Option-A catch-up",
"kind": "transformation",
"cc_id": "5.1 / 5.2",
"category": "Transport & Crypto",
"input": "new member",
"output": "catch-up grants",
"layer": "fabric",
"part": "Part V",
"description": "history_on_join catch-up path"
},
{
"id": "xf.dek_seal",
"name": "DEK seal",
"kind": "transformation",
"cc_id": "5.1 / 3.3.2",
"category": "Transport & Crypto",
"input": "content+DEK",
"output": "sealed content",
"layer": "fabric",
"part": "Part V",
"description": "AES-256-GCM O(1)"
},
{
"id": "xf.dek_wrap_v2",
"name": "DEK wrap (v2 hybrid PQC)",
"kind": "transformation",
"cc_id": "5.1 / 3.3.2",
"category": "Transport & Crypto",
"input": "DEK+recipient KEM",
"output": "wrapped grant",
"layer": "fabric",
"part": "Part V",
"description": "x25519+ML-KEM-768"
},
{
"id": "xf.dek_rotation",
"name": "DEK rotation",
"kind": "transformation",
"cc_id": "5.1 / 3.3.2",
"category": "Transport & Crypto",
"input": "DEK",
"output": "rotated DEK",
"layer": "fabric",
"part": "Part V",
"description": "rotate via rotation_chain (never withdraws)"
},
{
"id": "xf.treekem_path_rekey",
"name": "TreeKEM path rekey / commit",
"kind": "transformation",
"cc_id": "5.1",
"category": "Transport & Crypto",
"input": "member change",
"output": "O(log N) rekey + signed commit",
"layer": "fabric",
"part": "Part V",
"description": "MLS RFC-9420 multicast advantage"
},
{
"id": "xf.pcs_heal",
"name": "PCS heal",
"kind": "transformation",
"cc_id": "5.1",
"category": "Transport & Crypto",
"input": "member change",
"output": "healed group",
"layer": "fabric",
"part": "Part V",
"description": "optional compromise healing"
},
{
"id": "xf.structural_invisibility_suppression",
"name": "structural-invisibility suppression",
"kind": "transformation",
"cc_id": "5.2 / 3.2 / 6.1.5",
"category": "Transport & Crypto",
"input": "self/family content",
"output": "NO holds_bytes + no cross-scope propagation",
"layer": "fabric",
"part": "Part V",
"description": "Unconditional; else existence of invisible blobs leaks"
},
{
"id": "xf.at_rest_encryption_cascade",
"name": "at-rest encryption cascade",
"kind": "transformation",
"cc_id": "5.2",
"category": "Transport & Crypto",
"input": "recipient set",
"output": "wrapped grants",
"layer": "fabric",
"part": "Part V",
"description": "Resolve current occurrence KEM keys"
},
{
"id": "xf.resolve_encryption_keys",
"name": "resolve_encryption_keys",
"kind": "transformation",
"cc_id": "5.2",
"category": "Transport & Crypto",
"input": "recipient set",
"output": "wrapped grants",
"layer": "fabric",
"part": "Part V",
"description": "no v1/plaintext fallback"
},
{
"id": "xf.fail_secure_exclusion",
"name": "fail-secure exclusion",
"kind": "transformation",
"cc_id": "5.2",