-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTATE.json
More file actions
971 lines (971 loc) · 58 KB
/
Copy pathSTATE.json
File metadata and controls
971 lines (971 loc) · 58 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
{
"accepted_authorities": [
{
"id": "epoch2-epoch4-recalibration",
"path": "experiments/epoch2-recalibration/recalibration-authority.json",
"role": "program architecture and epoch boundary",
"sha256": "24578fea080cf700d2bbdd607b448fd48fd6f759250d4a9a49986f8cb4e37c01"
},
{
"id": "epoch2-remaining-work-and-epoch3-completion-gates",
"path": "experiments/epoch2-upstream-thin-plan/plan-authority.json",
"role": "active research plan and completion gates",
"sha256": "62b3b07f37a90b497747562bb00a9db5a3d78b3b2cb45df8f66db22818f5eafa"
},
{
"id": "e2p3-secondary-real-device-qualification-freeze",
"path": "experiments/epoch2-archive-qualification/secondary-real-device-qualification-authority.json",
"role": "bounded dual-real-device compatibility evidence",
"sha256": "e380198cda8c49cad704483e3edc33c2d745cc65857155b3a7edb1887410f06c"
},
{
"id": "document-lifecycle-control-plane-phase1",
"path": "experiments/document-lifecycle-control/document-lifecycle-control-authority.json",
"role": "documentation lifecycle registry control plane",
"sha256": "d8e71c1c9ba387a17323fafc7c16a0c3fe5002cdac5045c76aa6e86282bc08cf"
},
{
"id": "document-current-state-authority-phase2",
"path": "experiments/document-current-state/document-current-state-authority.json",
"role": "single current-state authority and generated-view contract",
"sha256": "77345393b51d1f7807f77884990838598d2520c6dca3426107c580a1fcb041b6"
},
{
"id": "document-generated-navigation-phase3",
"path": "experiments/document-navigation/document-navigation-authority.json",
"role": "complete generated documentation navigation and reachability",
"sha256": "28faa2ba26dbded39ecd581a849288d87f030a25b81a1639796f863db86b1f23"
},
{
"id": "document-mixed-document-correction-phase4",
"path": "experiments/document-mixed-correction/document-mixed-correction-authority.json",
"role": "stable/current/plan/history layer separation and snapshot interpretation",
"sha256": "45df6e86f0164df8c1d81746af9ca5c44f7921e5a14fc17967213d65a4a43aaf"
},
{
"id": "document-legacy-authority-decoupling-phase5",
"path": "experiments/document-legacy-authority-decoupling/legacy-authority-decoupling-authority.json",
"role": "legacy authority compatibility snapshots and completed documentation lifecycle migration",
"sha256": "c24beeaf69bcdbbc1f73fabc7ec1195b6f0b5a416b33ad2bfa0c7f386c70f924"
},
{
"id": "immutable-agent-bootstrap-bundle-session-protocol",
"path": "experiments/agent-bootstrap/agent-bootstrap-authority.json",
"role": "immutable one-document agent onboarding, bundle-native session transport, and mandatory session-operation protocol",
"sha256": "86f80a2325003d47884c81f5a03c13ad5a5cacb5fa124937124c4c371b668f79"
},
{
"id": "agent-task-completion-contract-hardening",
"path": "experiments/agent-task-completion/agent-task-completion-authority.json",
"role": "task PASS/FAIL/update routing, successor readiness, and state/module/plan identity enforcement",
"sha256": "c45411577e916f3b3fe95e98fd4de439d81ca4858deeb29b21df177e298a5539"
},
{
"id": "e2-r1-ut0-exact-official-upstream-control",
"path": "experiments/epoch2-upstream-thin-control/upstream-control-authority.json",
"role": "exact official Python.org Android package, topology, dependency, and provenance control",
"sha256": "6cc0acee911239eb2e82267dbb2d2de0043260fe482d45e10d6aeebffebe540c"
},
{
"id": "e2-r1-ut1-astral-artifact-and-metadata-prototype",
"path": "experiments/epoch2-upstream-thin-artifact-prototype/artifact-prototype-authority.json",
"role": "truthful Astral-style local artifact and metadata prototype for the official binary-derived package",
"sha256": "387f0b68be2069fa36227dc80982ffe1371e79b2a35076ef0b09380ec7c7c306"
},
{
"id": "e2-r1-ut2-loader-relocation-launcher-getpath",
"path": "experiments/epoch2-upstream-thin-loader-relocation/loader-relocation-authority.json",
"role": "bounded Android/Bionic loader, launcher, getpath, native closure, and whole-prefix relocation evidence",
"sha256": "05a6a21d9803d01880c6a81e0a33785edfd2b0b27b1ca4b508bd23f42219a6d2"
},
{
"id": "e2-r1-ut3-sysconfig-and-native-extension-sdk",
"path": "experiments/epoch2-upstream-thin-sysconfig-sdk/sysconfig-sdk-authority.json",
"role": "relocation-aware sysconfig, consumer metadata, on-device native-extension SDK, and Android wheel evidence",
"sha256": "6cff1984d4601a37e8b57762bb170a57e695cb64d516c1dab0023b7e809dc808"
},
{
"id": "e2-r1-ut4-android-data-and-writable-state-policy",
"path": "experiments/epoch2-upstream-thin-android-data-policy/android-data-policy-authority.json",
"role": "host-neutral CA, timezone, temporary, cache, bytecode, user-site, venv, read-only-install, and independent data-update policy",
"sha256": "be25e52aba1d6c9d0b2e25fec2bd1d8a0a0d9eb870436f00e81f347e90d012b7"
},
{
"id": "e2-r1-ut5-feature-capability-and-product-surface-qualification",
"path": "experiments/epoch2-upstream-thin-feature-qualification/feature-qualification-authority.json",
"role": "explicit evidence-backed subprocess, venv, pip, uv, console-script, and multiprocessing support boundaries",
"sha256": "3b56a38898a3a2384cf9419fe3cd124faa8dbf367cdd5532724b3424092a62e5"
},
{
"id": "e2-r1-ut6-platform-portability",
"path": "experiments/epoch2-upstream-thin-platform-portability/platform-portability-authority.json",
"role": "bounded current-target platform evidence, static 16 KiB compatibility, and explicit withheld claims",
"sha256": "b21eddfee574343772d0875a7b6f26aa7b5dd494ccf0a5f1be9b8c09201276f4"
},
{
"id": "e2-r1-ut7-upstream-evolution-and-maintenance-portability",
"path": "experiments/epoch2-upstream-thin-upstream-evolution/upstream-evolution-authority.json",
"role": "official patch-update rehearsal, Python 3.15 preview delta, maintenance burden, and security ownership",
"sha256": "a45566c4ea0e9dbb1aed53e27d07398e81835f6221da2ce28f78471c2467ace5"
},
{
"id": "e2-r1-api36-controlled-source-equivalent-comparison",
"path": "experiments/epoch2-upstream-thin-api36-controlled-comparison/api36-controlled-comparison-authority.json",
"role": "API-24 official and API-36 source-equivalent three-class controlled comparison",
"sha256": "576f0f833164a2748a5c494780f429b4c22af5cb07d331248ac7572611b1339e"
},
{
"id": "epoch2-closure-and-producer-independent-evidence-export",
"path": "experiments/epoch2-upstream-thin-closure/closure-authority.json",
"role": "Epoch 2 closure, accepted upstream-derived seed, selection inputs, and Epoch 3 initialization boundary",
"sha256": "8f3ed1fffb15fcc4302653176086797cbe0d64a30fe51f79570f11a4639e9fdc"
},
{
"id": "epoch3-upstream-thin-initialization-and-full-start",
"path": "experiments/epoch3-upstream-thin-initialization/initialization-authority.json",
"role": "complete Epoch 3 selection register, clean repository boundary, product contract freeze, independent audit, and canonical full implementation start",
"sha256": "901cd0ecde47ce3fc15f256976d2075db714c2003a51e996b5c278a1d1e22f3b"
},
{
"id": "epoch3-upstream-thin-canonical-full-r4",
"path": "experiments/epoch3-upstream-thin-full/full-authority.json",
"role": "canonical deterministic Astral-structured upstream-thin full archive, Android/Bionic qualification, projection invariant, and install-only start authority",
"sha256": "a29064602ad2fa612eba516cc09ab49334f7d8ec4aec04f3c9e2e0827afec9d0"
},
{
"id": "epoch3-upstream-thin-canonical-install-only-r1",
"path": "experiments/epoch3-upstream-thin-install-only/install-only-authority.json",
"role": "canonical exact full projection, Android/Bionic qualification, and stripped start authority",
"sha256": "7f27a85ce283e0283bb7e7cf0e4aace8282d7cfd0d37c732b23188c8b318018d"
},
{
"id": "epoch3-upstream-thin-canonical-install-only-stripped-r2",
"path": "experiments/epoch3-upstream-thin-stripped/stripped-authority.json",
"role": "canonical bounded install-only-stripped derivation, Android/Bionic qualification, and artifact-family start authority",
"sha256": "bf985a2cfc5446f7deab36d853f27ac439c30ba2b85b761546d919fe411a2d25"
},
{
"id": "epoch3-upstream-thin-canonical-artifact-family-r1",
"path": "experiments/epoch3-upstream-thin-artifact-family/artifact-family-authority.json",
"role": "canonical deterministic three-artifact release family, exact artifact identities, sidecars, checksums, release index, reproducibility, and release-blocker start authority",
"sha256": "102ea6c02198885a08328d821511a10b8043510095970dfde17d8c8ef18e276e"
},
{
"id": "epoch3-rb1-component-license-baseline-r1",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb1-baseline-authority.json",
"role": "frozen exact component/license baseline, explicit 12-gap register, and source-provenance resolution start authority",
"sha256": "12c97e50fb1333c9f6094649dd8d19170df6f04c7c9168f88041cc321a982a0e"
},
{
"id": "epoch3-rb1-source-provenance-r1",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb1-source-provenance-authority.json",
"role": "frozen exact six-dependency source provenance, libffi resolution, CPython source identity, mismatch quarantine, and license-payload acquisition start authority",
"sha256": "e538a19afb768b923cde46b9a7f5fe563b02988195b9fbb4d81106d5333ee467"
},
{
"id": "epoch3-rb1-license-payload-and-component-expansion-r3",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb1-license-payload-authority.json",
"role": "frozen exact five-source license payload acquisition, 13-component expansion, eight-gap boundary, and legal-overlay evidence synthesis start authority",
"sha256": "20e74380a24b2868320290286841f97c7e847c133ecb6b29db430513ad99abba"
},
{
"id": "epoch3-rb1-license-payload-verification-amendment-r1",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb1-license-payload-authority-verification-amendment.json",
"role": "non-claiming correction binding the payload authority to the actual 23-check acceptance verifier output",
"sha256": "1471394928903fb8d430c6a0f99b07defe847bb1732298eac0d82a5db643c983"
},
{
"id": "epoch3-rb1-legal-overlay-r2",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb1-legal-overlay-authority.json",
"role": "frozen deterministic 72-file legal evidence overlay, exact four-gap boundary, and legal-integration start authority",
"sha256": "faccd8de76e9fc175ced66961c07f18696abd3c40d51d4e184a6e9bc277b79d3"
},
{
"id": "epoch3-rb1-legally-integrated-release-family-r1",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb1-legal-integration-authority.json",
"role": "frozen exact 128-file legally integrated family candidate and final owner-notice approval start authority",
"sha256": "23717b5b69b52f76f37240f008e1cf1718158adc0419fcf05dd0729cf492f8ba"
},
{
"id": "epoch3-rb2-ca-timezone-data-products-r3",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb2-data-product-authority.json",
"role": "frozen deterministic current and rollback CA/timezone data products, update/rollback lifecycle, exact Android runtime qualification, and RB-2 closure authority",
"sha256": "48ae38370afcd3cf095566307e6859ee2bf88a6ee0c45ad7f07dea7401e77098"
},
{
"id": "epoch3-rb3-sysconfig-profile-M-selection",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-sysconfig-profile-selection-authority.json",
"role": "Selected profile M authority; preserves upstream producer metadata while authorizing only measured consumer/toolchain adaptations.",
"sha256": "85544b28efa71b8fbe33b7f933c367b408f4442152103403155f3603ec9ffd28"
},
{
"id": "epoch3-rb3-distributor-responsibility-reassessment",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-distributor-responsibility-reassessment.json",
"role": "distributor artifact responsibility, external user-wheel repair boundary, and Android 16 KiB SDK obligation",
"sha256": "ddb6803888e34f4713d8a08ebbd6a7bfcd0417e94ff55c7104b268ef4362447f"
},
{
"id": "epoch3-rb3-successor-full-r1-failure-inspection",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-full-m-r1-return-inspection.json",
"role": "exact failed successor-full r1 receipt, rollback, and deterministic receipt correction boundary",
"sha256": "2ce206125fc66f9ea661b53fb6f836bbcb92bf0293eb9c0d3012f1d09b5f8126"
},
{
"id": "epoch3-rb3-successor-full-r2-failure-inspection",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-full-m-r2-return-inspection.json",
"role": "exact reproducible successor r2 failure receipt, truthful host-triple correction, and uv-managed sysconfig rewrite correction boundary",
"sha256": "032f15b5408de260e21cc01a8f4e9598d6caa01bb574a601aa38af03b4a5e6dd"
},
{
"id": "epoch3-rb3-successor-full-r3-failure-inspection",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-full-m-r3-return-inspection.json",
"role": "exact successful successor r3 product qualification evidence and bounded managed-find verifier observation-order correction",
"sha256": "28354f618c27a896b448ec9fb91286d90e9f3b1e95a73028baf98468a0ef287d"
},
{
"id": "epoch3-rb3-successor-full-acceptance-r1-failure-inspection",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-full-m-acceptance-r1-return-inspection.json",
"role": "exact failed acceptance-r1 unit receipt, clean rollback, and tracked-committed-tree negative-test isolation correction boundary",
"sha256": "5c5ed77416d038f6aca78957e4a8fe690aaf9ba5ee74c26bf7e708e8ba8ef0bf"
},
{
"id": "epoch3-rb3-profile-M-successor-full-r5",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-full-m-authority.json",
"role": "accepted deterministic profile-M successor full r5 with structural, Android runtime, uv system/managed, direct/managed native SDK 16 KiB, protected-state, and independent acceptance evidence",
"sha256": "557a1602d800f2eb0fd475e38d65e695aff5ed6fbc6f7d58f4e2a2ac277209cb"
},
{
"id": "epoch3-rb3-successor-full-acceptance-r2-success-inspection",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-full-m-acceptance-r2-return-inspection.json",
"role": "exact successful acceptance-r2 receipt, pushed full-r5 acceptance, and successor install-only derivation start boundary",
"sha256": "6f2ef52e78248de144bc390f06e07624d74629cc60666f0b39ddbb5e1a89e31f"
},
{
"id": "epoch3-rb3-profile-M-successor-install-only-r1-return-inspection",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-install-only-m-r1-return-inspection.json",
"role": "frozen successful target qualification and failed audit receipt-schema mismatch boundary",
"sha256": "b9afe396cc7414af4933552bf9d48e727c42516d227aeaf2eecc5276749116fd"
},
{
"id": "epoch3-rb3-profile-M-successor-install-only-r2-success-inspection",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-install-only-m-r2-return-inspection.json",
"role": "exact successful r2 owner receipt, deterministic install-only candidate identity, complete Android/uv/native-SDK qualification, and bounded acceptance input",
"sha256": "3aec247ce7610121b27d775f91580e94d89cc7273acc31ee929d407c3fdb30d1"
},
{
"id": "epoch3-rb3-profile-M-successor-install-only-r5",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-install-only-m-authority.json",
"role": "accepted deterministic successor install-only r5 with exact full projection, Android runtime, uv system/managed, direct/managed native SDK 16 KiB, protected-state, and independent acceptance evidence",
"sha256": "cdee9a7e00adfe9e715d588ab7ce5a3b69a7ce0f6b24de26503ca67eb324d8ca"
},
{
"id": "epoch3-rb3-profile-M-successor-stripped-r1-success-inspection",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-stripped-m-r1-return-inspection.json",
"role": "exact successful r1 owner receipt, deterministic stripped candidate identity, bounded one-path mutation, complete Android/uv/native-SDK qualification, and bounded acceptance input",
"sha256": "8e851d093a6e0fd6e868e7351ee61ba7009eccbb2364ca80624c0fbad3fd6698"
},
{
"id": "epoch3-rb3-profile-M-successor-install-only-stripped-r5",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-stripped-m-authority.json",
"role": "accepted deterministic successor stripped r5 with bounded llvm-strip mutation, Android runtime, uv system/managed, direct/managed native SDK 16 KiB, protected-state, and independent acceptance evidence",
"sha256": "fd3995b0a76d7613846bbe1f191f39c49c8ffbb62da16062cc8bb4720ec8eccd"
},
{
"id": "epoch3-rb3-profile-M-successor-stripped-acceptance-r1-success-inspection",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-stripped-m-acceptance-r1-return-inspection.json",
"role": "exact successful stripped acceptance transaction, 21-file result self-index, repository and remote transition, and technical-family owner assembly authorization",
"sha256": "d8df265e57a21427bd25c435db23af01e702eb2e466a934af9537f41b889ddef"
},
{
"id": "epoch3-rb3-profile-M-successor-technical-family-r2",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-technical-family-m-authority.json",
"role": "accepted deterministic 23-file profile-M successor technical family with exact accepted artifact reuse, successor-bound metadata, author-rewrite receipt binding, reproducibility, protected-state, and independent acceptance evidence",
"sha256": "ce6a80b5505afec7c99a74e0a7c12001848ba2e1892e3592fc1066e299b091e2"
},
{
"id": "epoch3-rb3-profile-M-successor-technical-family-r1-success-inspection",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-technical-family-m-r1-return-inspection.json",
"role": "exact successful technical-family owner result, 45-file self-index, old-to-rewritten repository coordinate binding, and legal-family integration authorization",
"sha256": "d327b2b84712d7e9b7378e0934a4246dbe7bb4246236080a271d3bb58f8edae2"
},
{
"id": "epoch3-rb3-author-identity-history-rewrite-map",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-technical-family-m-author-rewrite-map.json",
"role": "exact twelve-commit old-to-new author rewrite mapping preserving tree, subject, and author date while binding external receipts to rewritten main",
"sha256": "153010d8f18fc39b6d78cee3fb2ca2dcbf2b941ba70c908c3f6df192052eaa8a"
},
{
"id": "epoch3-rb3-successor-stripped-temporal-routing-verifier-amendment",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-stripped-m-temporal-verifier-amendment.json",
"role": "verifier-only temporal monotonicity amendment preserving accepted stripped artifact, authority, and owner evidence while allowing later technical-family and legal-family state progression",
"sha256": "f02b72452085dcedf96fe9b2301a0a6be317f069920f8016a9f7e8b63ed4d6af"
},
{
"id": "epoch3-rb3-successor-legally-integrated-family-r3",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-legal-family-m-authority.json",
"role": "accepted deterministic 128-file successor legal family, exact technical/legal byte preservation, and successor legal/data rebinding authorization",
"sha256": "f4570c47d5f5af1dc1802255b116aecf9fe99724c06e69770baf991cee4240e6"
},
{
"id": "epoch3-rb3-successor-legal-family-temporal-routing-verifier-amendment",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-legal-family-temporal-verifier-amendment.json",
"role": "verifier-only monotonic routing amendment allowing legal/data rebinding progression after accepted successor legal family",
"sha256": "d11ba8f48fab81fe71cbbb3ae8ceb0a8529443211a5624f7ce9e0836e9cf36a5"
},
{
"id": "epoch3-rb3-successor-legal-data-rebinding-temporal-routing-verifier-amendment",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-legal-data-rebinding-temporal-verifier-amendment.json",
"role": "verifier-only third temporal monotonicity amendment allowing the bounded owner legal/data rebinding execution while preserving accepted artifacts, authorities, evidence, and rebound claim boundaries",
"sha256": "5f70109c21101c593da595e444f0db5dd8c64e928627d778d9a26cb44758ee95"
},
{
"id": "epoch3-rb3-profile-M-successor-legal-data-rebinding",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-legal-data-rebinding-m-authority.json",
"role": "accepted successor RB-1 technical legal and RB-2 data/runtime rebinding with explicit predecessor supersession authorization",
"sha256": "98417df172d350dff256516c759b6b9b671df2c5d98062ca64fdcd5c9dedfb89"
},
{
"id": "epoch3-rb3-successor-predecessor-supersession-temporal-routing-verifier-amendment",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-predecessor-supersession-temporal-verifier-amendment.json",
"role": "verifier-only fourth temporal monotonicity amendment allowing explicit predecessor supersession and RB-3 closure routing after accepted successor RB-1/RB-2 rebinding",
"sha256": "71eb3559290c0be75e9b0f37ec5d2b13aa7e06f0e4f9ba260829d8acc2d559a6"
},
{
"id": "epoch3-rb3-profile-M-successor-predecessor-supersession-and-closure",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb3-successor-predecessor-supersession-m-authority.json",
"role": "explicit predecessor-to-successor mapping, canonical successor r3 selection, immutable historical predecessor preservation, and RB-3 closure",
"sha256": "5e275444d4ebedc3bd554079f36d2c11259ccb0052c17cbb6f58f9df16fbf0e3"
},
{
"id": "epoch3-rb4-release-security-update-rollback-and-revocation-operations",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb4-release-operations-authority.json",
"role": "deterministic release catalog, official patch-update binding, rollback, revocation readback, support status, and security ownership",
"sha256": "abd185b4ffc4b37c41334a459af6735a85203a4d44ba569bf055b5fb369c8ab8"
},
{
"id": "epoch3-rb4-release-operations-temporal-routing-verifier-amendment",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb4-release-operations-temporal-verifier-amendment.json",
"role": "verifier-only fifth temporal monotonicity amendment allowing RB-5 API-24 owner qualification after closed RB-4 while preserving all accepted artifacts and authorities",
"sha256": "575688ae02ce564a803acb1b5ba69e2d97e2bf885fc57041e1dedcf70e3cf232"
},
{
"id": "rb5-api24-runtime-temporal-routing",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb5-api24-runtime-temporal-verifier-amendment.json",
"role": "verifier-only temporal monotonicity for prepared exact API 24 owner qualification",
"sha256": "bc8aa9da7c81d4d2a48b11759a9aa058118f6db8be9a5f2501ebc220d134d8c0"
},
{
"id": "epoch3-rb5-api24-support-scope-disposition",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb5-api24-support-scope-authority.json",
"role": "explicit build-floor versus runtime-support split, API 24 unsupported scope exclusion, and RB-5 closure",
"sha256": "0c24db1a651924a64d7e4b1f907ed0deaca56413609cf9794449d30040ea2723"
},
{
"id": "epoch3-rb5-api24-support-scope-temporal-amendment",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb5-api24-support-scope-temporal-verifier-amendment.json",
"role": "verifier-only monotonic routing from accepted API 24 scope exclusion into RB-6",
"sha256": "22f54b767cd606453c952ddf8e58fb5ac46446e44f98aa1e02137c6b34fe9c89"
},
{
"id": "epoch3-rb6-real-16k-runtime-support-scope",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb6-real-16k-runtime-support-scope-authority.json",
"role": "closed real 16 KiB runtime support-scope disposition preserving static compatibility without a runtime support claim",
"sha256": "0a38c44e2efcdfa9bda402c4b2aa5db5a51116f7310feb82cca126c8998c8414"
},
{
"id": "epoch3-rb6-real-16k-runtime-support-scope-temporal-routing",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb6-real-16k-runtime-support-scope-temporal-verifier-amendment.json",
"role": "verifier-only temporal monotonicity routing accepted RB-6 scope disposition into RB-7",
"sha256": "606bb992ede5470a53c95dedf7a3b23f34df2033879d54e784c23de7f51ceb85"
},
{
"id": "epoch3-rb7-non-termux-runtime-support-scope",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb7-non-termux-runtime-support-scope-authority.json",
"role": "closed non-Termux Android runtime support-scope disposition retaining the accepted Termux owner/runtime lane without a Termux-independence claim",
"sha256": "5d383c33b414b0e09ce826b3567a680d622bd355ccbf35b9371eaccb5b1da366"
},
{
"id": "epoch3-rb7-non-termux-runtime-support-scope-temporal-routing",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb7-non-termux-runtime-support-scope-temporal-verifier-amendment.json",
"role": "verifier-only temporal monotonicity routing accepted RB-7 scope disposition into canonical r3 owner approval",
"sha256": "c0545678ad0f0d2c0846ab586270a252d20a451dc3489b7e997741fd4782aa9e"
},
{
"id": "epoch3-rb5-rb7-runtime-support-policy-correction",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb5-rb7-runtime-support-policy-correction-authority.json",
"role": "superseding API 24 declared-support policy and exact S22 app-UID non-Termux runtime qualification while preserving 16 KiB exclusion",
"sha256": "7b0304575f97a8dc45a05bbfcde827a594a6b9c6cbf798936bd63f2bc6a3ff13"
},
{
"id": "epoch3-rb5-rb7-runtime-support-policy-correction-temporal-routing",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb5-rb7-runtime-support-policy-correction-temporal-verifier-amendment.json",
"role": "verifier-only temporal routing preserving historical authorities after API 24 declared-support and exact app-UID non-Termux qualification correction",
"sha256": "b15d285245ffa669020de2bdfa466e620f8a307c2c6858e0985b77bce9d113e6"
},
{
"id": "epoch3-rb1-successor-r3-owner-approval",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb1-successor-r3-owner-approval-authority.json",
"role": "explicit owner approval and RB-1 closure bound to exact canonical r3, notice, and support scope",
"sha256": "6794102f1941ec1b1715dfaa1b6a7bf4935c6f7c6798d5a731846cfd9843aceb"
},
{
"id": "epoch3-rb1-owner-approval-temporal-verifier-amendment",
"path": "experiments/epoch3-upstream-thin-release-blockers/rb1-successor-r3-owner-approval-temporal-verifier-amendment.json",
"role": "verifier-only temporal routing after all release blockers close",
"sha256": "2acd72ff02e974314ef3af3297ea73ca6efaba6fdd5bba1e6af7625d3cd97efd"
},
{
"id": "epoch3-release-blocker-closure-independent-audit",
"path": "experiments/epoch3-upstream-thin-release-blockers/epoch3-release-blocker-closure-independent-audit.json",
"role": "independent audit that all seven release blockers are closed while selectability and publication remain withheld",
"sha256": "fadb0421be91e2d1bb6ca14cd0d0a864029ebf624d8bb72d4aae5bfa468fb079"
},
{
"id": "epoch3-release-blocker-closure-binding",
"path": "experiments/epoch3-upstream-thin-release-blockers/epoch3-release-blocker-closure-binding.json",
"role": "exact binding of all seven closed blockers, owner approval, corrected support scope, and canonical r3 identity",
"sha256": "1a7d5fdc8f92e71f965cb4ee70b02b0efd6e5eef1d3f4f75f3556f949fbdbd40"
},
{
"id": "epoch3-repository-internal-selectable-release-candidate",
"path": "experiments/epoch3-upstream-thin-release-blockers/epoch3-selectable-release-candidate-authority.json",
"role": "repository-internal selectability authority for exact owner-approved canonical r3 without publication or distribution",
"sha256": "16b6bd7a8f81ebef01f2385aef204a0934d6bf49acba561a4c038679d4fdac67"
},
{
"id": "epoch3-distribution-handoff-readiness",
"path": "experiments/epoch3-upstream-thin-release-blockers/epoch3-distribution-handoff-readiness.json",
"role": "readiness authority for final handoff preparation with distribution repository and publication still deferred",
"sha256": "093617581d023e932ad17131125e9d32e7fdb98a01bb9cbc95e289f1c31c41d0"
},
{
"id": "epoch3-selectable-release-candidate-independent-audit",
"path": "experiments/epoch3-upstream-thin-release-blockers/epoch3-selectable-release-candidate-independent-audit.json",
"role": "independent audit of exact internal selectability with publication, distribution, and support overclaims withheld",
"sha256": "4c8a4d872bcd62da7950eacbf80f1489bd40cf60058d3966c1e636634ef6511a"
},
{
"id": "epoch3-selectable-release-candidate-temporal-routing",
"path": "experiments/epoch3-upstream-thin-release-blockers/epoch3-selectable-release-candidate-temporal-verifier-amendment.json",
"role": "verifier-only monotonic routing from owner-approved blocker closure to internal selectability and final handoff preparation",
"sha256": "3c00c9873749170bf9fbb95939011532ec86e47e9b9cea07babfc21c83c74dde"
},
{
"id": "epoch3-final-distribution-handoff-r1",
"path": "experiments/epoch3-upstream-thin-release-blockers/epoch3-final-distribution-handoff-authority.json",
"role": "exact repository-to-distribution boundary, maintenance ownership, and publication-withheld handoff",
"sha256": "dc28084fb7ac1ebcbdcb3b6fb004f3638135af5a7ed4a84a42401b9a57bd068c"
},
{
"id": "epoch3-distribution-repository-r1",
"path": "experiments/epoch3-upstream-thin-release-blockers/epoch3-distribution-repository-authority.json",
"role": "accepted private distribution repository, exact 128-file import, live maintenance channel, and publication-decision gate",
"sha256": "3d8c4526a24142d8ca5a09339e00fc15c4c4e4ed98b7d570da0a23e18c271c06"
},
{
"id": "adr-0008-epoch3-dual-producer-and-epoch4-native-data-adaptation",
"path": "docs/decisions/ADR-0008-EPOCH3-DUAL-PRODUCER-SCOPE-AND-EPOCH4-NATIVE-DATA-ADAPTATION.md",
"role": "owner-accepted dual Epoch 3 producer scope and Epoch 4 native CA/timezone adaptation experiment boundary",
"sha256": "ec98267749a3be6cd6c3d77e6caf65002d4e924bffde592f828fdeed3edfd7f5"
},
{
"id": "epoch3-product-repository-baseline-and-completion",
"path": "experiments/epoch3-product-repository-baseline/epoch3-product-repository-disposition-authority.json",
"role": "canonical Epoch 3 product repository baseline, corrected runtime-data policy, Epoch 3 completion, and post-Epoch 3 routing",
"sha256": "ba2f2975f779833ac83e66881dcfe66ee2b742f48012dcaa639783794ea0b3a0"
},
{
"id": "adr-0009-epoch4-parallel-activation-and-native-data-sequencing",
"path": "docs/decisions/ADR-0009-EPOCH4-PARALLEL-ACTIVATION-AND-NATIVE-DATA-SEQUENCING.md",
"role": "owner-accepted parallel Epoch 4 activation, native-data baseline-first rule, and CA/timezone sequencing",
"sha256": "07be23bf177cbe35bf57ebfe73a51bbfcf4bf00433a6ad3cc315915ac47b47d2"
},
{
"id": "epoch4-native-data-platform-baseline-r1",
"path": "experiments/epoch4-native-data-adaptation/baseline/native-data-baseline-authority.json",
"role": "accepted target-bound Android CA/timezone baseline and independent prototype seam selection",
"sha256": "91d5d1b9032545d55347c4fdb2cdc9a282df16bd1ca4d4594a6828c42f0f1b31"
},
{
"id": "epoch4-native-ca-adapter-runner-correction-r1",
"path": "experiments/epoch4-native-data-adaptation/epoch4-native-ca-adapter-runner-correction-r1.json",
"role": "non-dispositive r1 runner failure correction and CA prototype retry authority",
"sha256": "47d960f2ad742ce0d248b3858f6483eec49cc29997ea2ac84e781a391ff8e86a"
},
{
"id": "epoch4-native-ca-adapter-runner-correction-r2",
"path": "experiments/epoch4-native-data-adaptation/epoch4-native-ca-adapter-runner-correction-r2.json",
"role": "non-dispositive r2 collector output-ownership correction and CA prototype r3 retry authority",
"sha256": "9c9ddd0a971039c401b85272c3ffd7d7434a9ec90fb0d8abe1fbaf0fd8f43f99"
},
{
"id": "epoch4-native-ca-adapter-runner-correction-r3",
"path": "experiments/epoch4-native-data-adaptation/epoch4-native-ca-adapter-runner-correction-r3.json",
"role": "non-dispositive r3 OpenSSL test/fuzz build-scope correction and CA prototype r4 retry authority",
"sha256": "01ff0895fcfe1467e6d183165dfa20f1be226f4398fd28ddde894572075ceaef"
},
{
"id": "epoch4-native-ca-adapter-runner-correction-r4",
"path": "experiments/epoch4-native-data-adaptation/epoch4-native-ca-adapter-runner-correction-r4.json",
"role": "non-dispositive r4 fixture OpenSSL config correction and CA prototype r5 retry authority",
"sha256": "7f9be898340b08fda84103b70f17ff2c77935c3433be9192de7949d425446e37"
},
{
"id": "epoch4-native-ca-adapter-rejected-r5",
"path": "experiments/epoch4-native-data-adaptation/ca-adapter/native-ca-adapter-authority.json",
"role": "dispositive rejection of direct Android system-root OpenSSL CApath; retain packaged or caller-supplied CA behavior",
"sha256": "072a380d56ebecb27cc44434e2de44c3c2060f3d0f70fb084da69592925751ff"
},
{
"id": "epoch4-native-timezone-adapter-runner-correction-r1",
"path": "experiments/epoch4-native-data-adaptation/epoch4-native-timezone-adapter-runner-correction-r1.json",
"role": "non-dispositive r1 baseline inventory schema-field correction and timezone prototype r2 retry authority",
"sha256": "c0c01a4571efde4b06dbcb1cc0d25afdd1071a59e690510fbef0b4d2593371d3"
},
{
"id": "epoch4-native-timezone-adapter-accepted-r2",
"path": "experiments/epoch4-native-data-adaptation/timezone-adapter/native-timezone-adapter-authority.json",
"role": "accepted deterministic Android packed-tzdata to private raw-TZif adapter with unchanged zoneinfo and preserved PYTHONTZPATH semantics",
"sha256": "136b763416923fc95b4274620a3f4c3cfaedf47d14bce3be9fa33e9a55165df8"
},
{
"id": "epoch4-native-data-integration-not-applicable",
"path": "experiments/epoch4-native-data-adaptation/integration/native-data-integration-authority.json",
"role": "dispositive not-applicable combined integration authority after independent CA rejection and timezone acceptance",
"sha256": "2d258e61e435ec4a09e778ca8d76bff10d869b0c7fb52f7715834733b522f6e1"
},
{
"id": "epoch4-native-data-product-policy-selection",
"path": "experiments/epoch4-native-data-adaptation/selection/native-data-selection-authority.json",
"role": "explicit owner-approved CA packaged-data and timezone Android-native product policy without release selectability",
"sha256": "c0a552f8995d3888205d16dd4ba6d255cede9dc19e0aba5ec573ee2d90ec9b58"
},
{
"id": "epoch4-native-data-api34-plus-research",
"path": "experiments/epoch4-native-data-adaptation/api34-plus-research/native-data-api34-plus-research-authority.json",
"role": "post-selection API 34+ CA and timezone primary-source review and bounded follow-up sequencing",
"sha256": "6b5733c2feaecf1d570c152ba6b61669a2dca49be849b9e967df7aa787f7641b"
},
{
"id": "epoch4-native-ca-rehash-overlay-runner-correction-r1",
"path": "experiments/epoch4-native-data-adaptation/epoch4-native-ca-rehash-overlay-runner-correction-r1.json",
"role": "non-dispositive r1 install-only runtime-surface correction and CA rehash-overlay r2 retry authority",
"sha256": "e1886fa60a5093db3179c8a33aff0b78488a165ad6d8eaa008fe1beb8cf435b0"
},
{
"id": "epoch4-native-ca-rehash-overlay-accepted-r2",
"path": "experiments/epoch4-native-data-adaptation/ca-rehash-overlay/native-ca-rehash-overlay-authority.json",
"role": "accepted private current-subject-hash overlay over exact Android Conscrypt system roots with unchanged CPython consumer and preserved overrides",
"sha256": "4d10ca752839387a2a2fb48bb8a6466f32ec1247a353ef3dd9fbf4482a51ed57"
},
{
"id": "epoch4-native-ca-old-hash-fallback-runner-correction-r1",
"path": "experiments/epoch4-native-data-adaptation/epoch4-native-ca-old-hash-fallback-runner-correction-r1.json",
"role": "non-dispositive r1 recipe-tree bytecode contamination correction and old-hash fallback r2 retry authority",
"sha256": "7efa5e512074a715353083d9a84734db5b65a4a925866848874e5ce79069ee98"
},
{
"id": "epoch4-native-ca-old-hash-fallback-accepted-r2",
"path": "experiments/epoch4-native-data-adaptation/ca-old-hash-fallback/native-ca-old-hash-fallback-authority.json",
"role": "accepted bounded OpenSSL Android old-subject-hash fallback prototype and direct APEX CApath evidence",
"sha256": "ed113a8048baf10191343af36d86cf36d58f216f291aa1767fbe81be93a96a5e"
},
{
"id": "epoch4-native-ca-strategy-selection-accepted-r1",
"path": "experiments/epoch4-native-data-adaptation/ca-strategy-selection/native-ca-strategy-selection-authority.json",
"role": "explicit owner-selected bounded OpenSSL Android old-subject-hash fallback strategy as later source-integration input",
"sha256": "f5951769b1eeffff6e2d47e46eee046c459332af0863f3e3d5d109034363533d"
},
{
"id": "epoch4-timezone-content-addressed-integration-accepted-r1",
"path": "experiments/epoch4-native-data-adaptation/timezone-content-addressed-integration/timezone-content-addressed-integration-authority.json",
"role": "accepted stable Termux content-addressed Android raw-TZif integration with atomic current switch, unchanged ZoneInfo, overrides, packaged fallback, corruption recovery, and deterministic refresh",
"sha256": "8453bc08ea8df1041dab09d2cb26e76c46b7857391f4921e49ac6b3833fb6016"
},
{
"id": "epoch4-api35-bionic-timezone-oracle-runner-correction-r1",
"path": "experiments/epoch4-native-data-adaptation/epoch4-api35-bionic-timezone-oracle-runner-correction-r1.json",
"role": "non-dispositive NDK r30 __ANDROID_API__ alias parser correction and API35 Bionic timezone oracle r2 retry authority",
"sha256": "8541b89886003e1be67ac1ad4c1ffe4ebfa6b2eb1c4c1fbf5575ad4949c85d95"
},
{
"id": "epoch4-api35-bionic-timezone-oracle-accepted-r2",
"path": "experiments/epoch4-native-data-adaptation/api35-bionic-timezone-oracle/api35-bionic-timezone-oracle-authority.json",
"role": "accepted API34-safe dynamic and weak plus API35 strong-reference Bionic timezone equivalence oracle; oracle-only and not a selected backend",
"sha256": "2863845ed5caa5c5b7efce88deb4edb5d2fef229d51a6681f37ef53ec9ec9da1"
},
{
"id": "epoch4-selected-native-data-source-product-r1-runner-failure",
"path": "experiments/epoch4-native-data-adaptation/selected-native-data-source-product-integration-r1-failure/selected-native-data-source-product-integration-authority.json",
"role": "non-dispositive target runner failure after exact input acquisition; no source-product integration or artifact claim",
"sha256": "9cea653fac6f625634f21497b934e0eaf354b7ce34724f35708bbc5c3888d2fc"
},
{
"id": "epoch4-selected-native-data-source-product-runner-correction-r1",
"path": "experiments/epoch4-native-data-adaptation/reconciliation/epoch4-selected-native-data-source-product-runner-correction-r1.json",
"role": "non-dispositive archive-root discovery correction and canonical product artifact rebind requirement",
"sha256": "b9c0fdc91a9e5062122ebb492347be78a4ec5e48275a958253c15079975d1255"
},
{
"id": "epoch4-canonical-product-reconciliation",
"path": "experiments/epoch4-native-data-adaptation/reconciliation/epoch4-canonical-product-reconciliation-authority.json",
"role": "merged Epoch 4 evidence, preserved canonical product defaults, and activated bounded canonical-product native-data contract rebind",
"sha256": "9693f6d88c4bd3bc171dfd517873230e233c25eababdf86e4ab10193b76c52dd"
}
],
"active_plan": {
"detail_path": "docs/roadmap/EPOCH4_NATIVE_DATA_ADAPTATION_PLAN.md",
"detail_sha256": "c57c5f2d963d76325939a3a1c7427c0283054ca88bda35c7bf85ac18d0f33839",
"path": "docs/epochs/EPOCH4_CHARTER.md",
"sha256": "081b21d0f09e3d198d9ae166dbc24ec836105c42681940461d81fc5b20b8cfd5"
},
"active_work_package": "experiments/epoch4-native-data-adaptation/reconciliation/epoch4-canonical-product-native-data-rebind-contract-r2.json",
"agent_onboarding": {
"authority_path": "experiments/agent-bootstrap/agent-bootstrap-authority.json",
"authority_sha256": "86f80a2325003d47884c81f5a03c13ad5a5cacb5fa124937124c4c371b668f79",
"bootstrap_contract_path": "docs/agent/BOOTSTRAP_CONTRACT.json",
"bootstrap_path": "AGENT_BOOTSTRAP.md",
"bootstrap_sha256": "64c4ab8331e6696788fd6d34e1113177e99963373d81abae0130502b89fc0e11",
"ordinary_handoff_packages_required": false,
"project_model_path": "docs/agent/PROJECT_MODEL.md",
"project_model_revision": 1,
"session_input": "full-git-bundle-plus-sha256-sidecar",
"session_output": "single-self-contained-zst-both-directions-with-out-of-band-sha256",
"session_protocol_path": "docs/agent/SESSION_PROTOCOL.md",
"session_protocol_revision": 3,
"status": "established",
"task_catalog_path": "docs/agent/TASK_CATALOG.json",
"task_catalog_schema_version": 2,
"task_completion_contract_version": 1,
"task_manifest_path": "docs/current/AGENT_TASK.json"
},
"blockers": [],
"claim_boundaries": {
"actual_16k_runtime_qualified": false,
"actual_16k_runtime_scope_excluded": true,
"actual_16k_runtime_supported": false,
"adb_shell_context_qualified": false,
"all_release_blockers_closed": true,
"android_user_trust_semantics_qualified": false,
"api24_runtime_accepted": false,
"api24_runtime_attempted": true,
"api24_runtime_candidate": false,
"api24_runtime_device_validated": false,
"api24_runtime_qualified": false,
"api24_runtime_required_for_selectability": false,
"api24_runtime_scope_excluded": false,
"api24_runtime_started": false,
"api24_runtime_supported": true,
"api35_bionic_timezone_oracle_complete": true,
"api35_bionic_timezone_oracle_only": true,
"app_uid_non_termux_runtime_accepted": false,
"app_uid_non_termux_runtime_candidate": false,
"app_uid_non_termux_runtime_qualified": false,
"app_uid_non_termux_runtime_started": false,
"app_uid_non_termux_runtime_supported": false,
"artifact_family_implementation_started": true,
"artifact_family_release_complete": true,
"astral_consumer_compatibility_complete": true,
"astral_consumer_compatibility_implementation_started": true,
"bionic_timezone_product_backend_selected": false,
"ca_timezone_data_product_complete": true,
"ca_timezone_data_product_implementation_started": true,
"canonical_artifact_successor_started": true,
"canonical_product_complete_git_history_claim": false,
"canonical_product_default_native_ca_selected": false,
"canonical_product_default_native_timezone_selected": false,
"canonical_product_default_runtime_data_unchanged": true,
"canonical_product_remote_repository_queried": false,
"canonical_product_repository_accepted": true,
"canonical_product_repository_head_bound": true,
"canonical_product_repository_tree_bound": true,
"component_license_mapping_complete": true,
"conscrypt_trust_semantics_equivalence_qualified": false,
"data_product_rollback_complete": true,
"deterministic_release_catalog_complete": true,
"distribution_handoff_preparation_ready": true,
"distribution_repository_accepted": true,
"distribution_repository_created": true,
"distribution_repository_creation_authorized": true,
"distribution_repository_creation_deferred_to_epoch3_final": false,
"distribution_repository_separate": true,
"distribution_repository_visibility_private": false,
"dual_real_device_aarch64_termux_compatibility": true,
"emergency_revocation_readback_complete": true,
"emulator_qualified": false,
"epoch3_complete": true,
"epoch3_feature_selection_complete": true,
"epoch3_feature_selection_started": true,
"epoch3_remaining_work_delegated_to_isolated_sessions": true,
"epoch3_upstream_source_termux_default_profile_complete": true,
"epoch3_upstream_source_termux_default_profile_selected": true,
"epoch4_canonical_product_rebind_ready": true,
"epoch4_canonical_product_reconciliation_complete": true,
"epoch4_complete_history_merged": true,
"epoch4_native_ca_adapter_prototype_complete": false,
"epoch4_native_ca_timezone_adaptation_experiment_selected": true,
"epoch4_native_ca_timezone_adaptation_qualified": false,
"epoch4_native_data_candidate_profile_release_selectable": false,
"epoch4_native_data_candidate_profile_selected_for_release": false,
"epoch4_native_data_integration_complete": false,
"epoch4_native_data_platform_baseline_complete": true,
"epoch4_native_data_platform_baseline_started": true,
"epoch4_native_data_product_selected": true,
"epoch4_native_timezone_adapter_prototype_complete": true,
"epoch4_r1_runner_failure_recorded": true,
"epoch4_scope_selected": true,
"epoch4_started": true,
"epoch4_system_root_inventory_complete": true,
"epoch4_timezone_packed_data_inventory_complete": true,
"final_distribution_handoff_complete": true,
"full_implementation_started": true,
"full_release_complete": true,
"install_only_implementation_started": true,
"install_only_release_complete": true,
"internal_selectable_release_candidate_integrated": true,
"maintenance_channel_live": true,
"maintenance_ownership_handoff_complete": true,
"minimum_supported_android_api": 24,
"minimum_supported_android_api_declared": true,
"native_sdk_baseline_extension_16k_required": true,
"non_termux_android_context_qualified": false,
"non_termux_android_context_scope_excluded": true,
"non_termux_android_context_supported": false,
"official_patch_update_rehearsal_complete": true,
"other_non_termux_android_contexts_supported": false,
"owner_approved": true,
"per_device_native_data_release_artifact": false,
"predecessor_distribution_repository_historical": true,
"predecessor_family_historical_valid": true,
"predecessor_family_superseded": true,
"predecessor_family_supersession_authorized": true,
"predecessor_family_supersession_started": true,
"production_revocation_applied": false,
"publication_authorized": true,
"publication_decision_ready": false,
"publication_owner_attested_complete": true,
"publication_remote_readback_complete": false,
"publication_withheld_attested": false,
"qualification_replay_bound_to_canonical_3146": true,
"rb1_closed": true,
"rb1_rebound": true,
"rb1_technical_legal_evidence_complete": true,
"rb2_closed": true,
"rb2_data_runtime_evidence_complete": true,
"rb2_rebound": true,
"rb4_closed": true,
"rb5_closed": true,
"rb6_closed": true,
"rb7_closed": true,
"release_blocker_resolution_started": true,
"release_family_rollback_complete": true,
"release_operations_complete": true,
"security_ownership_complete": true,
"selectable": true,
"selected_native_data_source_product_contract_integration_complete": false,
"source_flagship_minimum_android_api": 34,
"source_produced_python_artifact_claim": false,
"source_producer_host_isolation_productized": false,
"source_producer_libffi_fallback_productized": false,
"source_termux_ca_default_qualified": true,
"source_termux_ca_default_selected": true,
"source_termux_tzpath_default_selected": false,
"source_timezone_external_policy_selected": true,
"source_upstream_default_tzpath_selected": true,
"stripped_implementation_started": true,
"stripped_release_complete": true,
"successor_family_canonical": true,
"successor_family_derivation_started": true,
"successor_full_accepted": true,
"successor_full_candidate": true,
"successor_install_only_accepted": true,
"successor_install_only_candidate": true,
"successor_legal_data_rebinding_accepted": true,
"successor_legal_data_rebinding_authorized": true,
"successor_legal_data_rebinding_candidate": true,
"successor_legal_data_rebinding_started": true,
"successor_legal_family_accepted": true,
"successor_legal_family_candidate": true,
"successor_legal_family_integration_authorized": true,
"successor_legal_family_integration_started": true,
"successor_stripped_accepted": true,
"successor_stripped_candidate": true,
"successor_stripped_started": true,
"successor_technical_family_accepted": true,
"successor_technical_family_candidate": true,
"successor_technical_family_started": true,
"sysconfig_profile_selected": true,
"sysconfig_sdk_boundary_review_complete": true,
"termux_device_qualification_complete": true,
"upstream_baseline_minimum_android_api": 24,
"user_built_wheel_postprocessing_in_scope": false
},
"control_work": {
"completed_phase": 1,
"id": "AGENT-TASK-COMPLETION",
"migration_complete": true,
"name": "agent task completion contract hardening",
"next_action_class": "rebind-epoch4-native-data-contract-to-canonical-product",
"next_phase": null,
"physical_moves_decision": "not-required",
"resume_program_action_class": "rebind-epoch4-native-data-contract-to-canonical-product",
"status": "completed"
},
"documentation_layers": {
"active_plan": "docs/roadmap/EPOCH4_NATIVE_DATA_ADAPTATION_PLAN.md",
"agent_bootstrap": "AGENT_BOOTSTRAP.md",
"agent_task": "docs/current/AGENT_TASK.json",
"authority_root": "docs/evidence/README.md",
"current_source": "docs/current/STATE.json",
"history_root": "docs/history/README.md",
"legacy_compatibility_map": "docs/documentation/legacy-authority-decoupling-map.json",
"stable": [
"docs/agent/PROJECT_MODEL.md",
"docs/agent/SESSION_PROTOCOL.md"
]
},
"navigation": {
"coverage": "all-tracked-markdown-json",
"history_root": "docs/history/README.md",
"legacy_compatibility_root": "docs/history/legacy-authority-bindings/README.md",
"root": "docs/navigation/README.md",
"status": "generated-and-verified",
"target_count": 16
},
"next_action_class": "rebind-epoch4-native-data-contract-to-canonical-product",
"predecessor": {
"canonical_main": {
"commit": "9df93da491903df2ff6696d661f340b4b8c6303a",
"status": "accepted-epoch3-product-baseline",
"tree": "537660c19d35ad4dbbcc1a135055492a84e5b1ac"
},
"epoch4_parallel_branch": {
"bundle_sha256": "0ed15d933f6eeb01d183358c34ade4c92e1ce643d0518951116bf0c63ac2d5cc",
"commit": "cd6eb60e97be73d63874d9c718c793dd285d6e77",
"status": "complete-history-merged",
"tree": "fc07da7906ee806cb88b27f97b9fe6bd519f64ae"
},
"epoch4_r1_result": {
"archive": "cpython-android-cli-e4-selected-native-data-source-product-contract-r1-results.tar.zst",
"sha256": "2653fde77ef4b7a6aa597929f4076957b10d02667a394991495792efadf64f23",
"size_bytes": 3860,
"status": "runner-infrastructure-failure-non-dispositive"
}
},
"program": {
"completed_epoch3_tracks": [
{
"action_class": "authorize-epoch3-publication",
"authority": "experiments/epoch3-product-repository-baseline/epoch3-product-repository-disposition-authority.json",
"status": "completed-by-canonical-product-baseline"
},
{
"action_class": "implement-epoch3-upstream-source-termux-default-profile",
"authority": "experiments/epoch3-product-repository-baseline/epoch3-product-repository-disposition-authority.json",
"status": "completed-by-canonical-product-baseline"
}
],
"epoch": {
"id": "E4",
"name": "Android native-data research reconciled with the canonical product",
"status": "evidence-merged-canonical-product-rebind-ready"
},
"gate": {
"id": "E4/CANONICAL-PRODUCT-NATIVE-DATA-REBIND",
"name": "Rebind selected native-data research to the canonical product model",
"status": "ready"
},
"next_action_class": "rebind-epoch4-native-data-contract-to-canonical-product",
"status": "in-progress"
},
"project_model": {
"path": "docs/agent/PROJECT_MODEL.md",
"sha256": "e2c75f6bbef5f3b2e00c131a0f7e46ddbdb10143f9757f02c6086a41704fa456"
},
"render_targets": {
"current": [
"README.md",
"docs/CURRENT_CONTEXT.md",
"docs/INDEX.md",
"docs/current/AGENT_TASK.json"
],
"navigation": [
"docs/navigation/README.md",
"docs/agent/README.md",
"docs/current/README.md",
"docs/documentation/README.md",
"docs/decisions/README.md",
"docs/epochs/README.md",
"docs/architecture/README.md",
"docs/roadmap/README.md",
"docs/contracts/README.md",
"docs/evidence/README.md",
"docs/stages/README.md",
"docs/handoff/README.md",
"docs/history/README.md",
"docs/history/legacy-authority-bindings/README.md",
"docs/references/README.md",
"experiments/README.md"
]
},
"schema_path": "docs/current/STATE-v6.schema.json",
"schema_version": 6,
"session_protocol": {
"path": "docs/agent/SESSION_PROTOCOL.md",
"revision": 3,
"sha256": "f26b097027f1924a88ccf8a95dbca3337d03dcbac269de2ca0ac50dff9d4ef47"
},
"state_kind": "project-current-state",
"state_revision": 83,
"task_catalog": {
"path": "docs/agent/TASK_CATALOG.json",
"schema_version": 2,
"sha256": "a80c5f5bfbf3d6ccffb0754685390438d8671c3c5ef97bc78277c9180ffb0675"
},
"task_completion": {
"authority_path": "experiments/agent-task-completion/agent-task-completion-authority.json",
"authority_sha256": "c45411577e916f3b3fe95e98fd4de439d81ca4858deeb29b21df177e298a5539",
"contract_version": 1,
"current_action_class": "rebind-epoch4-native-data-contract-to-canonical-product",
"pass_successor_action_class": "execute-epoch4-canonical-product-native-data-profile",
"status": "enforced"
},
"unresolved_risks": [
"upstream-api24-floor-declared-and-qualified-on-api36-device-but-not-on-api24-hardware",
"canonical-product-qualified-only-in-Termux-on-SM-S908N-Android16-API36-arm64-v8a",
"non-Termux-ADB-shell-and-emulator-contexts-unqualified-and-unclaimed",
"actual-16KiB-runtime-explicitly-unsupported-and-unqualified",
"other-Android-ABIs-explicitly-out-of-scope",
"user-built-wheel-portability-and-repair-explicitly-out-of-scope",
"product-publication-accepted-from-owner-supplied-snapshot-without-live-remote-readback",
"supplied-product-bundle-binds-complete-HEAD-tree-but-not-standalone-complete-history",
"source-lock-retains-stale-Termux-tzpath-metadata-not-selected-by-ci-targets",
"API24-runtime-declared-supported-from-build-floor-but-device-unvalidated",
"non-Termux-support-qualified-only-for-android-terminal-appuid-native-shell-on-S22-API36",
"adb-shell-and-other-non-Termux-contexts-unqualified-and-not-required",
"runtime-16KiB-explicitly-unsupported-unqualified-owner-scope-excluded",
"emulator-unqualified-and-not-required-for-current-release-blocker-gate",
"upstream-derived-full-is-not-Astral-producer-object-full",
"zero-producer-path-rule-not-derived-from-astral-golden-contract",
"android-user-trust-network-security-config-and-conscrypt-policy-semantics-unclaimed",
"standard-invalid-override-fail-closed-semantics-must-be-preserved",
"source-producer-host-isolation-and-libffi-fallback-evidenced-but-not-productized",
"openssl-openssldir-alone-does-not-address-android-cacerts-layout",
"android-system-root-direct-capath-rejected-because-platform-files-use-old-subject-hash-retain-packaged-or-caller-supplied-ca",
"epoch4-product-policy-selected-ca-packaged-data-default-timezone-android-native-default-without-release-selectability",
"ca-overlay-symlink-mode-does-not-claim-historical-root-set-rollback-after-apex-replacement-packaged-ca-remains-rollback",
"android-trustmanager-network-security-config-user-ca-ct-ocsp-and-sct-semantics-remain-unclaimed",
"app-hosted-java-trustmanager-and-icu-bridges-outside-current-standalone-cli-profile",
"ca-current-hash-private-overlay-accepted-but-not-product-selected",
"old-hash-fallback-requires-openssl-update-patch-replay-and-independent-requalification",
"android-native-old-hash-fallback-selected-but-not-yet-applied-to-a-source-produced-product-family",
"termux-fixed-timezone-path-selected-non-termux-package-owned-absolute-path-withheld",
"timezone-content-addressed-integration-accepted-but-not-yet-applied-to-a-source-produced-product-family",
"selected-native-data-source-family-not-yet-built",
"historical-epoch4-native-data-selection-is-not-a-canonical-product-default",
"epoch4-r1-source-product-integration-failed-non-dispositively-on-obsolete-archive-root-assumption",
"canonical-product-native-data-candidate-requires-revision2-contract-target-qualification-and-explicit-product-decision",
"canonical-product-artifact-bytes-are-bound-by-product-repository-receipt-but-not-copied-into-this-research-repository"
],
"updated_by_transaction": "epoch4-evidence-merge-and-canonical-product-reconciliation"
}