meerkat-mobkit 0.8.22

Companion orchestration platform for the Meerkat multi-agent runtime
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
//! Bundled SQLite-backed ContinuityStore for `persistent_state(path)` usage.
//!
//! Implements CONTRACT-06. Designed for single-process, local-disk persistence.

use std::collections::BTreeMap;
use std::path::{Path, PathBuf};
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::{Arc, Condvar, Mutex};

use async_trait::async_trait;
use meerkat_core::SessionStoreError;
use meerkat_core::session_store::{
    SessionHead, SessionHeadCas, StrandLayout, TranscriptStrandId, reconstruct_rewrite_record,
    session_head_cas_token, strand_layout_for_history, validate_commit_rewrite_transition,
    validate_save_head_transition,
};
use meerkat_core::types::Message;
use meerkat_core::{Session, TranscriptRewriteCommit, TranscriptRewriteRecord};
use rusqlite::{Connection, OptionalExtension, Transaction};

use super::contracts::{
    ContinuityIncrementalSessions, ContinuityStore, ContinuityWriteCursor,
    SessionSnapshotMatchCandidate,
};
use super::types::{
    AgentIdentity, AgentRuntimeId, CheckpointVersion, ContinuityGeneration, ContinuityRecord,
    ContinuityResolveState, ContinuityStoreError, FencingToken, SessionSnapshot,
};

const READ_POOL_SIZE: usize = 4;

const SCHEMA: &str = "CREATE TABLE IF NOT EXISTS continuity_records (
        identity       TEXT PRIMARY KEY,
        agent_runtime_id TEXT NOT NULL,
        session_id     TEXT NOT NULL,
        generation     INTEGER NOT NULL,
        checkpoint_version INTEGER NOT NULL,
        fencing_token  INTEGER NOT NULL
    );
    CREATE TABLE IF NOT EXISTS session_snapshots (
        session_id     TEXT PRIMARY KEY,
        identity       TEXT NOT NULL,
        generation     INTEGER NOT NULL,
        checkpoint_version INTEGER NOT NULL,
        fencing_token  INTEGER NOT NULL,
        data           BLOB NOT NULL
    );";

/// Head-canonical session representation (M4b): the durable trio meerkat's
/// incremental persistence contract needs, plus the `(identity, generation)`
/// stamps every mobkit continuity row carries so reset rollback and identity
/// deletion can scope their deletes — including strand rows written in the
/// crash window between `append_messages` and the head write that adopts
/// them.
const SCHEMA_HEAD_CANONICAL: &str = "CREATE TABLE IF NOT EXISTS continuity_session_heads (
        session_id     TEXT PRIMARY KEY,
        identity       TEXT NOT NULL,
        generation     INTEGER NOT NULL,
        checkpoint_version INTEGER NOT NULL,
        fencing_token  INTEGER NOT NULL,
        head_revision  TEXT NOT NULL,
        message_count  INTEGER NOT NULL,
        rewrite_count  INTEGER NOT NULL,
        head_json      BLOB NOT NULL,
        cas_token      TEXT NOT NULL
    );
    CREATE TABLE IF NOT EXISTS continuity_strand_messages (
        session_id     TEXT NOT NULL,
        strand         TEXT NOT NULL,
        seq            INTEGER NOT NULL,
        message_json   BLOB NOT NULL,
        identity       TEXT NOT NULL,
        generation     INTEGER NOT NULL,
        created_at_ms  INTEGER NOT NULL,
        PRIMARY KEY (session_id, strand, seq)
    );
    CREATE TABLE IF NOT EXISTS continuity_session_rewrites (
        session_id     TEXT NOT NULL,
        rewrite_idx    INTEGER NOT NULL,
        parent_strand  TEXT NOT NULL,
        parent_len     INTEGER NOT NULL,
        strand         TEXT NOT NULL,
        strand_len     INTEGER NOT NULL,
        commit_json    BLOB NOT NULL,
        identity       TEXT NOT NULL,
        generation     INTEGER NOT NULL,
        created_at_ms  INTEGER NOT NULL,
        PRIMARY KEY (session_id, rewrite_idx)
    );
    CREATE INDEX IF NOT EXISTS continuity_records_session_idx
        ON continuity_records(session_id);
    CREATE INDEX IF NOT EXISTS continuity_heads_identity_gen_idx
        ON continuity_session_heads(identity, generation);
    CREATE INDEX IF NOT EXISTS continuity_strands_identity_gen_idx
        ON continuity_strand_messages(identity, generation);
    CREATE INDEX IF NOT EXISTS continuity_rewrites_identity_gen_idx
        ON continuity_session_rewrites(identity, generation);";

/// Ledger version that records "this file carries the head-canonical
/// channel". A binary whose `mobkit-continuity` domain tops out below this
/// refuses the file typed at open — correctly, because it would keep writing
/// `session_snapshots.data` while head rows are the byte authority. The
/// lockout is therefore only allowed to exist once head rows can exist:
/// see [`LocalContinuityStore::open`].
pub const HEAD_CANONICAL_SCHEMA_VERSION: i64 = 2;

/// The continuity store's schema domain in the per-file migration ledger.
/// Migration 0001 is the historical two-table DDL (all `CREATE ... IF NOT
/// EXISTS`, so a pre-ledger file converges without its rows being touched);
/// migration 0002 adds the head-canonical trio (DDL-only, additive, zero row
/// rewrites).
///
/// **This domain is NEVER applied by a plain [`LocalContinuityStore::open`].**
/// Applying it stamps v2, which locks every `<= 0.8.5` binary out of the file
/// (`SqliteStoreError::SchemaFromTheFuture`). That lockout is load-bearing
/// only once a head row exists, so it is committed at exactly two moments:
/// by a delta write that actually creates head state (armed inside that
/// write's own transaction, so a REFUSED write leaves the file at v1), and
/// by explicit operator action (`storage-migrate --apply`) — which stamps
/// only AFTER [`LocalContinuityStore::backfill_head_canonical_sessions_at`]
/// has given every legacy blob a head row. Until 0.8.16 that second moment
/// stamped unconditionally while converting nothing, so an operator paid the
/// whole one-way cost and received an unconverted corpus; the stamp now
/// rides on complete conversion and a partial crossing stays at v1. Merely
/// launching a new gateway leaves rollback to the previous release intact.
pub(crate) const MOBKIT_CONTINUITY_DOMAIN: meerkat_sqlite::SchemaDomain =
    meerkat_sqlite::SchemaDomain {
        name: "mobkit-continuity",
        migrations: &[
            meerkat_sqlite::Migration {
                version: 1,
                name: "base-schema",
                apply: migration_0001_continuity_schema,
            },
            meerkat_sqlite::Migration {
                version: 2,
                name: "head-canonical-sessions",
                apply: migration_0002_head_canonical_sessions,
            },
        ],
        initialize_current: initialize_current_continuity_schema,
        allowed_existing_versions: &[1, 2],
        // Unledgered mobkit files are refused at open (below the 0.8.8 ledger
        // floor) and mobkit never runs the offline bridge, so no source
        // version is inferable.
        bridge_recoverable_versions: &[],
        released_predecessors: &[meerkat_sqlite::SchemaPredecessor {
            version: 1,
            verify: verify_released_v1_continuity_schema,
        }],
        owned_objects: CONTINUITY_OWNED_OBJECTS,
        retired_objects: &[],
    };

const RELEASED_V1_CONTINUITY_OBJECTS: &[meerkat_sqlite::SchemaObject] = &[
    meerkat_sqlite::SchemaObject {
        kind: meerkat_sqlite::SchemaObjectKind::Table,
        name: "continuity_records",
    },
    meerkat_sqlite::SchemaObject {
        kind: meerkat_sqlite::SchemaObjectKind::Table,
        name: "session_snapshots",
    },
];

const CONTINUITY_OWNED_OBJECTS: &[meerkat_sqlite::SchemaObject] = &[
    meerkat_sqlite::SchemaObject {
        kind: meerkat_sqlite::SchemaObjectKind::Table,
        name: "continuity_records",
    },
    meerkat_sqlite::SchemaObject {
        kind: meerkat_sqlite::SchemaObjectKind::Table,
        name: "session_snapshots",
    },
    meerkat_sqlite::SchemaObject {
        kind: meerkat_sqlite::SchemaObjectKind::Table,
        name: "continuity_session_heads",
    },
    meerkat_sqlite::SchemaObject {
        kind: meerkat_sqlite::SchemaObjectKind::Table,
        name: "continuity_strand_messages",
    },
    meerkat_sqlite::SchemaObject {
        kind: meerkat_sqlite::SchemaObjectKind::Table,
        name: "continuity_session_rewrites",
    },
    meerkat_sqlite::SchemaObject {
        kind: meerkat_sqlite::SchemaObjectKind::Index,
        name: "continuity_records_session_idx",
    },
    meerkat_sqlite::SchemaObject {
        kind: meerkat_sqlite::SchemaObjectKind::Index,
        name: "continuity_heads_identity_gen_idx",
    },
    meerkat_sqlite::SchemaObject {
        kind: meerkat_sqlite::SchemaObjectKind::Index,
        name: "continuity_strands_identity_gen_idx",
    },
    meerkat_sqlite::SchemaObject {
        kind: meerkat_sqlite::SchemaObjectKind::Index,
        name: "continuity_rewrites_identity_gen_idx",
    },
];

fn initialize_current_continuity_schema(
    tx: &rusqlite::Transaction<'_>,
) -> Result<(), rusqlite::Error> {
    migration_0001_continuity_schema(tx)?;
    migration_0002_head_canonical_sessions(tx)
}

/// Frozen v1 verifier honoring the deferred-stamp design: a delta write may
/// commit the head-canonical DDL inside its own transaction and leave the
/// ledger at v1 until head state actually exists, so a v1 file legally
/// carries either the plain two-table v1 catalog or the complete current DDL.
fn verify_released_v1_continuity_schema(conn: &rusqlite::Connection) -> Result<(), String> {
    meerkat_sqlite::verify_released_schema_fingerprint(
        conn,
        &MOBKIT_CONTINUITY_DOMAIN,
        RELEASED_V1_CONTINUITY_OBJECTS,
        migration_0001_continuity_schema,
    )
    .or_else(|plain| {
        meerkat_sqlite::verify_released_schema_fingerprint(
            conn,
            &MOBKIT_CONTINUITY_DOMAIN,
            CONTINUITY_OWNED_OBJECTS,
            initialize_current_continuity_schema,
        )
        .map_err(|full| {
            format!("v1 catalog: {plain}; v1 + deferred head-canonical DDL catalog: {full}")
        })
    })
}

/// The open-time domain: migration 0001 only. Opening a fresh file converges
/// it to v1 exactly as every previous release did, and an already-v2 file is
/// left alone (the version check below runs against the FULL domain, so a v2
/// file is not "from the future").
const MOBKIT_CONTINUITY_BASELINE_DOMAIN: meerkat_sqlite::SchemaDomain =
    meerkat_sqlite::SchemaDomain {
        name: "mobkit-continuity",
        migrations: &[meerkat_sqlite::Migration {
            version: 1,
            name: "base-schema",
            apply: migration_0001_continuity_schema,
        }],
        initialize_current: migration_0001_continuity_schema,
        allowed_existing_versions: &[1],
        // Unledgered mobkit files are refused at open (below the 0.8.8 ledger
        // floor) and mobkit never runs the offline bridge, so no source
        // version is inferable.
        bridge_recoverable_versions: &[],
        released_predecessors: &[],
        owned_objects: RELEASED_V1_CONTINUITY_OBJECTS,
        retired_objects: &[],
    };

fn migration_0001_continuity_schema(tx: &rusqlite::Transaction<'_>) -> Result<(), rusqlite::Error> {
    tx.execute_batch(SCHEMA)
}

fn migration_0002_head_canonical_sessions(
    tx: &rusqlite::Transaction<'_>,
) -> Result<(), rusqlite::Error> {
    tx.execute_batch(SCHEMA_HEAD_CANONICAL)
}

/// Refuse a file whose `mobkit-continuity` ledger is ahead of this binary.
///
/// Local replacement for the retired `meerkat_sqlite::refuse_future_schema`:
/// deliberately ONLY a future-version check, because the deferred-stamp
/// design legally leaves a v1 ledger over committed head-canonical DDL, a
/// shape exact per-version catalog eligibility would refuse at every open.
fn refuse_future_continuity_schema(conn: &Connection) -> Result<(), ContinuityStoreError> {
    let supported = MOBKIT_CONTINUITY_DOMAIN.supported_version();
    let found = meerkat_sqlite::domain_version(conn, MOBKIT_CONTINUITY_DOMAIN.name)
        .map_err(|e| mechanics_err("continuity schema preflight", e))?;
    match found {
        Some(found) if found > supported => Err(mechanics_err(
            "continuity schema preflight",
            meerkat_sqlite::SqliteStoreError::SchemaFromTheFuture {
                domain: MOBKIT_CONTINUITY_DOMAIN.name.to_string(),
                found,
                supported,
            },
        )),
        _ => Ok(()),
    }
}

/// Open-time schema convergence that never commits the one-way v2 bump.
///
/// Returns whether the file already carries the head-canonical channel.
///
/// - future version (> the full domain) => refused typed, nothing mutated;
/// - already v2 => nothing applied, delta channel ready;
/// - already v1 => nothing applied (the v2 bump waits for a delta write);
/// - no ledger row (fresh or pre-ledger file) => baseline v1 applied, exactly
///   as before this release.
fn converge_schema_at_open(conn: &mut Connection) -> Result<bool, ContinuityStoreError> {
    refuse_future_continuity_schema(conn)?;
    let version = meerkat_sqlite::domain_version(conn, MOBKIT_CONTINUITY_DOMAIN.name)
        .map_err(|e| mechanics_err("read continuity ledger", e))?;
    match version {
        Some(version) if version >= HEAD_CANONICAL_SCHEMA_VERSION => Ok(true),
        Some(_) => Ok(false),
        None => {
            meerkat_sqlite::apply_domain_migrations(conn, &MOBKIT_CONTINUITY_BASELINE_DOMAIN)
                .map_err(|e| mechanics_err("apply schema", e))?;
            Ok(false)
        }
    }
}

/// Bring the head-canonical tables into existence INSIDE the caller's
/// transaction, WITHOUT recording the ledger bump.
///
/// This is the half of the v1 -> v2 upgrade that is safe to speculate on:
/// the DDL is additive and `IF NOT EXISTS`, it applies the domain's own
/// migration bodies (never a second copy of the schema), and — because
/// SQLite runs DDL transactionally — a rollback removes the tables again.
/// The ledger stamp, which is the part that locks older binaries out, is
/// [`stamp_head_canonical_ledger_in_txn`] and is written only after the
/// enclosing write has actually created head state.
///
/// Refuses a file whose ledger is ahead of this binary, exactly as
/// `apply_domain_migrations` would, and refuses a file that has lost its
/// continuity ledger row (every opener converges one; its absence under a
/// write transaction is corruption, not a fresh file).
fn converge_head_canonical_schema_in_txn(tx: &Transaction<'_>) -> Result<(), ContinuityStoreError> {
    refuse_future_continuity_schema(tx)?;
    let current = meerkat_sqlite::domain_version(tx, MOBKIT_CONTINUITY_DOMAIN.name)
        .map_err(|e| mechanics_err("read continuity ledger", e))?
        .ok_or_else(|| {
            ContinuityStoreError::Corruption(
                "continuity ledger has no mobkit-continuity row; the file's migration ledger was \
                 removed after it was opened"
                    .to_string(),
            )
        })?;
    for migration in MOBKIT_CONTINUITY_DOMAIN
        .migrations
        .iter()
        .filter(|migration| migration.version > current)
    {
        (migration.apply)(tx).map_err(|e| sqlite_err("apply head-canonical schema", e))?;
    }
    Ok(())
}

/// Whether the file's `mobkit-continuity` ledger row already carries the
/// one-way v2 lockout, read INSIDE the caller's transaction.
///
/// The authority for "is the lockout committed" is this row and nothing
/// else. In particular it is NOT
/// [`LocalContinuityStoreInner::schema_is_head_canonical`], which answers
/// the different question "are the head tables queryable" and latches
/// `true` the moment the tables are observed. Those two facts diverge on
/// purpose: a delta write that creates strand rows but no head row commits
/// the DDL and leaves the ledger at v1 (see
/// [`LocalContinuityStore::delta_write`]), so the tables can exist on a
/// file that is still rollback-safe. Deciding the stamp from the table
/// probe would then skip the bump forever once that state exists — head
/// rows with no lockout, the exact hazard the lockout is for.
fn head_canonical_ledger_stamped_in_txn(
    tx: &Transaction<'_>,
) -> Result<bool, ContinuityStoreError> {
    let version = meerkat_sqlite::domain_version(tx, MOBKIT_CONTINUITY_DOMAIN.name)
        .map_err(|e| mechanics_err("read continuity ledger", e))?;
    Ok(version.is_some_and(|version| version >= HEAD_CANONICAL_SCHEMA_VERSION))
}

/// Does this session have a persisted head row right now?
///
/// The predicate that earns the one-way ledger bump. A head row is what
/// makes head+rows a session's sole byte authority; strand rows that no
/// head adopts are not part of any document (every read path gates on the
/// head row), so a file carrying only those is still correctly served by an
/// older binary from its blob.
fn session_head_exists_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
) -> Result<bool, ContinuityStoreError> {
    tx.query_row(
        "SELECT EXISTS(SELECT 1 FROM continuity_session_heads WHERE session_id = ?1)",
        rusqlite::params![id.to_string()],
        |row| row.get::<_, bool>(0),
    )
    .map_err(|e| sqlite_err("probe session head row", e))
}

/// Record the one-way `mobkit-continuity` v2 bump in the caller's
/// transaction — the moment binaries older than this release start being
/// refused the file.
///
/// Written last, so it commits atomically with the head state that earns
/// it. A no-op stamp (file already at v2) is harmless: the row already
/// carries this value.
fn stamp_head_canonical_ledger_in_txn(tx: &Transaction<'_>) -> Result<(), ContinuityStoreError> {
    tx.execute(
        "INSERT INTO main.meerkat_schema (domain, version) VALUES (?1, ?2)
         ON CONFLICT(domain) DO UPDATE SET version = excluded.version",
        rusqlite::params![
            MOBKIT_CONTINUITY_DOMAIN.name,
            MOBKIT_CONTINUITY_DOMAIN.supported_version()
        ],
    )
    .map_err(|e| sqlite_err("stamp head-canonical ledger", e))?;
    Ok(())
}

/// Commit the head-canonical schema (ledger `mobkit-continuity` v1 -> v2).
///
/// Called from `storage-migrate --apply` under the exclusive maintenance
/// fence — the explicit-operator route. (The implicit route, the first
/// delta write that creates head state, arms the same bump inside its own
/// write transaction; see [`LocalContinuityStore::delta_write`].) The DDL
/// is additive and `IF NOT EXISTS`; the ledger stamp is what makes the
/// upgrade one-way.
pub(crate) fn apply_head_canonical_schema(
    conn: &mut Connection,
) -> Result<meerkat_sqlite::LedgerReport, meerkat_sqlite::SqliteStoreError> {
    meerkat_sqlite::apply_domain_migrations(conn, &MOBKIT_CONTINUITY_DOMAIN)
}

/// Classify a raw SQLite failure at the store boundary: busy/locked is
/// transient, corruption is corrupt, everything else keeps the historical
/// `Io` shape. Staleness (fencing-token / checkpoint CAS conflicts) is a
/// store-contract concept decided above this layer, never here.
fn sqlite_err(context: &str, error: rusqlite::Error) -> ContinuityStoreError {
    match meerkat_sqlite::classify_sqlite_error(&error) {
        meerkat_sqlite::SqliteErrorClass::Transient => {
            ContinuityStoreError::Transient(format!("{context}: {error}"))
        }
        meerkat_sqlite::SqliteErrorClass::Corrupt => {
            ContinuityStoreError::Corruption(format!("{context}: {error}"))
        }
        meerkat_sqlite::SqliteErrorClass::Other => {
            ContinuityStoreError::Io(format!("{context}: {error}"))
        }
    }
}

/// Map a shared-mechanics error into the typed store error, routing the
/// wrapped raw SQLite failures through [`sqlite_err`]'s classification. A
/// held maintenance fence is transient by nature (storage is under offline
/// maintenance; the operation may be retried once it lifts).
fn mechanics_err(context: &str, error: meerkat_sqlite::SqliteStoreError) -> ContinuityStoreError {
    match error {
        meerkat_sqlite::SqliteStoreError::Sqlite(sql) => sqlite_err(context, sql),
        meerkat_sqlite::SqliteStoreError::MaintenanceFenceHeld { .. } => {
            ContinuityStoreError::Transient(format!("{context}: {error}"))
        }
        other => ContinuityStoreError::Io(format!("{context}: {other}")),
    }
}

struct ReadConnectionPool {
    available: Mutex<Vec<Connection>>,
    ready: Condvar,
}

impl ReadConnectionPool {
    fn new(connections: Vec<Connection>) -> Self {
        debug_assert!(!connections.is_empty());
        Self {
            available: Mutex::new(connections),
            ready: Condvar::new(),
        }
    }

    fn acquire(&self) -> Result<ReadConnectionGuard<'_>, ContinuityStoreError> {
        let mut available = self
            .available
            .lock()
            .map_err(|e| ContinuityStoreError::Io(format!("read pool lock: {e}")))?;
        loop {
            if let Some(connection) = available.pop() {
                return Ok(ReadConnectionGuard {
                    pool: self,
                    connection: Some(connection),
                });
            }
            available = self
                .ready
                .wait(available)
                .map_err(|e| ContinuityStoreError::Io(format!("read pool wait: {e}")))?;
        }
    }

    fn with_connection<T>(
        &self,
        operation: impl FnOnce(&Connection) -> Result<T, ContinuityStoreError>,
    ) -> Result<T, ContinuityStoreError> {
        let connection = self.acquire()?;
        operation(connection.connection()?)
    }
}

struct ReadConnectionGuard<'a> {
    pool: &'a ReadConnectionPool,
    connection: Option<Connection>,
}

impl ReadConnectionGuard<'_> {
    fn connection(&self) -> Result<&Connection, ContinuityStoreError> {
        self.connection
            .as_ref()
            .ok_or_else(|| ContinuityStoreError::Io("read pool guard lost its connection".into()))
    }
}

impl Drop for ReadConnectionGuard<'_> {
    fn drop(&mut self) {
        let Some(connection) = self.connection.take() else {
            return;
        };
        let mut available = self
            .pool
            .available
            .lock()
            .unwrap_or_else(std::sync::PoisonError::into_inner);
        available.push(connection);
        self.pool.ready.notify_one();
    }
}

enum ReadConnections {
    /// `Connection::open_in_memory()` is private to one connection. Reads share
    /// the writer rather than accidentally observing independent databases.
    Writer,
    Pool(ReadConnectionPool),
}

struct LocalContinuityStoreInner {
    /// Database file path; `:memory:` for in-memory stores (where the
    /// per-operation fence guard degrades to a no-op).
    db_path: PathBuf,
    writer: Mutex<Connection>,
    readers: ReadConnections,
    /// Whether the head-canonical TABLES are queryable on this file.
    /// Latched, never cleared: schema evolution is one-way. Read paths that
    /// observe the tables appearing under them (another handle on the same
    /// file committed the DDL) latch it too, so a stale `false` can never
    /// make this handle serve the frozen blob archive as authority.
    ///
    /// This is deliberately NOT "the ledger carries the v2 lockout" — see
    /// [`Self::ledger_is_head_canonical`]. Tables can exist on a file whose
    /// ledger is still v1.
    head_canonical_schema: AtomicBool,
    /// Whether the file's `mobkit-continuity` ledger row already carries the
    /// committed one-way v2 lockout. Latched from a fact that is itself
    /// one-way; a `false` here only means "not known to be stamped", and the
    /// write path re-reads the ledger row inside its own transaction before
    /// acting on it.
    head_canonical_ledger: AtomicBool,
}

impl LocalContinuityStoreInner {
    fn schema_is_head_canonical(&self) -> bool {
        self.head_canonical_schema.load(Ordering::Acquire)
    }

    /// Cached "the one-way lockout is already committed on this file".
    /// Only ever used to SKIP work; never to decide that a bump is owed.
    fn ledger_is_head_canonical(&self) -> bool {
        self.head_canonical_ledger.load(Ordering::Acquire)
    }

    /// Whether the head-canonical tables are queryable on this connection.
    /// Cheap after the first `true` (one relaxed atomic load).
    fn head_tables_available(&self, conn: &Connection) -> Result<bool, ContinuityStoreError> {
        if self.schema_is_head_canonical() {
            return Ok(true);
        }
        let exists: bool = conn
            .query_row(
                "SELECT EXISTS(SELECT 1 FROM sqlite_master WHERE type = 'table' \
                 AND name = 'continuity_session_heads')",
                [],
                |row| row.get(0),
            )
            .map_err(|e| sqlite_err("probe head-canonical tables", e))?;
        if exists {
            self.head_canonical_schema.store(true, Ordering::Release);
        }
        Ok(exists)
    }

    /// Per-operation maintenance-fence guard: the writer and reader pool
    /// hold their connections for the store's lifetime, so the fence
    /// cannot ride the open — every operation takes its own shared guard,
    /// and offline maintenance drains in-flight guards before touching the
    /// file.
    fn operation_fence(&self) -> Result<meerkat_sqlite::OperationGuard, ContinuityStoreError> {
        meerkat_sqlite::OperationGuard::for_database(&self.db_path)
            .map_err(|e| mechanics_err("operation fence", e))
    }

    fn with_reader<T>(
        &self,
        operation: impl FnOnce(&Connection) -> Result<T, ContinuityStoreError>,
    ) -> Result<T, ContinuityStoreError> {
        let _fence = self.operation_fence()?;
        match &self.readers {
            ReadConnections::Writer => {
                let connection = self
                    .writer
                    .lock()
                    .map_err(|e| ContinuityStoreError::Io(format!("writer lock: {e}")))?;
                operation(&connection)
            }
            ReadConnections::Pool(pool) => pool.with_connection(operation),
        }
    }

    fn with_writer<T>(
        &self,
        operation: impl FnOnce(&mut Connection) -> Result<T, ContinuityStoreError>,
    ) -> Result<T, ContinuityStoreError> {
        let _fence = self.operation_fence()?;
        let mut connection = self
            .writer
            .lock()
            .map_err(|e| ContinuityStoreError::Io(format!("writer lock: {e}")))?;
        operation(&mut connection)
    }
}

/// SQLite-backed ContinuityStore for the bundled `persistent_state(path)` path.
///
/// Stores ContinuityRecords and SessionSnapshots in a single SQLite database.
/// Enforces compare-and-set on (fencing_token, checkpoint_version). File-backed
/// stores use one serialized writer plus a bounded WAL read pool; async trait
/// operations execute SQLite work on Tokio's blocking workers.
#[derive(Clone)]
pub struct LocalContinuityStore {
    inner: Arc<LocalContinuityStoreInner>,
}

impl LocalContinuityStore {
    /// Open (or create) a local continuity store at the given path.
    ///
    /// # Errors
    ///
    /// Returns `ContinuityStoreError::Io` if the database cannot be opened or
    /// the schema cannot be initialized.
    pub fn open(path: impl AsRef<Path>) -> Result<Self, ContinuityStoreError> {
        let path = path.as_ref();
        if path == Path::new(":memory:") {
            return Self::in_memory();
        }

        let mut writer = meerkat_sqlite::open(path, meerkat_sqlite::ConnectionProfile::PRIMARY)
            .map_err(|e| mechanics_err("open writer", e))?;
        // Deliberately NOT `apply_domain_migrations(.., &MOBKIT_CONTINUITY_DOMAIN)`:
        // opening a state directory with a new binary must not commit the
        // one-way ledger v2 bump that locks the previous release out of the
        // file. See `converge_schema_at_open`.
        let head_canonical = converge_schema_at_open(&mut writer)?;

        let mut readers = Vec::with_capacity(READ_POOL_SIZE);
        for index in 0..READ_POOL_SIZE {
            // `ReadOnly` (SQLITE_OPEN_READ_ONLY) is the honest form of the
            // historical `PRAGMA query_only=ON` reader configuration: the
            // connection itself cannot write, and a reader never converts
            // the file's journal mode.
            let reader = meerkat_sqlite::open(path, meerkat_sqlite::ConnectionProfile::ReadOnly)
                .map_err(|e| mechanics_err(&format!("open reader {index}"), e))?;
            readers.push(reader);
        }

        Ok(Self {
            inner: Arc::new(LocalContinuityStoreInner {
                db_path: path.to_path_buf(),
                writer: Mutex::new(writer),
                readers: ReadConnections::Pool(ReadConnectionPool::new(readers)),
                // A stamped ledger implies the tables; the reverse does not
                // hold, so the table latch is seeded from the same fact and
                // widened later by `head_tables_available`.
                head_canonical_schema: AtomicBool::new(head_canonical),
                head_canonical_ledger: AtomicBool::new(head_canonical),
            }),
        })
    }

    /// Open the store and read its fencing-token floor without blocking a
    /// Tokio worker. Async builders and gateways must use this seam because
    /// SQLite open/schema/WAL setup can wait on the filesystem or a database
    /// lock for the configured busy timeout.
    pub async fn open_with_fencing_floor(
        path: impl Into<PathBuf>,
    ) -> Result<(Self, u64), ContinuityStoreError> {
        let path = path.into();
        tokio::task::spawn_blocking(move || {
            let store = Self::open(path)?;
            let fencing_floor = store.max_fencing_token()?;
            Ok((store, fencing_floor))
        })
        .await
        .map_err(|error| {
            ContinuityStoreError::Io(format!(
                "open_with_fencing_floor blocking worker failed: {error}"
            ))
        })?
    }

    /// Commit the head-canonical schema (ledger `mobkit-continuity` v1 -> v2)
    /// into an existing database file as an explicit operator action.
    ///
    /// This is the `storage-migrate --apply` route. It is separate from
    /// [`Self::open`] on purpose: the bump locks binaries older than this
    /// release out of the file (`SchemaFromTheFuture`), so launching a new
    /// gateway must never commit it as a side effect. Runs under whatever
    /// exclusive maintenance fence the caller already holds.
    ///
    /// # Errors
    ///
    /// Returns `ContinuityStoreError::Io` when the file cannot be opened or
    /// the migration cannot be applied.
    pub fn apply_head_canonical_schema_at(
        path: impl AsRef<Path>,
    ) -> Result<bool, ContinuityStoreError> {
        let mut conn =
            meerkat_sqlite::open(path.as_ref(), meerkat_sqlite::ConnectionProfile::PRIMARY)
                .map_err(|e| mechanics_err("open writer for head-canonical migration", e))?;
        let report = apply_head_canonical_schema(&mut conn)
            .map_err(|e| mechanics_err("apply head-canonical schema", e))?;
        Ok(report.migrated())
    }

    /// Offline head-canonical backfill for a legacy v1 corpus.
    ///
    /// The lazy path mints a head row only inside a delta write
    /// (`ensure_head_canonical_for_write_in_txn`), so a corpus whose
    /// documents are large enough to make that write expensive can never
    /// leave the whole-document branch under its own steam: the conversion
    /// is gated behind the very write it makes slow. This is the operator
    /// path `MOBKIT_CONTINUITY_DOMAIN`'s stamp contract has always named
    /// and never had.
    ///
    /// Contract, in the order it matters:
    /// - **Resumable.** ONE transaction per session. An interrupted run
    ///   leaves every already-converted session converted; re-running
    ///   resumes on the remainder, because the pending set is derived from
    ///   the absence of a head row rather than from a cursor.
    /// - **The blob is retained.** `migrate_legacy_blob_in_txn` leaves the
    ///   `session_snapshots` row untouched as a frozen archive.
    /// - **The ledger stamps only on complete conversion.** A partial run
    ///   leaves the file at v1, so CONTINUITY DOES NOT BECOME THE DOMAIN THAT
    ///   BLOCKS an older binary. This is why the stamp is not folded into the
    ///   per-session transaction.
    ///
    ///   Deliberately NOT "rollback stays available": a real state directory
    ///   carries several ledgered domains (runtime-store, schedule-store,
    ///   workgraph, console, metadata, continuity), and any one of them being
    ///   ahead of the target binary refuses the open on its own. Measured on
    ///   a production clone, `rpc_gateway` 0.8.5 refused at
    ///   `runtime-store` (file v2, binary ceiling v1) and never reached
    ///   continuity at all. So holding this domain at v1 is necessary for
    ///   rollback and nowhere near sufficient; whether rollback is actually
    ///   available is a per-domain question about the WHOLE state dir and is
    ///   not a claim this function is entitled to make.
    /// - **Dry-run mutates nothing**, including the DDL: a caller inspecting
    ///   a v1 file gets a count and no schema change.
    ///
    /// The caller is responsible for the exclusive maintenance fence; this
    /// function does not take one, exactly as the other `*_at` maintenance
    /// entry points do not.
    ///
    /// # Errors
    ///
    /// Returns [`ContinuityStoreError`] if the file cannot be opened or the
    /// pending set cannot be read. Per-session conversion failures are
    /// collected into the report rather than aborting the run, so one
    /// unconvertible session does not strand the rest.
    pub fn backfill_head_canonical_sessions_at(
        path: impl AsRef<Path>,
        apply: bool,
        acknowledged_rows: &std::collections::BTreeSet<String>,
    ) -> Result<HeadCanonicalBackfillReport, ContinuityStoreError> {
        // A dry run opens READ-ONLY, and that is a correctness requirement
        // rather than tidiness. The writer profile sets `journal_mode=WAL`,
        // which is a durable change to the file: a caller inspecting a
        // DELETE-mode corpus would find it converted to WAL (and `-wal` /
        // `-shm` siblings created) purely by asking what a migration WOULD do.
        // "Dry run mutates nothing" has to include the pragmas, or an
        // operator cannot use it to inspect a file they are not ready to
        // change.
        let mut conn = if apply {
            meerkat_sqlite::open(path.as_ref(), meerkat_sqlite::ConnectionProfile::PRIMARY)
                .map_err(|e| mechanics_err("open writer for head-canonical backfill", e))?
        } else {
            Connection::open_with_flags(
                path.as_ref(),
                rusqlite::OpenFlags::SQLITE_OPEN_READ_ONLY
                    | rusqlite::OpenFlags::SQLITE_OPEN_NO_MUTEX
                    | rusqlite::OpenFlags::SQLITE_OPEN_URI,
            )
            .map_err(|e| sqlite_err("open read-only for head-canonical dry run", e))?
        };

        let (pending, unparseable) = pending_head_canonical_sessions(&conn)?;
        let mut report = HeadCanonicalBackfillReport {
            examined: pending.len(),
            applied: apply,
            skipped_unparseable: unparseable,
            ..HeadCanonicalBackfillReport::default()
        };
        if !apply {
            return Ok(report);
        }

        // The DDL half, once, before any conversion. Additive and
        // `IF NOT EXISTS`; still no ledger bump.
        {
            let tx = conn
                .transaction()
                .map_err(|e| sqlite_err("begin head-canonical schema convergence", e))?;
            converge_head_canonical_schema_in_txn(&tx)?;
            tx.commit()
                .map_err(|e| sqlite_err("commit head-canonical schema convergence", e))?;
        }

        for candidate in pending {
            match backfill_one_session(&mut conn, &candidate) {
                Ok(BackfillOutcome::Converted) => {
                    report.converted.push(candidate.session_id.clone());
                }
                // A conversion the deployment had already outgrown, replaced.
                // Reported separately: an operator re-running after a failed
                // crossing needs to see that prior work was redone, not just
                // that the run "succeeded".
                Ok(BackfillOutcome::Reconverted) => {
                    report.reconverted.push(candidate.session_id.clone());
                }
                Ok(BackfillOutcome::AlreadyCurrent) => {}
                // The blob vanished between census and conversion. Not a
                // failure, but not a conversion either — record it so a
                // complete-conversion claim cannot be made on a corpus that
                // changed under the fence.
                Ok(BackfillOutcome::Vanished) => {
                    report.vanished.push(candidate.session_id.clone());
                }
                Err(error) => report
                    .failures
                    .push((candidate.session_id.clone(), error.to_string())),
            }
        }

        // Stamp ONLY when the corpus is wholly across — which includes a
        // corpus that had nothing to convert. The stamp means "no legacy
        // blob is left unconverted", not "this run did work"; withholding it
        // from an already-clean corpus would strand such a file at v1
        // forever. Any failure, or any session that disappeared mid-run,
        // leaves the file at v1, so continuity does not become the domain
        // that blocks an older binary. Whether rollback is available at all
        // depends on every other ledgered domain in the state dir, which this
        // verb neither inspects nor controls.
        // Malformed rows BLOCK by default. A row this classifier calls
        // malformed may be a corrupted durable session, or a real session the
        // classifier is simply too strict about — a widened identity grammar,
        // a shape written by an older binary. Those are indistinguishable
        // here, and the distinction only matters at the one step that cannot
        // be undone. So the operator acknowledges them explicitly or the
        // ledger does not advance; nobody is stranded, but nothing crosses
        // the one-way door without a human having seen what is left behind.
        // Acknowledgement is by STABLE ROW IDENTITY, never by count. An
        // operator who read a list of three rows must not silently authorise
        // a different three on a later run, so every skipped row has to be
        // named. Unnamed rows are reported individually rather than as a
        // total, because the operator has to be able to act on them.
        let unacknowledged: Vec<&String> = report
            .skipped_unparseable
            .iter()
            .filter(|row| !acknowledged_rows.contains(*row))
            .collect();
        if !unacknowledged.is_empty() {
            report.failures.push((
                String::new(),
                format!(
                    "refusing ledger stamp: {} blob row(s) could not be parsed as sessions and \
                     were not acknowledged: {}",
                    unacknowledged.len(),
                    unacknowledged
                        .iter()
                        .map(|row| row.as_str())
                        .collect::<Vec<_>>()
                        .join(", ")
                ),
            ));
        }
        if report.failures.is_empty() && report.vanished.is_empty() {
            // A failure HERE must not discard the report. By this point
            // sessions have been converted and committed in their own
            // transactions; returning Err would hand the operator an error
            // with no record of the work that already happened, and they
            // would have no way to know whether to expect it on a re-run.
            // Record it as a failure and return the report instead.
            let mut remaining = match blob_rows_without_head(&conn) {
                Ok(rows) => rows,
                Err(error) => {
                    report.failures.push((
                        String::new(),
                        format!("refusing ledger stamp: final verification failed: {error}"),
                    ));
                    return Ok(report);
                }
            };
            // A row the operator explicitly acknowledged as unparseable will
            // never have a head — that is what acknowledging it meant. It is
            // not evidence of unfinished work, so it must not block the stamp
            // the acknowledgement was given to permit.
            remaining.retain(|row| !acknowledged_rows.contains(row));
            if remaining.is_empty() {
                match conn.transaction() {
                    Ok(tx) => match stamp_head_canonical_ledger_in_txn(&tx).and_then(|()| {
                        tx.commit()
                            .map_err(|e| sqlite_err("commit head-canonical ledger stamp", e))
                    }) {
                        Ok(()) => report.ledger_stamped = true,
                        // Conversions stand; only the stamp failed. The file
                        // stays at v1, which is the safe outcome, and the
                        // operator keeps the record of what converted.
                        Err(error) => report.failures.push((
                            String::new(),
                            format!("conversions committed but ledger stamp failed: {error}"),
                        )),
                    },
                    Err(error) => report.failures.push((
                        String::new(),
                        format!("conversions committed but ledger stamp could not begin: {error}"),
                    )),
                }
            } else {
                // Re-census disagreed with the per-session results. Refuse to
                // stamp rather than trust the optimistic count.
                report.failures.push((
                    String::new(),
                    format!(
                        "refusing ledger stamp: {} session(s) still lack a head row after conversion",
                        remaining.len()
                    ),
                ));
            }
        }
        Ok(report)
    }

    /// Open an in-memory store (for testing).
    ///
    /// # Errors
    ///
    /// Returns `ContinuityStoreError::Io` if initialization fails.
    pub fn in_memory() -> Result<Self, ContinuityStoreError> {
        let mut writer =
            Connection::open_in_memory().map_err(|e| sqlite_err("in-memory open", e))?;
        // Same staged convergence as the file path, so the lazy v2 bump is
        // exercised identically in tests and in production.
        let head_canonical = converge_schema_at_open(&mut writer)?;
        Ok(Self {
            inner: Arc::new(LocalContinuityStoreInner {
                db_path: PathBuf::from(":memory:"),
                writer: Mutex::new(writer),
                readers: ReadConnections::Writer,
                head_canonical_schema: AtomicBool::new(head_canonical),
                head_canonical_ledger: AtomicBool::new(head_canonical),
            }),
        })
    }

    /// The highest fencing token ever committed to this store, across BOTH
    /// `continuity_records` and `session_snapshots` (0 if the store is empty).
    ///
    /// The bundled [`LocalLeaseProvider`](super::local_lease::LocalLeaseProvider)
    /// seeds its monotonic counter from this on startup so fencing tokens keep
    /// advancing across process restarts. Without it the provider's in-memory
    /// counter resets to 1 and restore presents a stale token that this store's
    /// compare-and-set rejects — the v0.7.8 "stale fencing token: presented 1,
    /// current N" restart abort.
    ///
    /// # Errors
    ///
    /// Returns `ContinuityStoreError::Io` on a query failure.
    pub fn max_fencing_token(&self) -> Result<u64, ContinuityStoreError> {
        self.inner.with_reader(|connection| {
            // The head-canonical arm only exists once the file carries the
            // channel; on a v1 file the union of the two historical tables
            // IS the whole high-water.
            let sql = if self.inner.head_tables_available(connection)? {
                "SELECT COALESCE(MAX(t), 0) FROM (
                        SELECT MAX(fencing_token) AS t FROM continuity_records
                        UNION ALL
                        SELECT MAX(fencing_token) AS t FROM session_snapshots
                        UNION ALL
                        SELECT MAX(fencing_token) AS t FROM continuity_session_heads
                    )"
            } else {
                "SELECT COALESCE(MAX(t), 0) FROM (
                        SELECT MAX(fencing_token) AS t FROM continuity_records
                        UNION ALL
                        SELECT MAX(fencing_token) AS t FROM session_snapshots
                    )"
            };
            connection
                .query_row(sql, [], |row| row.get::<_, u64>(0))
                .map_err(|e| sqlite_err("max_fencing_token", e))
        })
    }

    async fn run_blocking<T>(
        &self,
        operation_name: &'static str,
        operation: impl FnOnce(Arc<LocalContinuityStoreInner>) -> Result<T, ContinuityStoreError>
        + Send
        + 'static,
    ) -> Result<T, ContinuityStoreError>
    where
        T: Send + 'static,
    {
        let inner = self.inner.clone();
        tokio::task::spawn_blocking(move || operation(inner))
            .await
            .map_err(|e| {
                ContinuityStoreError::Io(format!("{operation_name} blocking worker failed: {e}"))
            })?
    }
}

// ---------------------------------------------------------------------------
// Head-canonical session representation (M4b)
//
// Canonical-representation rule, per session: a `continuity_session_heads`
// row exists => head+rows are the SOLE durable authority for that session,
// and its `session_snapshots` row (if any) is a frozen archive that is never
// read or written again. No head row => the legacy blob behavior is
// byte-for-byte unchanged. This mirrors meerkat-store's own rule for
// `session_heads` vs `sessions` and is what makes the delta channel a
// REPLACEMENT of the byte authority rather than a second one beside it.
//
// Guard semantics are meerkat's published validators verbatim
// (`validate_save_head_transition`, `validate_commit_rewrite_transition`,
// `strand_layout_for_history`, `reconstruct_rewrite_record`), so this store
// mirror can never accept or reject something the meerkat service would not.
// ---------------------------------------------------------------------------

/// Map a continuity-store failure onto the session-store error surface the
/// incremental verbs speak, exactly as the whole-blob adapter save does.
fn session_err(context: &str, error: ContinuityStoreError) -> SessionStoreError {
    SessionStoreError::Internal(format!("{context}: {error}"))
}

fn sqlite_session_err(context: &str, error: rusqlite::Error) -> SessionStoreError {
    session_err(context, sqlite_err(context, error))
}

fn now_millis() -> i64 {
    i64::try_from(
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .map(|d| d.as_millis())
            .unwrap_or_default(),
    )
    .unwrap_or(i64::MAX)
}

/// The stored head row plus its CAS token.
type StoredHead = (SessionHead, String);

fn head_row_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
) -> Result<Option<StoredHead>, SessionStoreError> {
    let row = tx
        .query_row(
            "SELECT head_json, cas_token FROM continuity_session_heads WHERE session_id = ?1",
            rusqlite::params![id.to_string()],
            |row| Ok((row.get::<_, Vec<u8>>(0)?, row.get::<_, String>(1)?)),
        )
        .optional()
        .map_err(|e| sqlite_session_err("query session head", e))?;
    let Some((head_json, cas_token)) = row else {
        return Ok(None);
    };
    let head: SessionHead =
        serde_json::from_slice(&head_json).map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
    Ok(Some((head, cas_token)))
}

/// The `(identity, generation)` a head row belongs to, when one exists.
fn head_owner_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
) -> Result<Option<(String, u64)>, ContinuityStoreError> {
    tx.query_row(
        "SELECT identity, generation FROM continuity_session_heads WHERE session_id = ?1",
        rusqlite::params![id.to_string()],
        |row| Ok((row.get::<_, String>(0)?, row.get::<_, u64>(1)?)),
    )
    .optional()
    .map_err(|e| sqlite_err("query head owner", e))
}

fn write_head_row_in_txn(
    tx: &Transaction<'_>,
    head: &SessionHead,
    identity: &AgentIdentity,
    generation: ContinuityGeneration,
    version: CheckpointVersion,
    fencing_token: FencingToken,
) -> Result<String, SessionStoreError> {
    let head_json = serde_json::to_vec(head).map_err(SessionStoreError::from)?;
    let cas_token = session_head_cas_token(head)?;
    let message_count = i64::try_from(head.message_count)
        .map_err(|_| SessionStoreError::Corrupted(head.id.clone()))?;
    let rewrite_count = i64::try_from(head.rewrite_count)
        .map_err(|_| SessionStoreError::Corrupted(head.id.clone()))?;
    tx.execute(
        "INSERT INTO continuity_session_heads (
            session_id, identity, generation, checkpoint_version, fencing_token,
            head_revision, message_count, rewrite_count, head_json, cas_token
         ) VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7, ?8, ?9, ?10)
         ON CONFLICT(session_id) DO UPDATE SET
            identity = excluded.identity,
            generation = excluded.generation,
            checkpoint_version = excluded.checkpoint_version,
            fencing_token = excluded.fencing_token,
            head_revision = excluded.head_revision,
            message_count = excluded.message_count,
            rewrite_count = excluded.rewrite_count,
            head_json = excluded.head_json,
            cas_token = excluded.cas_token",
        rusqlite::params![
            head.id.to_string(),
            identity.as_str(),
            generation.get(),
            version.get(),
            fencing_token.get(),
            head.head_revision,
            message_count,
            rewrite_count,
            head_json,
            cas_token,
        ],
    )
    .map_err(|e| sqlite_session_err("upsert session head", e))?;
    Ok(cas_token)
}

fn strand_row_count_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
    strand: &TranscriptStrandId,
) -> Result<u64, SessionStoreError> {
    let count: i64 = tx
        .query_row(
            "SELECT COUNT(*) FROM continuity_strand_messages \
             WHERE session_id = ?1 AND strand = ?2",
            rusqlite::params![id.to_string(), strand.as_str()],
            |row| row.get(0),
        )
        .map_err(|e| sqlite_session_err("count strand rows", e))?;
    u64::try_from(count).map_err(|_| SessionStoreError::Corrupted(id.clone()))
}

fn strand_row_bytes_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
    strand: &TranscriptStrandId,
    range: std::ops::Range<u64>,
) -> Result<Vec<Vec<u8>>, SessionStoreError> {
    if range.start >= range.end {
        return Ok(Vec::new());
    }
    let start = i64::try_from(range.start).map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
    let end = i64::try_from(range.end).map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
    let mut statement = tx
        .prepare_cached(
            "SELECT message_json FROM continuity_strand_messages
             WHERE session_id = ?1 AND strand = ?2 AND seq >= ?3 AND seq < ?4
             ORDER BY seq ASC",
        )
        .map_err(|e| sqlite_session_err("prepare strand read", e))?;
    let rows = statement
        .query_map(
            rusqlite::params![id.to_string(), strand.as_str(), start, end],
            |row| row.get::<_, Vec<u8>>(0),
        )
        .map_err(|e| sqlite_session_err("read strand rows", e))?
        .collect::<Result<Vec<_>, _>>()
        .map_err(|e| sqlite_session_err("read strand rows", e))?;
    if rows.len() as u64 != range.end - range.start {
        return Err(SessionStoreError::Corrupted(id.clone()));
    }
    Ok(rows)
}

fn strand_messages_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
    strand: &TranscriptStrandId,
    range: std::ops::Range<u64>,
) -> Result<Vec<Message>, SessionStoreError> {
    strand_row_bytes_in_txn(tx, id, strand, range)?
        .into_iter()
        .map(|bytes| {
            serde_json::from_slice::<Message>(&bytes)
                .map_err(|_| SessionStoreError::Corrupted(id.clone()))
        })
        .collect()
}

/// Append rows under the trait's contiguity / idempotency / immutability
/// contract: `base_seq` may not exceed the current row count; overlapping
/// rows must be byte-identical; shrink is structurally inexpressible.
fn insert_strand_rows_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
    strand: &TranscriptStrandId,
    base_seq: u64,
    messages: &[Message],
    identity: &AgentIdentity,
    generation: ContinuityGeneration,
) -> Result<(), SessionStoreError> {
    let existing = strand_row_count_in_txn(tx, id, strand)?;
    if base_seq > existing {
        return Err(SessionStoreError::TranscriptContinuityViolation {
            id: id.clone(),
            previous_revision: format!("strand-rows:{existing}"),
            incoming_revision: format!("append-base-seq:{base_seq}"),
            reason: format!(
                "append at base_seq {base_seq} would leave a gap in strand {strand} with \
                 {existing} rows"
            ),
        });
    }
    let serialized: Vec<Vec<u8>> = messages
        .iter()
        .map(|message| serde_json::to_vec(message).map_err(SessionStoreError::from))
        .collect::<Result<_, _>>()?;
    let overlap_end = existing.min(base_seq + serialized.len() as u64);
    if overlap_end > base_seq {
        let stored = strand_row_bytes_in_txn(tx, id, strand, base_seq..overlap_end)?;
        for (offset, stored_bytes) in stored.iter().enumerate() {
            if stored_bytes != &serialized[offset] {
                return Err(SessionStoreError::TranscriptContinuityViolation {
                    id: id.clone(),
                    previous_revision: format!("strand:{strand} seq:{}", base_seq + offset as u64),
                    incoming_revision: "divergent-bytes".to_string(),
                    reason: format!(
                        "append would overwrite immutable row (strand {strand}, seq {}) with \
                         different bytes",
                        base_seq + offset as u64
                    ),
                });
            }
        }
    }
    let created_at_ms = now_millis();
    for (offset, bytes) in serialized.iter().enumerate() {
        let seq = base_seq + offset as u64;
        if seq < existing {
            continue;
        }
        let seq_i64 = i64::try_from(seq).map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
        tx.execute(
            "INSERT INTO continuity_strand_messages
                (session_id, strand, seq, message_json, identity, generation, created_at_ms)
             VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7)",
            rusqlite::params![
                id.to_string(),
                strand.as_str(),
                seq_i64,
                bytes,
                identity.as_str(),
                generation.get(),
                created_at_ms,
            ],
        )
        .map_err(|e| sqlite_session_err("insert strand row", e))?;
    }
    Ok(())
}

struct RewriteRow {
    commit: TranscriptRewriteCommit,
    parent_strand: TranscriptStrandId,
    parent_len: u64,
    strand: TranscriptStrandId,
    strand_len: u64,
}

fn rewrite_row_count_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
) -> Result<u64, SessionStoreError> {
    let count: i64 = tx
        .query_row(
            "SELECT COUNT(*) FROM continuity_session_rewrites WHERE session_id = ?1",
            rusqlite::params![id.to_string()],
            |row| row.get(0),
        )
        .map_err(|e| sqlite_session_err("count rewrite rows", e))?;
    u64::try_from(count).map_err(|_| SessionStoreError::Corrupted(id.clone()))
}

/// The adopted rewrite records of a head-canonical session, reconstructed
/// from the persisted rows in the caller's transaction. One place, so every
/// caller reconstructs history identically.
fn rewrite_records_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
    max_idx_exclusive: u64,
) -> Result<Vec<TranscriptRewriteRecord>, SessionStoreError> {
    rewrite_rows_in_txn(tx, id, max_idx_exclusive)?
        .into_iter()
        .map(|row| {
            let parent_messages =
                strand_messages_in_txn(tx, id, &row.parent_strand, 0..row.parent_len)?;
            let revision_messages = strand_messages_in_txn(tx, id, &row.strand, 0..row.strand_len)?;
            reconstruct_rewrite_record(id, row.commit, parent_messages, revision_messages)
        })
        .collect()
}

fn rewrite_rows_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
    max_idx_exclusive: u64,
) -> Result<Vec<RewriteRow>, SessionStoreError> {
    let limit =
        i64::try_from(max_idx_exclusive).map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
    let mut statement = tx
        .prepare_cached(
            "SELECT commit_json, parent_strand, parent_len, strand, strand_len
             FROM continuity_session_rewrites
             WHERE session_id = ?1 AND rewrite_idx < ?2
             ORDER BY rewrite_idx ASC",
        )
        .map_err(|e| sqlite_session_err("prepare rewrite read", e))?;
    let rows = statement
        .query_map(rusqlite::params![id.to_string(), limit], |row| {
            Ok((
                row.get::<_, Vec<u8>>(0)?,
                row.get::<_, String>(1)?,
                row.get::<_, i64>(2)?,
                row.get::<_, String>(3)?,
                row.get::<_, i64>(4)?,
            ))
        })
        .map_err(|e| sqlite_session_err("read rewrite rows", e))?
        .collect::<Result<Vec<_>, _>>()
        .map_err(|e| sqlite_session_err("read rewrite rows", e))?;
    rows.into_iter()
        .map(
            |(commit_json, parent_strand, parent_len, strand, strand_len)| {
                let commit: TranscriptRewriteCommit = serde_json::from_slice(&commit_json)
                    .map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
                Ok(RewriteRow {
                    commit,
                    parent_strand: TranscriptStrandId::from_persisted(parent_strand),
                    parent_len: u64::try_from(parent_len)
                        .map_err(|_| SessionStoreError::Corrupted(id.clone()))?,
                    strand: TranscriptStrandId::from_persisted(strand),
                    strand_len: u64::try_from(strand_len)
                        .map_err(|_| SessionStoreError::Corrupted(id.clone()))?,
                })
            },
        )
        .collect()
}

fn insert_rewrite_row_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
    rewrite_idx: u64,
    row: &RewriteRow,
    identity: &AgentIdentity,
    generation: ContinuityGeneration,
) -> Result<(), SessionStoreError> {
    let commit_json = serde_json::to_vec(&row.commit).map_err(SessionStoreError::from)?;
    let idx = i64::try_from(rewrite_idx).map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
    let parent_len =
        i64::try_from(row.parent_len).map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
    let strand_len =
        i64::try_from(row.strand_len).map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
    tx.execute(
        "INSERT OR REPLACE INTO continuity_session_rewrites
            (session_id, rewrite_idx, parent_strand, parent_len, strand, strand_len,
             commit_json, identity, generation, created_at_ms)
         VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7, ?8, ?9, ?10)",
        rusqlite::params![
            id.to_string(),
            idx,
            row.parent_strand.as_str(),
            parent_len,
            row.strand.as_str(),
            strand_len,
            commit_json,
            identity.as_str(),
            generation.get(),
            now_millis(),
        ],
    )
    .map_err(|e| sqlite_session_err("insert rewrite row", e))?;
    Ok(())
}

fn blob_session_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
) -> Result<Option<Session>, SessionStoreError> {
    let data = tx
        .query_row(
            "SELECT data FROM session_snapshots WHERE session_id = ?1",
            rusqlite::params![id.to_string()],
            |row| row.get::<_, Vec<u8>>(0),
        )
        .optional()
        .map_err(|e| sqlite_session_err("read archived snapshot", e))?;
    let Some(data) = data else {
        return Ok(None);
    };
    match serde_json::from_slice::<Session>(&data) {
        Ok(session) => Ok(Some(session)),
        Err(decode_error) => import_released_blob_in_txn(tx, id, &data, &decode_error).map(Some),
    }
}

/// Same-transaction one-time import of a released 0.8.10 blob row.
///
/// Per the banked 0.8.11 import contract: the public core importer is the
/// sole boundary allowed to interpret released evidence, the non-Clone
/// receipt is consumed by the adoption, the source blob SHA is re-proved
/// against the exact bytes read, nothing mints the retired vocabulary, and
/// every proof failure fails closed. The durable adoption rewrites the
/// payload bytes INSIDE the caller's transaction; the row's cursor custody
/// columns stay exactly as observed. A read-only transaction (the read-pool
/// fallbacks) serves the imported document without adoption - the first
/// write-path decode (head-canonical conversion, delta writes) adopts.
fn import_released_blob_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
    source: &[u8],
    decode_error: &serde_json::Error,
) -> Result<Session, SessionStoreError> {
    use sha2::Digest as _;

    let imported = meerkat_core::import_released_0810_session(source).map_err(|import| {
        SessionStoreError::Serialization(format!(
            "continuity blob {id} decodes neither as a current document ({decode_error}) nor as              a released 0.8.10 envelope ({import})"
        ))
    })?;
    let (session, receipt) = imported.into_parts();
    let observed_sha256: [u8; 32] = sha2::Sha256::digest(source).into();
    if receipt.source_document_sha256() != &observed_sha256 {
        return Err(SessionStoreError::Serialization(format!(
            "continuity blob {id} changed during exact released-0.8.10 import"
        )));
    }
    if receipt.session_id() != id {
        return Err(SessionStoreError::Serialization(format!(
            "continuity blob key {id} contains released session {}",
            receipt.session_id()
        )));
    }
    let current = session
        .to_persisted_bytes()
        .map_err(|e| SessionStoreError::Serialization(e.to_string()))?;
    // The receipt is consumed by this durable adoption inside the caller's
    // transaction.
    drop(receipt);
    let changed = match tx.execute(
        "UPDATE session_snapshots SET data = ?2 WHERE session_id = ?1",
        rusqlite::params![id.to_string(), current],
    ) {
        Ok(changed) => changed,
        Err(rusqlite::Error::SqliteFailure(failure, _))
            if failure.code == rusqlite::ErrorCode::ReadOnly =>
        {
            // Read-pool fallback: serve the imported document; the first
            // write-path decode (head-canonical conversion, delta writes)
            // performs the durable adoption.
            tracing::info!(
                session_id = %id,
                "released 0.8.10 blob imported on a read-only connection; durable adoption \
                 follows the first write-path decode"
            );
            return Ok(session);
        }
        Err(e) => return Err(sqlite_session_err("adopt imported released snapshot", e)),
    };
    if changed != 1 {
        return Err(SessionStoreError::Corrupted(id.clone()));
    }
    tracing::info!(
        session_id = %id,
        source_bytes = source.len(),
        current_bytes = current.len(),
        "released 0.8.10 blob imported and durably adopted in-transaction"
    );
    Ok(session)
}

/// Full-vector projection of the 0.8.11 splice-based [`StrandLayout`].
///
/// The continuity schema stores every strand as its complete message vector
/// (there is no strand-link table), so the append-only suffix/splice layout
/// is materialized back into full per-strand rows. The walk mirrors the
/// lineage validation in meerkat's own blob conversion: parent-transition
/// splice, parent-suffix extension, successor replacement splice, tail.
struct MaterializedBlobLayout {
    /// Full rows per strand, in first-appearance order. A strand id extended
    /// across rewrites (exact-append parents) holds its final, longest vector.
    strands: Vec<(TranscriptStrandId, Vec<Message>)>,
    rewrites: Vec<RewriteRow>,
    head_strand: TranscriptStrandId,
}

impl MaterializedBlobLayout {
    fn from_layout(
        id: &meerkat_core::types::SessionId,
        layout: &StrandLayout,
    ) -> Result<Self, SessionStoreError> {
        fn decode_rows(
            id: &meerkat_core::types::SessionId,
            rows: &[Vec<u8>],
        ) -> Result<Vec<Message>, SessionStoreError> {
            rows.iter()
                .map(|bytes| {
                    serde_json::from_slice::<Message>(bytes).map_err(|error| {
                        SessionStoreError::InvalidTranscriptRewrite {
                            id: id.clone(),
                            reason: format!("layout strand row does not decode: {error}"),
                        }
                    })
                })
                .collect()
        }
        fn splice_rows(
            id: &meerkat_core::types::SessionId,
            source: &[Message],
            start: u64,
            end: u64,
            replacement: &[Message],
        ) -> Result<Vec<Message>, SessionStoreError> {
            let start =
                usize::try_from(start).map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
            let end = usize::try_from(end).map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
            if start > end || end > source.len() {
                return Err(SessionStoreError::Corrupted(id.clone()));
            }
            let mut rows = Vec::with_capacity(source.len() - (end - start) + replacement.len());
            rows.extend_from_slice(&source[..start]);
            rows.extend_from_slice(replacement);
            rows.extend_from_slice(&source[end..]);
            Ok(rows)
        }
        fn upsert(
            strands: &mut Vec<(TranscriptStrandId, Vec<Message>)>,
            strand: &TranscriptStrandId,
            rows: Vec<Message>,
        ) {
            if let Some(entry) = strands.iter_mut().find(|(sid, _)| sid == strand) {
                entry.1 = rows;
            } else {
                strands.push((strand.clone(), rows));
            }
        }

        let mut strands: Vec<(TranscriptStrandId, Vec<Message>)> = Vec::new();
        let mut current = decode_rows(id, &layout.serialized_anchor)?;
        let mut current_strand = layout.anchor_strand.clone();
        upsert(&mut strands, &current_strand, current.clone());
        let mut rewrites = Vec::with_capacity(layout.rewrites.len());
        for rewrite in &layout.rewrites {
            match &rewrite.parent_transition {
                meerkat_core::session_store::PreparedHeadCanonicalParentTransition::ExactAppend => {
                    if rewrite.parent_strand != current_strand {
                        return Err(SessionStoreError::Corrupted(id.clone()));
                    }
                }
                meerkat_core::session_store::PreparedHeadCanonicalParentTransition::ExactSplice(
                    parent_splice,
                ) => {
                    let link = parent_splice.link_splice();
                    let replacement = decode_rows(id, parent_splice.serialized_replacement())?;
                    current = splice_rows(
                        id,
                        &current,
                        link.splice_start,
                        link.splice_end,
                        &replacement,
                    )?;
                    current_strand = rewrite.parent_strand.clone();
                }
            }
            if u64::try_from(current.len()).map_err(|_| SessionStoreError::Corrupted(id.clone()))?
                != rewrite.parent_base_seq
            {
                return Err(SessionStoreError::Corrupted(id.clone()));
            }
            current.extend(decode_rows(id, &rewrite.serialized_parent_suffix)?);
            let parent_len = u64::try_from(current.len())
                .map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
            upsert(&mut strands, &current_strand, current.clone());
            let replacement = decode_rows(id, &rewrite.serialized_replacement)?;
            current = splice_rows(
                id,
                &current,
                rewrite.link_splice.splice_start,
                rewrite.link_splice.successor_end,
                &replacement,
            )?;
            if u64::try_from(current.len()).map_err(|_| SessionStoreError::Corrupted(id.clone()))?
                != rewrite.link_splice.strand_len
            {
                return Err(SessionStoreError::Corrupted(id.clone()));
            }
            current_strand = rewrite.strand.clone();
            upsert(&mut strands, &current_strand, current.clone());
            rewrites.push(RewriteRow {
                commit: rewrite.commit.clone(),
                parent_strand: rewrite.parent_strand.clone(),
                parent_len,
                strand: rewrite.strand.clone(),
                strand_len: rewrite.link_splice.strand_len,
            });
        }
        if layout.head_strand != current_strand {
            return Err(SessionStoreError::Corrupted(id.clone()));
        }
        current.extend(decode_rows(id, &layout.serialized_tail)?);
        if u64::try_from(current.len()).map_err(|_| SessionStoreError::Corrupted(id.clone()))?
            != layout.head_len
        {
            return Err(SessionStoreError::Corrupted(id.clone()));
        }
        upsert(&mut strands, &current_strand, current);
        Ok(Self {
            strands,
            rewrites,
            head_strand: layout.head_strand.clone(),
        })
    }
}

fn layout_for_blob_session(
    session: &Session,
) -> Result<(MaterializedBlobLayout, SessionHead), SessionStoreError> {
    let history = session
        .validated_transcript_history_state()
        .map_err(|err| SessionStoreError::InvalidTranscriptRewrite {
            id: session.id().clone(),
            reason: format!("stored transcript history state is malformed: {err}"),
        })?;
    let layout = strand_layout_for_history(session, history.as_ref())?;
    let materialized = MaterializedBlobLayout::from_layout(session.id(), &layout)?;
    let head = SessionHead::from_session(
        session,
        materialized.head_strand.clone(),
        materialized.rewrites.len() as u64,
    )?;
    Ok((materialized, head))
}

/// One-time per-session migration inside the caller's transaction: lay the
/// legacy blob out as strands + rewrite rows + a head row. The blob row is
/// left untouched as a frozen archive and is never read again once the head
/// row exists. Reads never migrate.
fn migrate_legacy_blob_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
    identity: &AgentIdentity,
    generation: ContinuityGeneration,
    version: CheckpointVersion,
    fencing_token: FencingToken,
) -> Result<Option<StoredHead>, SessionStoreError> {
    let Some(session) = blob_session_in_txn(tx, id)? else {
        return Ok(None);
    };
    // IDENTITY EQUALITY, BEFORE ANY WRITE.
    //
    // The row key and the blob's own `Session.id` must agree. If they do not,
    // every write below would be misattributed: the orphan delete clears rows
    // for the ROW key while the strand/rewrite/head writes are laid out from
    // the DECODED session, so a row keyed A carrying session B can write — or
    // overwrite — B's head row. A later re-census refuses the ledger stamp,
    // but by then the damage is durable: a stamp guard is not a write guard.
    //
    // So this is checked here, at the top of the shared primitive, rather
    // than in any one caller: the lazy delta-write path reaches it too, and a
    // mismatch is equally a defect there. Refuse the row, write nothing, and
    // let the caller report it by key.
    if session.id() != id {
        tracing::error!(
            row_session_id = %id,
            blob_session_id = %session.id(),
            identity = %identity,
            "refusing legacy conversion: stored blob decodes to a DIFFERENT session than its row key"
        );
        return Err(SessionStoreError::Corrupted(id.clone()));
    }
    // Clear any ORPHAN rows first — strand/rewrite rows for this session
    // that no head row adopts.
    //
    // They exist because an append that creates no head state commits its
    // rows and leaves the ledger at v1 (the rollback-safety rule in
    // `delta_write`), so an interrupted creation window, or a rollback to a
    // previous release followed by a re-upgrade, can leave rows behind that
    // disagree with the blob this migration is about to lay out. Without
    // this, `insert_strand_rows_in_txn` would refuse the divergence as an
    // immutability violation and the session would be permanently
    // unwritable.
    //
    // Safe unconditionally: this function is reached only with NO head row
    // for `id`, and every read path gates on the head row, so nothing can
    // observe these rows. The blob is the authority being migrated.
    delete_orphan_head_canonical_rows_in_txn(tx, id)?;
    // This one-time conversion is the ONE phase of a boot guaranteed to be
    // slow (minutes of CPU on a large legacy document) and it previously
    // emitted nothing — a supervised deploy read the silence as a stalled
    // candidate and aborted its activation. Say what is happening, at entry
    // and completion, so a long migration is visibly a long migration.
    let started = std::time::Instant::now();
    tracing::info!(
        session_id = %id,
        identity = %identity,
        messages = session.messages().len(),
        "head-canonical conversion of a legacy blob starting"
    );
    let (layout, head) = layout_for_blob_session(&session)?;
    for (strand, rows) in &layout.strands {
        insert_strand_rows_in_txn(tx, id, strand, 0, rows, identity, generation)?;
    }
    for (idx, rewrite) in layout.rewrites.iter().enumerate() {
        insert_rewrite_row_in_txn(tx, id, idx as u64, rewrite, identity, generation)?;
    }
    let token = write_head_row_in_txn(tx, &head, identity, generation, version, fencing_token)?;
    tracing::info!(
        session_id = %id,
        identity = %identity,
        strands = layout.strands.len(),
        rewrite_rows = layout.rewrites.len(),
        elapsed_ms = started.elapsed().as_millis() as u64,
        "head-canonical conversion of a legacy blob complete"
    );
    Ok(Some((head, token)))
}

/// Head row if present, otherwise migrate a legacy blob in this transaction.
/// The FIRST delta write migrates; reads synthesize without writing.
fn ensure_head_canonical_for_write_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
    identity: &AgentIdentity,
    generation: ContinuityGeneration,
    version: CheckpointVersion,
    fencing_token: FencingToken,
) -> Result<Option<StoredHead>, SessionStoreError> {
    if let Some(existing) = head_row_in_txn(tx, id)? {
        return Ok(Some(existing));
    }
    migrate_legacy_blob_in_txn(tx, id, identity, generation, version, fencing_token)
}

fn materialize_slim_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
    head: &SessionHead,
) -> Result<Session, SessionStoreError> {
    let messages = strand_messages_in_txn(tx, id, &head.strand, 0..head.message_count)?;
    match head.clone().into_session(messages) {
        Ok(session) => Ok(session),
        // Released 0.8.10 HEAD ROW (session envelope v2): interpretable only
        // through the explicit one-time importer — the head-row lane of the
        // same contract `import_released_blob_in_txn` implements for whole
        // blobs. Every 0.8.10-written head refuses current materialization
        // (`Session::from_head_parts` fails typed on the envelope version),
        // so without this lane an entire released head-canonical fleet is
        // unreadable at resume (HomeCore binding, 17/17 identities:
        // "failed to restore session from head row: ... expected current 3,
        // got 2").
        Err(restore_error)
            if head.version == super::contracts::RELEASED_0810_SESSION_ENVELOPE_VERSION =>
        {
            import_released_head_in_txn(
                tx,
                id,
                head,
                &format!("failed current materialization ({restore_error})"),
            )
        }
        Err(err) => Err(err),
    }
}

/// Serialized-verbatim released envelope, reassembled from the exact durable
/// parts a released 0.8.10 head row commits to. `messages` embeds the exact
/// strand row bytes (`RawValue`), never a re-serialization, so the importer
/// interprets precisely what the released writer persisted.
#[derive(serde::Serialize)]
struct ReleasedHeadEnvelope0810<'a> {
    version: u32,
    id: &'a meerkat_core::types::SessionId,
    messages: &'a [Box<serde_json::value::RawValue>],
    created_at: std::time::SystemTime,
    updated_at: std::time::SystemTime,
    metadata: &'a serde_json::Map<String, serde_json::Value>,
    usage: &'a meerkat_core::Usage,
}

/// One-time released-0.8.10 import for a HEAD-CANONICAL continuity document.
///
/// Same banked import contract as [`import_released_blob_in_txn`], adapted to
/// the head representation: the public core importer is the sole boundary
/// allowed to interpret released evidence, and every proof failure fails
/// closed with the original refusal surfaced (never a healed reading).
///
/// Proof chain, in order:
/// 1. The exact durable strand rows must be the rows the released head
///    committed to: `released_0810_transcript_serialized_rows_digest` (the
///    byte-faithful recomputation of the released transcript digest) must
///    equal `head.head_revision`.
/// 2. The released envelope is reassembled from those exact bytes plus the
///    head's own envelope facts (a released head inlines its full metadata
///    map — `metadata_identity` is a 0.8.11 concept), and handed to
///    `import_released_0810_session`, which re-validates the envelope
///    version and every released metadata shape.
/// 3. The receipt's source digest is re-proved against the exact bytes
///    interpreted, and its session id against the row key.
///
/// This runs on the read pool, so like the blob lane's read-only fallback it
/// serves the imported document WITHOUT durable adoption: the first
/// write-path decode observes the released head, fails its prefix-digest
/// probe against the current algorithm, and rebases the strand under a
/// current-format head — the durable adoption every later read observes.
fn import_released_head_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
    head: &SessionHead,
    refusal_context: &str,
) -> Result<Session, SessionStoreError> {
    use sha2::Digest as _;

    let raw_rows = strand_row_bytes_in_txn(tx, id, &head.strand, 0..head.message_count)?;
    let released_digest = meerkat_core::released_0810_transcript_serialized_rows_digest(&raw_rows)
        .map_err(|digest_error| {
            SessionStoreError::Serialization(format!(
                "continuity head row {id} {refusal_context} and \
                 its strand rows do not admit the released 0.8.10 digest ({digest_error})"
            ))
        })?;
    if released_digest != head.head_revision {
        return Err(SessionStoreError::Serialization(format!(
            "continuity head row {id} {refusal_context} and its \
             strand rows do not match the released head commitment (released digest \
             {released_digest}, head revision {})",
            head.head_revision
        )));
    }
    let messages = raw_rows
        .into_iter()
        .map(|bytes| {
            String::from_utf8(bytes)
                .map_err(|_| SessionStoreError::Corrupted(id.clone()))
                .and_then(|row| {
                    serde_json::value::RawValue::from_string(row)
                        .map_err(|_| SessionStoreError::Corrupted(id.clone()))
                })
        })
        .collect::<Result<Vec<_>, _>>()?;
    let envelope = serde_json::to_vec(&ReleasedHeadEnvelope0810 {
        version: head.version,
        id,
        messages: &messages,
        created_at: head.created_at,
        updated_at: head.updated_at,
        metadata: &head.metadata,
        usage: &head.usage,
    })
    .map_err(|e| SessionStoreError::Serialization(e.to_string()))?;
    let imported = meerkat_core::import_released_0810_session(&envelope).map_err(|import| {
        SessionStoreError::Serialization(format!(
            "continuity head row {id} {refusal_context} and does not interpret as a \
             released 0.8.10 head-canonical document either ({import})"
        ))
    })?;
    let (session, receipt) = imported.into_parts();
    let observed_sha256: [u8; 32] = sha2::Sha256::digest(&envelope).into();
    if receipt.source_document_sha256() != &observed_sha256 {
        return Err(SessionStoreError::Serialization(format!(
            "continuity head row {id} changed during exact released-0.8.10 import"
        )));
    }
    if receipt.session_id() != id {
        return Err(SessionStoreError::Serialization(format!(
            "continuity head key {id} contains released session {}",
            receipt.session_id()
        )));
    }
    drop(receipt);
    tracing::info!(
        session_id = %id,
        released_rows = head.message_count,
        "released 0.8.10 head-canonical document imported on load; durable adoption follows \
         the first write-path decode"
    );
    Ok(session)
}

/// One-time durable adoption of a released 0.8.10 head-canonical document,
/// inside the caller's WRITE transaction (see
/// `ContinuityIncrementalSessions::adopt_released_head_document`).
///
/// A released head with retained rewrites cannot authorize a current
/// mutation - its rewrite-generation authority predates the compact
/// graph/rewrite-prefix carriers, so `session_head_cas_token` refuses it
/// typed and every ordinary write arm is unreachable. Authorization here is
/// the import proof: the stored released document is re-proved through
/// [`import_released_head_in_txn`] (byte proof against the released head
/// commitment + the sanctioned importer + receipt re-proof), `incoming` must
/// be a legal successor of that imported reading (equal or append-extension;
/// the boundary guard refuses genuine divergence typed), and only then is the
/// released representation replaced wholesale with the current-format layout
/// of `incoming` - the same strand/rewrite/head writer the legacy-blob
/// migration uses, so rewrite-carrying documents lay out identically to a
/// converted blob.
fn adopt_released_head_in_txn(
    tx: &Transaction<'_>,
    incoming: &Session,
    identity: &AgentIdentity,
    generation: ContinuityGeneration,
    version: CheckpointVersion,
    fencing_token: FencingToken,
) -> Result<(), SessionStoreError> {
    let id = incoming.id();
    let Some((stored, _token)) = head_row_in_txn(tx, id)? else {
        return Err(SessionStoreError::Internal(format!(
            "released head adoption for session {id} found no durable head row; the adoption \
             lane is only reachable from a stored released head"
        )));
    };
    if stored.version != super::contracts::RELEASED_0810_SESSION_ENVELOPE_VERSION {
        return Err(SessionStoreError::Internal(format!(
            "released head adoption for session {id} found a current head (envelope version \
             {}); refusing to re-adopt a document the ordinary write arms already own",
            stored.version
        )));
    }
    let imported =
        import_released_head_in_txn(tx, id, &stored, "is being adopted on the write path")?;
    meerkat_core::session_store::append_only_save_guard(incoming, Some(&imported))?;
    // The released rows are being REPLACED wholesale inside this transaction;
    // nothing can observe the intermediate state, and the imported reading
    // above is the receipt-proved successor source. The head row itself is
    // upserted by `write_head_row_in_txn`.
    delete_orphan_head_canonical_rows_in_txn(tx, id)?;
    let started = std::time::Instant::now();
    let (layout, head) = layout_for_blob_session(incoming)?;
    for (strand, rows) in &layout.strands {
        insert_strand_rows_in_txn(tx, id, strand, 0, rows, identity, generation)?;
    }
    for (idx, rewrite) in layout.rewrites.iter().enumerate() {
        insert_rewrite_row_in_txn(tx, id, idx as u64, rewrite, identity, generation)?;
    }
    write_head_row_in_txn(tx, &head, identity, generation, version, fencing_token)?;
    tracing::info!(
        session_id = %id,
        released_rows = stored.message_count,
        released_rewrite_count = stored.rewrite_count,
        adopted_rows = head.message_count,
        adopted_rewrite_count = head.rewrite_count,
        elapsed_ms = started.elapsed().as_millis() as u64,
        "released 0.8.10 head-canonical document durably adopted on the write path"
    );
    Ok(())
}

/// Head-canonical compat write for a WHOLE-document verb: delta-append when
/// the incoming transcript extends the persisted head strand, otherwise a
/// `rebase:` strand switch. The archived blob row is never touched.
fn write_head_canonical_session_in_txn(
    tx: &Transaction<'_>,
    session: &Session,
    head: &SessionHead,
    identity: &AgentIdentity,
    generation: ContinuityGeneration,
    version: CheckpointVersion,
    fencing_token: FencingToken,
) -> Result<(), SessionStoreError> {
    let id = session.id();
    let live = session.messages();
    let prev_count = usize::try_from(head.message_count)
        .map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
    let plain_append = live.len() >= prev_count
        && meerkat_core::transcript_messages_digest(&live[..prev_count])
            .map_err(SessionStoreError::from)?
            == head.head_revision;
    let new_head = if plain_append {
        if live.len() > prev_count {
            insert_strand_rows_in_txn(
                tx,
                id,
                &head.strand,
                head.message_count,
                &live[prev_count..],
                identity,
                generation,
            )?;
        }
        // The successor head must commit to the EXACT durable row bytes.
        // Rows 0..prev_count keep the serialization they were written with,
        // which need not equal re-encoding the same typed Messages today, so
        // the stored commitment is EXTENDED by only the appended rows' bytes
        // - mirrors meerkat-core
        // `SessionHead::from_session_with_proved_inline_storage_authority`, the
        // published seam for retained boundaries whose exact row bytes may
        // use an older representation. Re-minting via `from_session` breaks
        // `SessionHead::into_session`'s byte-exact prefix verification on
        // the next cold materialization.
        match head.message_row_prefix.clone() {
            Some(prefix) => {
                let appended_serialized = live[prev_count..]
                    .iter()
                    .map(|message| serde_json::to_vec(message).map_err(SessionStoreError::from))
                    .collect::<Result<Vec<_>, _>>()?;
                let proved = prefix.extend_serialized_rows(&appended_serialized)?;
                SessionHead::from_session_with_proved_inline_storage_authority(
                    session,
                    head.strand.clone(),
                    head.rewrite_prefix.clone(),
                    proved,
                )?
            }
            None => {
                // A pre-0.8.11 head whose row identity was never proved
                // stays unproved rather than inventing a commitment the
                // stored rows may not satisfy.
                let mut unproved =
                    SessionHead::from_session(session, head.strand.clone(), head.rewrite_count)?;
                unproved.message_row_prefix = None;
                unproved.row_lineage_anchor = None;
                unproved
            }
        }
    } else {
        let live_digest =
            meerkat_core::transcript_messages_digest(live).map_err(SessionStoreError::from)?;
        let rebased = TranscriptStrandId::rebase(&live_digest);
        insert_strand_rows_in_txn(tx, id, &rebased, 0, live, identity, generation)?;
        // A fresh strand: every row was just written from these exact
        // instances, so the minted commitment matches the durable bytes.
        SessionHead::from_session(session, rebased, head.rewrite_count)?
    };
    write_head_row_in_txn(tx, &new_head, identity, generation, version, fencing_token)?;
    Ok(())
}

/// The continuity write discipline, enforced inside the same transaction as
/// the rows it authorizes. Byte-for-byte the checks
/// `save_session_snapshot_owned` runs for a whole-blob save, so a delta
/// mutation can never be accepted where a whole-document save would be
/// refused (or the reverse). Returns whether a continuity record exists for
/// the identity — the caller advances it in the same transaction.
fn enforce_continuity_cursor_in_txn(
    tx: &Transaction<'_>,
    identity: &AgentIdentity,
    session_id: &meerkat_core::types::SessionId,
    generation: ContinuityGeneration,
    version: CheckpointVersion,
    fencing_token: FencingToken,
) -> Result<bool, ContinuityStoreError> {
    let existing = tx
        .query_row(
            "SELECT session_id, generation, fencing_token, checkpoint_version
             FROM continuity_records WHERE identity = ?1",
            rusqlite::params![identity.as_str()],
            |row| {
                Ok((
                    row.get::<_, String>(0)?,
                    row.get::<_, u64>(1)?,
                    row.get::<_, u64>(2)?,
                    row.get::<_, u64>(3)?,
                ))
            },
        )
        .optional()
        .map_err(|e| sqlite_err("query continuity record", e))?;

    let record_was_present = existing.is_some();
    if let Some((current_session_id, current_generation, current_token, current_version)) = existing
    {
        if current_session_id != session_id.to_string() || current_generation != generation.get() {
            return Err(ContinuityStoreError::NotFound {
                identity: identity.clone(),
            });
        }
        if fencing_token.get() < current_token {
            return Err(ContinuityStoreError::StaleFencingToken {
                identity: identity.clone(),
                presented: fencing_token,
                current: FencingToken::new(current_token),
            });
        }
        if version.get() <= current_version {
            return Err(ContinuityStoreError::StaleCheckpointVersion {
                identity: identity.clone(),
                presented: version,
                current: CheckpointVersion::new(current_version),
            });
        }
    }
    Ok(record_was_present)
}

fn advance_continuity_record_in_txn(
    tx: &Transaction<'_>,
    identity: &AgentIdentity,
    session_id: &meerkat_core::types::SessionId,
    generation: ContinuityGeneration,
    version: CheckpointVersion,
    fencing_token: FencingToken,
    record_was_present: bool,
) -> Result<(), ContinuityStoreError> {
    tx.execute(
        "UPDATE continuity_records
         SET checkpoint_version = ?1, fencing_token = ?2
         WHERE identity = ?3 AND session_id = ?4 AND generation = ?5",
        rusqlite::params![
            version.get(),
            fencing_token.get(),
            identity.as_str(),
            session_id.to_string(),
            generation.get(),
        ],
    )
    .map_err(|e| sqlite_err("advance continuity record", e))?;
    if record_was_present && tx.changes() == 0 {
        return Err(ContinuityStoreError::NotFound {
            identity: identity.clone(),
        });
    }
    Ok(())
}

/// The blob row's ownership check: a session's `session_snapshots` row may
/// never be written — nor superseded by head rows — under a different
/// identity or a different generation than the one that owns it.
///
/// ONE function, called by BOTH write paths (`save_session_snapshot_owned`
/// and every `delta_write`), because two write paths onto the same durable
/// session must not have different accept/reject boundaries. A generation
/// bump always mints a fresh session id, so a mismatch here is genuine
/// cross-owner corruption, never an ordinary lifecycle transition.
fn ensure_snapshot_owner_in_txn(
    tx: &Transaction<'_>,
    session_id: &meerkat_core::types::SessionId,
    identity: &AgentIdentity,
    generation: ContinuityGeneration,
) -> Result<(), ContinuityStoreError> {
    let existing_snapshot_owner = tx
        .query_row(
            "SELECT identity, generation FROM session_snapshots WHERE session_id = ?1",
            rusqlite::params![session_id.to_string()],
            |row| Ok((row.get::<_, String>(0)?, row.get::<_, u64>(1)?)),
        )
        .optional()
        .map_err(|e| sqlite_err("query snapshot owner", e))?;
    if let Some((snapshot_identity, snapshot_generation)) = existing_snapshot_owner
        && (snapshot_identity != identity.as_str() || snapshot_generation != generation.get())
    {
        return Err(ContinuityStoreError::Corruption(format!(
            "session snapshot {session_id} is owned by {snapshot_identity}/generation \
             {snapshot_generation}, not {identity}/generation {generation}"
        )));
    }
    Ok(())
}

/// The head row's ownership check, mirroring the whole-blob path's
/// snapshot-owner corruption check: a session's durable representation may
/// never be written by a different identity or a different generation.
fn ensure_head_owner_in_txn(
    tx: &Transaction<'_>,
    session_id: &meerkat_core::types::SessionId,
    identity: &AgentIdentity,
    generation: ContinuityGeneration,
) -> Result<(), ContinuityStoreError> {
    if let Some((head_identity, head_generation)) = head_owner_in_txn(tx, session_id)?
        && (head_identity != identity.as_str() || head_generation != generation.get())
    {
        return Err(ContinuityStoreError::Corruption(format!(
            "session head {session_id} is owned by {head_identity}/generation \
             {head_generation}, not {identity}/generation {generation}"
        )));
    }
    Ok(())
}

/// Drop the strand and rewrite rows of a session that has NO head row.
///
/// Callers must have established that (`migrate_legacy_blob_in_txn` is the
/// only one, and it runs only when `head_row_in_txn` returned `None`). The
/// head table is deliberately untouched: this clears orphans, it is not a
/// session delete.
fn delete_orphan_head_canonical_rows_in_txn(
    tx: &Transaction<'_>,
    id: &meerkat_core::types::SessionId,
) -> Result<(), SessionStoreError> {
    for table in ["continuity_strand_messages", "continuity_session_rewrites"] {
        tx.execute(
            &format!("DELETE FROM {table} WHERE session_id = ?1"),
            rusqlite::params![id.to_string()],
        )
        .map_err(|e| sqlite_session_err("delete orphan head-canonical rows", e))?;
    }
    Ok(())
}

fn delete_head_canonical_rows_in_txn(
    tx: &Transaction<'_>,
    predicate: &str,
    params: &[&dyn rusqlite::ToSql],
) -> Result<(), ContinuityStoreError> {
    for table in [
        "continuity_session_heads",
        "continuity_strand_messages",
        "continuity_session_rewrites",
    ] {
        tx.execute(&format!("DELETE FROM {table} WHERE {predicate}"), params)
            .map_err(|e| sqlite_err("delete head-canonical rows", e))?;
    }
    Ok(())
}

#[async_trait]
impl ContinuityStore for LocalContinuityStore {
    async fn resolve_many(
        &self,
        identities: &[AgentIdentity],
    ) -> Result<BTreeMap<AgentIdentity, ContinuityResolveState>, ContinuityStoreError> {
        let identities = identities.to_vec();
        self.run_blocking("resolve_many", move |inner| {
            inner.with_reader(|connection| {
                let mut map = BTreeMap::new();
                for id in &identities {
                    let mut stmt = connection
                        .prepare_cached(
                            "SELECT agent_runtime_id, session_id, generation, checkpoint_version
                             FROM continuity_records WHERE identity = ?1",
                        )
                        .map_err(|e| sqlite_err("prepare", e))?;
                    let row = stmt
                        .query_row(rusqlite::params![id.as_str()], |row| {
                            Ok((
                                row.get::<_, String>(0)?,
                                row.get::<_, String>(1)?,
                                row.get::<_, u64>(2)?,
                                row.get::<_, u64>(3)?,
                            ))
                        })
                        .optional()
                        .map_err(|e| sqlite_err("query", e))?;
                    match row {
                        Some((runtime_id, session_id_str, generation, cpv)) => {
                            let record = ContinuityRecord {
                                identity: id.clone(),
                                agent_runtime_id: AgentRuntimeId::parse(&runtime_id).map_err(
                                    |e| {
                                        ContinuityStoreError::Corruption(format!(
                                            "invalid runtime_id in store: {e}"
                                        ))
                                    },
                                )?,
                                session_id: meerkat_core::types::SessionId::parse(&session_id_str)
                                    .map_err(|e| {
                                        ContinuityStoreError::Corruption(format!(
                                            "invalid session_id in store: {e}"
                                        ))
                                    })?,
                                generation: ContinuityGeneration::new(generation),
                                checkpoint_version: CheckpointVersion::new(cpv),
                            };
                            map.insert(id.clone(), ContinuityResolveState::Ready { record });
                        }
                        None => {
                            map.insert(id.clone(), ContinuityResolveState::Uninitialized);
                        }
                    }
                }
                Ok(map)
            })
        })
        .await
    }

    async fn resolve_record_by_session(
        &self,
        session_id: &meerkat_core::types::SessionId,
    ) -> Result<Option<(ContinuityRecord, FencingToken, CheckpointVersion)>, ContinuityStoreError>
    {
        let session_id = session_id.clone();
        self.run_blocking("resolve_record_by_session", move |inner| {
            inner.with_reader(|connection| {
                let mut stmt = connection
                    .prepare_cached(
                        "SELECT identity, agent_runtime_id, generation, checkpoint_version, \
                         fencing_token FROM continuity_records WHERE session_id = ?1",
                    )
                    .map_err(|e| sqlite_err("prepare", e))?;
                let row = stmt
                    .query_row(rusqlite::params![session_id.to_string()], |row| {
                        Ok((
                            row.get::<_, String>(0)?,
                            row.get::<_, String>(1)?,
                            row.get::<_, u64>(2)?,
                            row.get::<_, u64>(3)?,
                            row.get::<_, u64>(4)?,
                        ))
                    })
                    .optional()
                    .map_err(|e| sqlite_err("query", e))?;
                let Some((identity, runtime_id, generation, cpv, token)) = row else {
                    return Ok(None);
                };
                // The substrate's CURRENT checkpoint version for the session:
                // the fence the next write cursor must advance past. The
                // record's own stamp trails it whenever writes landed after
                // the last checkpoint.
                let fence_current: u64 = connection
                    .query_row(
                        "SELECT MAX(v) FROM (\
                             SELECT COALESCE(MAX(checkpoint_version), 0) AS v \
                                 FROM session_snapshots WHERE session_id = ?1 \
                             UNION ALL \
                             SELECT COALESCE(MAX(checkpoint_version), 0) AS v \
                                 FROM continuity_session_heads WHERE session_id = ?1)",
                        rusqlite::params![session_id.to_string()],
                        |row| row.get(0),
                    )
                    .map_err(|e| sqlite_err("fence query", e))?;
                let fence_current = fence_current.max(cpv);
                let record = ContinuityRecord {
                    identity: AgentIdentity::parse(&identity).map_err(|e| {
                        ContinuityStoreError::Corruption(format!("invalid identity in store: {e}"))
                    })?,
                    agent_runtime_id: AgentRuntimeId::parse(&runtime_id).map_err(|e| {
                        ContinuityStoreError::Corruption(format!(
                            "invalid runtime_id in store: {e}"
                        ))
                    })?,
                    session_id: session_id.clone(),
                    generation: ContinuityGeneration::new(generation),
                    checkpoint_version: CheckpointVersion::new(cpv),
                };
                Ok(Some((
                    record,
                    FencingToken::new(token),
                    CheckpointVersion::new(fence_current),
                )))
            })
        })
        .await
    }

    async fn load_session_snapshot(
        &self,
        session_id: &meerkat_core::types::SessionId,
    ) -> Result<Option<SessionSnapshot>, ContinuityStoreError> {
        let session_id = session_id.clone();
        self.run_blocking("load_session_snapshot", move |inner| {
            inner.with_reader(|connection| {
                // Head-canonical sessions serve the slim materialization of
                // head+rows; their `session_snapshots` row (if any) is a
                // frozen archive and is never read again.
                if inner.head_tables_available(connection)? {
                    let tx = connection
                        .unchecked_transaction()
                        .map_err(|e| sqlite_err("begin read tx", e))?;
                    if let Some((head, _token)) = head_row_in_txn(&tx, &session_id)
                        .map_err(|e| ContinuityStoreError::Io(e.to_string()))?
                    {
                        let session = materialize_slim_in_txn(&tx, &session_id, &head)
                            .map_err(|e| ContinuityStoreError::Io(e.to_string()))?;
                        let data = serde_json::to_vec(&session).map_err(|e| {
                            ContinuityStoreError::Io(format!(
                                "serialize head-canonical session snapshot: {e}"
                            ))
                        })?;
                        return Ok(Some(SessionSnapshot { data }));
                    }
                }
                let mut stmt = connection
                    .prepare_cached("SELECT data FROM session_snapshots WHERE session_id = ?1")
                    .map_err(|e| sqlite_err("prepare", e))?;
                let row = stmt
                    .query_row(rusqlite::params![session_id.to_string()], |row| {
                        row.get::<_, Vec<u8>>(0)
                    })
                    .optional()
                    .map_err(|e| sqlite_err("query", e))?;
                Ok(row.map(|data| SessionSnapshot { data }))
            })
        })
        .await
    }

    async fn session_snapshot_matches_current(
        &self,
        candidate: SessionSnapshotMatchCandidate,
    ) -> Result<bool, ContinuityStoreError> {
        self.run_blocking("session_snapshot_matches_current", move |inner| {
            inner.with_reader(|connection| {
                // The whole-blob byte-equality probe is a blob-authority
                // concept. On a head-canonical session there is no candidate
                // blob to compare against, so the conservative trait default
                // applies and the caller takes its ordinary guard path.
                if inner.head_tables_available(connection)?
                    && head_owner_in_txn(
                        &connection
                            .unchecked_transaction()
                            .map_err(|e| sqlite_err("begin read tx", e))?,
                        &candidate.session_id,
                    )?
                    .is_some()
                {
                    return Ok(false);
                }
                connection
                    .query_row(
                        "SELECT EXISTS(
                            SELECT 1
                            FROM session_snapshots AS snapshot
                            JOIN continuity_records AS continuity
                              ON continuity.identity = snapshot.identity
                             AND continuity.session_id = snapshot.session_id
                             AND continuity.generation = snapshot.generation
                             AND continuity.checkpoint_version = snapshot.checkpoint_version
                            WHERE snapshot.session_id = ?1
                              AND snapshot.identity = ?2
                              AND snapshot.generation = ?3
                              AND snapshot.checkpoint_version = ?4
                              AND continuity.fencing_token = ?5
                              AND snapshot.fencing_token <= ?5
                              AND snapshot.data = ?6
                        )",
                        rusqlite::params![
                            candidate.session_id.to_string(),
                            candidate.identity.as_str(),
                            candidate.generation.get(),
                            candidate.checkpoint_version.get(),
                            candidate.fencing_token.get(),
                            &candidate.snapshot.data,
                        ],
                        |row| row.get::<_, bool>(0),
                    )
                    .map_err(|e| sqlite_err("match session snapshot", e))
            })
        })
        .await
    }

    async fn delete_session_snapshot_if_current_revision(
        &self,
        session_id: &meerkat_core::types::SessionId,
        expected_current_revision: &str,
    ) -> Result<bool, ContinuityStoreError> {
        let session_id = session_id.clone();
        let expected_current_revision = expected_current_revision.to_string();
        self.run_blocking(
            "delete_session_snapshot_if_current_revision",
            move |inner| {
                inner.with_writer(|connection| {
                    let head_tables = inner.head_tables_available(connection)?;
                    let tx = connection
                        .transaction()
                        .map_err(|e| sqlite_err("begin tx", e))?;

                    // Head-canonical sessions derive the CAS token from the
                    // slim materialization of head+rows, then drop head,
                    // strands, rewrites AND the frozen archive in one tx.
                    let head = if head_tables {
                        head_row_in_txn(&tx, &session_id)
                            .map_err(|e| ContinuityStoreError::Io(e.to_string()))?
                    } else {
                        None
                    };
                    let session = match head.as_ref() {
                        Some((head, _token)) => Some(
                            materialize_slim_in_txn(&tx, &session_id, head)
                                .map_err(|e| ContinuityStoreError::Io(e.to_string()))?,
                        ),
                        None => {
                            let data = tx
                                .query_row(
                                    "SELECT data FROM session_snapshots WHERE session_id = ?1",
                                    rusqlite::params![session_id.to_string()],
                                    |row| row.get::<_, Vec<u8>>(0),
                                )
                                .optional()
                                .map_err(|e| sqlite_err("query snapshot", e))?;
                            match data {
                                Some(data) => {
                                    Some(serde_json::from_slice::<Session>(&data).map_err(|e| {
                                        ContinuityStoreError::Io(format!(
                                            "deserialize session snapshot for revision check: {e}"
                                        ))
                                    })?)
                                }
                                None => None,
                            }
                        }
                    };

                    let Some(session) = session else {
                        return Ok(false);
                    };
                    let current_revision =
                        meerkat_core::session_store::session_projection_cas_token(&session)
                            .map_err(|e| ContinuityStoreError::Io(e.to_string()))?;
                    if current_revision != expected_current_revision {
                        return Ok(false);
                    }

                    let deleted = tx
                        .execute(
                            "DELETE FROM session_snapshots WHERE session_id = ?1",
                            rusqlite::params![session_id.to_string()],
                        )
                        .map_err(|e| sqlite_err("delete snapshot", e))?;
                    let head_deleted = if head_tables {
                        delete_head_canonical_rows_in_txn(
                            &tx,
                            "session_id = ?1",
                            rusqlite::params![session_id.to_string()],
                        )?;
                        head.is_some()
                    } else {
                        false
                    };
                    tx.commit()
                        .map_err(|e| sqlite_err("commit snapshot delete", e))?;
                    Ok(deleted > 0 || head_deleted)
                })
            },
        )
        .await
    }

    async fn save_session_snapshot(
        &self,
        identity: &AgentIdentity,
        session_id: &meerkat_core::types::SessionId,
        generation: ContinuityGeneration,
        version: CheckpointVersion,
        fencing_token: FencingToken,
        snapshot: &SessionSnapshot,
    ) -> Result<(), ContinuityStoreError> {
        self.save_session_snapshot_owned(
            identity.clone(),
            session_id.clone(),
            generation,
            version,
            fencing_token,
            snapshot.clone(),
        )
        .await
    }

    async fn save_session_snapshot_owned(
        &self,
        identity: AgentIdentity,
        session_id: meerkat_core::types::SessionId,
        generation: ContinuityGeneration,
        version: CheckpointVersion,
        fencing_token: FencingToken,
        snapshot: SessionSnapshot,
    ) -> Result<(), ContinuityStoreError> {
        self.run_blocking("save_session_snapshot", move |inner| {
            inner.with_writer(|connection| {
                let head_tables = inner.head_tables_available(connection)?;
                // Keep the check, snapshot write, and record version/fence
                // advance in one writer transaction.
                let tx = connection
                    .unchecked_transaction()
                    .map_err(|e| sqlite_err("begin tx", e))?;

                let record_was_present = enforce_continuity_cursor_in_txn(
                    &tx,
                    &identity,
                    &session_id,
                    generation,
                    version,
                    fencing_token,
                )?;

                ensure_snapshot_owner_in_txn(&tx, &session_id, &identity, generation)?;
                if head_tables {
                    ensure_head_owner_in_txn(&tx, &session_id, &identity, generation)?;
                }

                // Representation-aware write. A head row means head+rows are
                // this session's byte authority: convert the incoming
                // document into delta rows + a small head instead of
                // upserting the blob, and leave the frozen archive row
                // untouched. Without a head row the legacy blob semantics
                // are byte-for-byte unchanged — an ordinary whole-document
                // save never migrates a session and never stamps ledger v2.
                let head = if head_tables {
                    head_row_in_txn(&tx, &session_id)
                        .map_err(|e| ContinuityStoreError::Io(e.to_string()))?
                } else {
                    None
                };
                match head {
                    Some((head, _token)) => {
                        // Once head+rows are a session's byte authority, a
                        // whole-document write has to be expressible as rows.
                        // Falling back to the blob row here would be the
                        // two-write-authorities failure the representation
                        // rule exists to prevent (the blob would be silently
                        // never read again), so this refuses instead.
                        let session: Session = serde_json::from_slice(&snapshot.data)
                            .map_err(|e| {
                                ContinuityStoreError::Io(format!(
                                    "session {session_id} is head-canonical: a whole-document \
                                     save must carry a serialized session document, not opaque \
                                     bytes ({e})"
                                ))
                            })?;
                        if session.id() != &session_id {
                            return Err(ContinuityStoreError::Corruption(format!(
                                "session snapshot for {session_id} carries session {}",
                                session.id()
                            )));
                        }
                        write_head_canonical_session_in_txn(
                            &tx,
                            &session,
                            &head,
                            &identity,
                            generation,
                            version,
                            fencing_token,
                        )
                        .map_err(|e| ContinuityStoreError::Io(e.to_string()))?;
                    }
                    None => {
                        tx.execute(
                            "INSERT INTO session_snapshots (session_id, identity, generation, checkpoint_version, fencing_token, data)
                             VALUES (?1, ?2, ?3, ?4, ?5, ?6)
                             ON CONFLICT(session_id) DO UPDATE SET
                                identity = excluded.identity,
                                generation = excluded.generation,
                                checkpoint_version = excluded.checkpoint_version,
                                fencing_token = excluded.fencing_token,
                                data = excluded.data",
                            rusqlite::params![
                                session_id.to_string(),
                                identity.as_str(),
                                generation.get(),
                                version.get(),
                                fencing_token.get(),
                                &snapshot.data,
                            ],
                        )
                        .map_err(|e| sqlite_err("upsert snapshot", e))?;
                    }
                }

                advance_continuity_record_in_txn(
                    &tx,
                    &identity,
                    &session_id,
                    generation,
                    version,
                    fencing_token,
                    record_was_present,
                )?;

                tx.commit()
                    .map_err(|e| sqlite_err("commit tx", e))?;
                Ok(())
            })
        })
        .await
    }

    async fn upsert_continuity_record(
        &self,
        record: &ContinuityRecord,
        fencing_token: FencingToken,
    ) -> Result<(), ContinuityStoreError> {
        let record = record.clone();
        self.run_blocking("upsert_continuity_record", move |inner| {
            inner.with_writer(|connection| {
                let mut stmt = connection
                    .prepare_cached(
                        "SELECT fencing_token, generation FROM continuity_records WHERE identity = ?1",
                    )
                    .map_err(|e| sqlite_err("prepare", e))?;
                let existing = stmt
                    .query_row(rusqlite::params![record.identity.as_str()], |row| {
                        Ok((row.get::<_, u64>(0)?, row.get::<_, u64>(1)?))
                    })
                    .optional()
                    .map_err(|e| sqlite_err("query", e))?;
                drop(stmt);

                if let Some((current_token, current_generation)) = existing {
                    if fencing_token.get() < current_token {
                        return Err(ContinuityStoreError::StaleFencingToken {
                            identity: record.identity.clone(),
                            presented: fencing_token,
                            current: FencingToken::new(current_token),
                        });
                    }
                    if record.generation.get() < current_generation {
                        return Err(ContinuityStoreError::StaleContinuityGeneration {
                            identity: record.identity.clone(),
                            presented: record.generation,
                            current: ContinuityGeneration::new(current_generation),
                        });
                    }
                }

                connection
                    .execute(
                        "INSERT INTO continuity_records (identity, agent_runtime_id, session_id, generation, checkpoint_version, fencing_token)
                         VALUES (?1, ?2, ?3, ?4, ?5, ?6)
                         ON CONFLICT(identity) DO UPDATE SET
                            agent_runtime_id = excluded.agent_runtime_id,
                            session_id = excluded.session_id,
                            generation = excluded.generation,
                            checkpoint_version = CASE
                                WHEN continuity_records.generation = excluded.generation
                                THEN MAX(continuity_records.checkpoint_version, excluded.checkpoint_version)
                                ELSE excluded.checkpoint_version
                            END,
                            fencing_token = excluded.fencing_token",
                        rusqlite::params![
                            record.identity.as_str(),
                            record.agent_runtime_id.as_str(),
                            record.session_id.to_string(),
                            record.generation.get(),
                            record.checkpoint_version.get(),
                            fencing_token.get(),
                        ],
                    )
                    .map_err(|e| sqlite_err("upsert record", e))?;
                Ok(())
            })
        })
        .await
    }

    async fn rollback_continuity_record(
        &self,
        expected_attempt: &ContinuityRecord,
        previous: Option<&ContinuityRecord>,
        fencing_token: FencingToken,
    ) -> Result<(), ContinuityStoreError> {
        let expected_attempt = expected_attempt.clone();
        let previous = previous.cloned();
        self.run_blocking("rollback_continuity_record", move |inner| {
            inner.with_writer(|connection| {
                let head_tables = inner.head_tables_available(connection)?;
                if previous
                    .as_ref()
                    .is_some_and(|record| record.identity != expected_attempt.identity)
                {
                    return Err(ContinuityStoreError::Corruption(format!(
                        "reset rollback identity mismatch: attempted {}, previous {}",
                        expected_attempt.identity,
                        previous
                            .as_ref()
                            .map(|record| record.identity.as_str())
                            .unwrap_or_default(),
                    )));
                }

                let tx = connection
                    .unchecked_transaction()
                    .map_err(|e| sqlite_err("begin tx", e))?;
                let current = tx
                    .query_row(
                        "SELECT agent_runtime_id, session_id, generation, fencing_token
                         FROM continuity_records WHERE identity = ?1",
                        rusqlite::params![expected_attempt.identity.as_str()],
                        |row| {
                            Ok((
                                row.get::<_, String>(0)?,
                                row.get::<_, String>(1)?,
                                row.get::<_, u64>(2)?,
                                row.get::<_, u64>(3)?,
                            ))
                        },
                    )
                    .optional()
                    .map_err(|e| sqlite_err("query", e))?
                    .ok_or_else(|| ContinuityStoreError::NotFound {
                        identity: expected_attempt.identity.clone(),
                    })?;

                let (current_runtime_id, current_session_id, current_generation, current_token) =
                    current;
                if current_token != fencing_token.get() {
                    return Err(ContinuityStoreError::StaleFencingToken {
                        identity: expected_attempt.identity.clone(),
                        presented: fencing_token,
                        current: FencingToken::new(current_token),
                    });
                }
                if current_runtime_id != expected_attempt.agent_runtime_id.as_str()
                    || current_session_id != expected_attempt.session_id.to_string()
                    || current_generation != expected_attempt.generation.get()
                {
                    return Err(ContinuityStoreError::StaleContinuityGeneration {
                        identity: expected_attempt.identity.clone(),
                        presented: expected_attempt.generation,
                        current: ContinuityGeneration::new(current_generation),
                    });
                }

                // Only the provisional reset generation is abandoned. Older
                // snapshots — blob rows AND head-canonical head/strand/
                // rewrite rows alike — remain the rollback authority for the
                // restored row, while a concurrently advanced generation is
                // protected by the exact CAS above.
                tx.execute(
                    "DELETE FROM session_snapshots WHERE identity = ?1 AND generation = ?2",
                    rusqlite::params![
                        expected_attempt.identity.as_str(),
                        expected_attempt.generation.get(),
                    ],
                )
                .map_err(|e| sqlite_err("delete attempted snapshots", e))?;
                if head_tables {
                    delete_head_canonical_rows_in_txn(
                        &tx,
                        "identity = ?1 AND generation = ?2",
                        rusqlite::params![
                            expected_attempt.identity.as_str(),
                            expected_attempt.generation.get(),
                        ],
                    )?;
                }

                if let Some(previous) = previous {
                    tx.execute(
                        "UPDATE continuity_records
                         SET agent_runtime_id = ?1,
                             session_id = ?2,
                             generation = ?3,
                             checkpoint_version = ?4,
                             fencing_token = ?5
                         WHERE identity = ?6",
                        rusqlite::params![
                            previous.agent_runtime_id.as_str(),
                            previous.session_id.to_string(),
                            previous.generation.get(),
                            previous.checkpoint_version.get(),
                            fencing_token.get(),
                            expected_attempt.identity.as_str(),
                        ],
                    )
                    .map_err(|e| sqlite_err("restore previous record", e))?;
                } else {
                    tx.execute(
                        "DELETE FROM continuity_records WHERE identity = ?1",
                        rusqlite::params![expected_attempt.identity.as_str()],
                    )
                    .map_err(|e| sqlite_err("delete attempted record", e))?;
                }

                tx.commit().map_err(|e| sqlite_err("commit tx", e))?;
                Ok(())
            })
        })
        .await
    }

    /// M4b landed: the bundled store ships the session-delta channel because
    /// head+rows are now its canonical durable session representation, not a
    /// second authority beside `session_snapshots.data`.
    ///
    /// The deferral note this replaces named the exact hazard — a delta
    /// channel bolted beside the blob would create two write authorities
    /// over one session with no reconciliation rule. The rule now exists and
    /// every whole-snapshot verb honors it: a
    /// `continuity_session_heads` row means head+rows are the sole byte
    /// authority for that session, its blob row is a frozen archive that is
    /// never read or written again, whole-document saves convert into delta
    /// rows + a head, the exact-match probe declines, CAS tokens derive from
    /// the slim materialization, and delete/rollback scope all four tables.
    ///
    /// Advertising the capability does NOT mutate the file: the head-canonical
    /// ledger bump is committed by a delta write that actually creates head
    /// state, inside that write's own transaction (see [`Self::open`] and
    /// `LocalContinuityStore::delta_write`).
    fn as_incremental_sessions(&self) -> Option<Arc<dyn ContinuityIncrementalSessions>> {
        Some(Arc::new(self.clone()))
    }

    async fn delete_continuity_record(
        &self,
        identity: &AgentIdentity,
        fencing_token: FencingToken,
    ) -> Result<(), ContinuityStoreError> {
        let identity = identity.clone();
        self.run_blocking("delete_continuity_record", move |inner| {
            inner.with_writer(|connection| {
                let head_tables = inner.head_tables_available(connection)?;
                // Keep the fence check and both deletes in one transaction so
                // failures cannot leave a half-deleted identity.
                let tx = connection
                    .unchecked_transaction()
                    .map_err(|e| sqlite_err("begin tx", e))?;

                let mut stmt = tx
                    .prepare_cached(
                        "SELECT fencing_token FROM continuity_records WHERE identity = ?1",
                    )
                    .map_err(|e| sqlite_err("prepare", e))?;
                let existing_token = stmt
                    .query_row(rusqlite::params![identity.as_str()], |row| {
                        row.get::<_, u64>(0)
                    })
                    .optional()
                    .map_err(|e| sqlite_err("query", e))?;
                drop(stmt);

                if let Some(current) = existing_token
                    && fencing_token.get() < current
                {
                    return Err(ContinuityStoreError::StaleFencingToken {
                        identity: identity.clone(),
                        presented: fencing_token,
                        current: FencingToken::new(current),
                    });
                }

                tx.execute(
                    "DELETE FROM session_snapshots WHERE identity = ?1",
                    rusqlite::params![identity.as_str()],
                )
                .map_err(|e| sqlite_err("delete snapshots", e))?;
                if head_tables {
                    delete_head_canonical_rows_in_txn(
                        &tx,
                        "identity = ?1",
                        rusqlite::params![identity.as_str()],
                    )?;
                }
                tx.execute(
                    "DELETE FROM continuity_records WHERE identity = ?1",
                    rusqlite::params![identity.as_str()],
                )
                .map_err(|e| sqlite_err("delete record", e))?;
                tx.commit().map_err(|e| sqlite_err("commit tx", e))?;
                Ok(())
            })
        })
        .await
    }
}

// ---------------------------------------------------------------------------
// The session-delta channel (M4b)
// ---------------------------------------------------------------------------

impl LocalContinuityStore {
    /// Read-only enumeration of every durable identity → session binding.
    ///
    /// Operator-maintenance surface (task #63): the repair binary's
    /// `--all-sessions` pass needs the fleet's bindings without knowing
    /// identities up front; each binding then goes through the ordinary
    /// per-session [`ContinuityStore::resolve_record_by_session`] path, so
    /// this adds no new write or trust surface.
    pub async fn list_session_bindings(
        &self,
    ) -> Result<Vec<(AgentIdentity, meerkat_core::types::SessionId)>, ContinuityStoreError> {
        self.run_blocking("list_session_bindings", move |inner| {
            inner.with_reader(|connection| {
                let mut stmt = connection
                    .prepare_cached(
                        "SELECT identity, session_id FROM continuity_records ORDER BY identity",
                    )
                    .map_err(|e| sqlite_err("prepare", e))?;
                let rows = stmt
                    .query_map([], |row| {
                        Ok((row.get::<_, String>(0)?, row.get::<_, String>(1)?))
                    })
                    .map_err(|e| sqlite_err("query", e))?;
                let mut bindings = Vec::new();
                for row in rows {
                    let (identity, session_id) = row.map_err(|e| sqlite_err("row", e))?;
                    bindings.push((
                        AgentIdentity::parse(&identity).map_err(|e| {
                            ContinuityStoreError::Corruption(format!(
                                "invalid identity in store: {e}"
                            ))
                        })?,
                        meerkat_core::types::SessionId::parse(&session_id).map_err(|e| {
                            ContinuityStoreError::Corruption(format!(
                                "invalid session id in store: {e}"
                            ))
                        })?,
                    ));
                }
                Ok(bindings)
            })
        })
        .await
    }

    /// Run one delta mutation inside ONE writer transaction that enforces
    /// and advances the continuity cursor — and, on a file that does not
    /// carry the head-canonical channel yet, converges the schema and arms
    /// the one-way ledger bump in that same transaction.
    ///
    /// Crash consistency: the head-canonical DDL, the rows, the head row,
    /// the `continuity_records` advance and the ledger v2 stamp commit
    /// together or not at all. So the durable cursor can never point past
    /// durable data, a partial append can never leave a torn document, and
    /// — the property this ordering exists for — **a write that does not
    /// leave a head row behind never arms the v1-writer lockout**.
    ///
    /// Two ways a write fails to earn the bump, and both leave the file
    /// rollback-safe at v1:
    ///
    /// - it is REFUSED (a guard rejection or a typed operation refusal):
    ///   the DDL and the stamp roll back with everything else, and the file
    ///   keeps zero head rows;
    /// - it is ACCEPTED but creates no head state. `append_messages` on a
    ///   session with neither a head row nor a blob to migrate is the real
    ///   case: the service appends and then adopts under two separate
    ///   locks, so the append commits alone. Strand rows that no head
    ///   adopts are not part of any document — every read path gates on the
    ///   head row — so an older binary still correctly serves that session
    ///   from its blob, and locking it out of the whole file would be a
    ///   brick bought for nothing. The rows and the (additive, `IF NOT
    ///   EXISTS`) DDL commit; the stamp waits for the adopting head write.
    ///
    /// The converse — a head row with no stamp — remains impossible, so an
    /// older binary can never mistake a frozen blob archive for authority.
    /// That is why the "is the lockout owed" question is answered from the
    /// ledger row inside this transaction
    /// ([`head_canonical_ledger_stamped_in_txn`]) and never from the
    /// table-existence latch, which this method can now leave `true` on a
    /// v1 file.
    async fn delta_write<T, F>(
        &self,
        operation_name: &'static str,
        cursor: &ContinuityWriteCursor,
        session_id: meerkat_core::types::SessionId,
        operation: F,
    ) -> Result<T, SessionStoreError>
    where
        T: Send + 'static,
        F: FnOnce(&Transaction<'_>, &ContinuityWriteCursor) -> Result<T, SessionStoreError>
            + Send
            + 'static,
    {
        let cursor = cursor.clone();
        // The typed session-store error the guards produce rides OUT as a
        // value, never laundered into `Internal`: the accept/reject boundary
        // this store mirrors must be indistinguishable from the meerkat
        // service's, conflict codes included. A carried `Err` skips the
        // commit, so the transaction rolls back on drop.
        let outcome: Result<Result<T, SessionStoreError>, ContinuityStoreError> = self
            .run_blocking(operation_name, move |inner| {
                inner.with_writer(|connection| {
                    let tx = connection
                        .unchecked_transaction()
                        .map_err(|e| sqlite_err("begin tx", e))?;
                    // Is the one-way lockout still owed? Answered from the
                    // ledger row itself, inside this transaction — the
                    // cached flag may only SKIP the read, never decide that
                    // no bump is owed.
                    let lockout_owed = !inner.ledger_is_head_canonical()
                        && !head_canonical_ledger_stamped_in_txn(&tx)?;
                    // Converge the head-canonical schema INSIDE this
                    // transaction (SQLite DDL is transactional): the tables
                    // have to exist before the operation can write a row,
                    // but they vanish again with a rollback. The ledger
                    // stamp that makes the bump one-way is deliberately NOT
                    // written here — it is the last thing before commit,
                    // and only once the write has actually left a head row
                    // behind.
                    if lockout_owed {
                        converge_head_canonical_schema_in_txn(&tx)?;
                    }
                    let record_was_present = enforce_continuity_cursor_in_txn(
                        &tx,
                        &cursor.identity,
                        &session_id,
                        cursor.generation,
                        cursor.checkpoint_version,
                        cursor.fencing_token,
                    )?;
                    // Both owner guards, in the same order and with the same
                    // meaning the whole-document verb applies. A delta
                    // mutation must not be accepted where a whole-document
                    // save onto the same durable session would be refused.
                    ensure_snapshot_owner_in_txn(
                        &tx,
                        &session_id,
                        &cursor.identity,
                        cursor.generation,
                    )?;
                    ensure_head_owner_in_txn(
                        &tx,
                        &session_id,
                        &cursor.identity,
                        cursor.generation,
                    )?;
                    let value = match operation(&tx, &cursor) {
                        Ok(value) => value,
                        Err(typed) => return Ok(Err(typed)),
                    };
                    advance_continuity_record_in_txn(
                        &tx,
                        &cursor.identity,
                        &session_id,
                        cursor.generation,
                        cursor.checkpoint_version,
                        cursor.fencing_token,
                        record_was_present,
                    )?;
                    // Earned only by head state that will be durable when
                    // this transaction commits. An accepted append that
                    // adopts nothing leaves the file at v1.
                    let stamp_lockout =
                        lockout_owed && session_head_exists_in_txn(&tx, &session_id)?;
                    if stamp_lockout {
                        stamp_head_canonical_ledger_in_txn(&tx)?;
                    }
                    tx.commit().map_err(|e| sqlite_err("commit tx", e))?;
                    // Latch only after the commit that made each fact true,
                    // and keep the two facts apart: the DDL committed
                    // whenever the bump was owed, so the tables are
                    // queryable either way, but the lockout latch tracks
                    // the ledger row alone.
                    if lockout_owed {
                        inner.head_canonical_schema.store(true, Ordering::Release);
                    }
                    if stamp_lockout || !lockout_owed {
                        inner.head_canonical_ledger.store(true, Ordering::Release);
                    }
                    Ok(Ok(value))
                })
            })
            .await;
        match outcome {
            Ok(typed) => typed,
            Err(error) => Err(session_err(operation_name, error)),
        }
    }

    /// Read one delta view. Head-canonical sessions read their rows; a
    /// blob-only session is served from the deterministic read-only strand
    /// layout of its archived document (never a write), so the CAS token a
    /// caller derives before migration matches the one the first migrating
    /// write persists.
    async fn delta_read<T, F>(
        &self,
        operation_name: &'static str,
        operation: F,
    ) -> Result<T, SessionStoreError>
    where
        T: Send + 'static,
        F: FnOnce(&Transaction<'_>, bool) -> Result<T, SessionStoreError> + Send + 'static,
    {
        let outcome: Result<Result<T, SessionStoreError>, ContinuityStoreError> = self
            .run_blocking(operation_name, move |inner| {
                inner.with_reader(|connection| {
                    let head_tables = inner.head_tables_available(connection)?;
                    let tx = connection
                        .unchecked_transaction()
                        .map_err(|e| sqlite_err("begin read tx", e))?;
                    Ok(operation(&tx, head_tables))
                })
            })
            .await;
        match outcome {
            Ok(typed) => typed,
            Err(error) => Err(session_err(operation_name, error)),
        }
    }
}

#[async_trait]
impl ContinuityIncrementalSessions for LocalContinuityStore {
    async fn append_messages(
        &self,
        cursor: &ContinuityWriteCursor,
        id: &meerkat_core::types::SessionId,
        strand: &TranscriptStrandId,
        base_seq: u64,
        messages: &[Message],
    ) -> Result<(), SessionStoreError> {
        let session_id = id.clone();
        let strand = strand.clone();
        let messages = messages.to_vec();
        let migrate_id = session_id.clone();
        self.delta_write(
            "continuity append_messages",
            cursor,
            session_id,
            move |tx, cursor| {
                // First delta write on a blob-only session migrates it inside
                // this transaction; the blob stays as a frozen archive.
                ensure_head_canonical_for_write_in_txn(
                    tx,
                    &migrate_id,
                    &cursor.identity,
                    cursor.generation,
                    cursor.checkpoint_version,
                    cursor.fencing_token,
                )?;
                insert_strand_rows_in_txn(
                    tx,
                    &migrate_id,
                    &strand,
                    base_seq,
                    &messages,
                    &cursor.identity,
                    cursor.generation,
                )
            },
        )
        .await
    }

    async fn commit_rewrite(
        &self,
        cursor: &ContinuityWriteCursor,
        id: &meerkat_core::types::SessionId,
        record: &TranscriptRewriteRecord,
        expected: SessionHeadCas,
    ) -> Result<SessionHead, SessionStoreError> {
        let session_id = id.clone();
        let record = record.clone();
        let target = session_id.clone();
        self.delta_write(
            "continuity commit_rewrite",
            cursor,
            session_id,
            move |tx, cursor| {
                let stored = ensure_head_canonical_for_write_in_txn(
                    tx,
                    &target,
                    &cursor.identity,
                    cursor.generation,
                    cursor.checkpoint_version,
                    cursor.fencing_token,
                )?
                .ok_or_else(|| SessionStoreError::InvalidTranscriptRewrite {
                    id: target.clone(),
                    reason: "rewrite target has no persisted session head".to_string(),
                })?;
                let (stored_head, stored_token) = &stored;
                // CAS races and stale parents surface as
                // TranscriptRevisionConflict BEFORE the parent strand read,
                // which would otherwise fail on an unrelated shape.
                match &expected {
                    SessionHeadCas::Create => {
                        return Err(SessionStoreError::TranscriptRevisionConflict {
                            id: target.clone(),
                            expected: "<create>".to_string(),
                            actual: stored_token.clone(),
                        });
                    }
                    SessionHeadCas::IfToken(expected_token) => {
                        if expected_token != stored_token {
                            return Err(SessionStoreError::TranscriptRevisionConflict {
                                id: target.clone(),
                                expected: expected_token.clone(),
                                actual: stored_token.clone(),
                            });
                        }
                    }
                }
                if record.commit.parent_revision != stored_head.head_revision {
                    return Err(SessionStoreError::TranscriptRevisionConflict {
                        id: target,
                        expected: record.commit.parent_revision,
                        actual: stored_head.head_revision.clone(),
                    });
                }
                let before = record.commit.messages_before as u64;
                if before > strand_row_count_in_txn(tx, &target, &stored_head.strand)? {
                    return Err(SessionStoreError::InvalidTranscriptRewrite {
                        id: target,
                        reason: format!(
                            "commit messages_before {before} exceeds persisted rows of strand {}",
                            stored_head.strand
                        ),
                    });
                }
                let parent_rows =
                    strand_messages_in_txn(tx, &target, &stored_head.strand, 0..before)?;
                let parent_digest = meerkat_core::transcript_messages_digest(&parent_rows)
                    .map_err(SessionStoreError::from)?;
                let next = validate_commit_rewrite_transition(
                    &target,
                    &record,
                    stored_head,
                    stored_token,
                    &expected,
                    &parent_digest,
                )?;
                insert_rewrite_row_in_txn(
                    tx,
                    &target,
                    stored_head.rewrite_count,
                    &RewriteRow {
                        commit: record.commit.clone(),
                        parent_strand: stored_head.strand.clone(),
                        parent_len: before,
                        strand: next.strand.clone(),
                        strand_len: record.commit.messages_after as u64,
                    },
                    &cursor.identity,
                    cursor.generation,
                )?;
                insert_strand_rows_in_txn(
                    tx,
                    &target,
                    &next.strand,
                    0,
                    &record.revision_body.messages,
                    &cursor.identity,
                    cursor.generation,
                )?;
                Ok(next)
            },
        )
        .await
    }

    async fn save_head(
        &self,
        cursor: &ContinuityWriteCursor,
        head: &SessionHead,
        expected: SessionHeadCas,
    ) -> Result<(), SessionStoreError> {
        let session_id = head.id.clone();
        let head = head.clone();
        self.delta_write(
            "continuity save_head",
            cursor,
            session_id,
            move |tx, cursor| {
                let stored = ensure_head_canonical_for_write_in_txn(
                    tx,
                    &head.id,
                    &cursor.identity,
                    cursor.generation,
                    cursor.checkpoint_version,
                    cursor.fencing_token,
                )?;
                let strand_len = strand_row_count_in_txn(tx, &head.id, &head.strand)?;
                let recorded = rewrite_row_count_in_txn(tx, &head.id)?;
                validate_save_head_transition(
                    &head,
                    stored.as_ref().map(|(h, t)| (h, t.as_str())),
                    &expected,
                    strand_len,
                    recorded,
                )?;
                write_head_row_in_txn(
                    tx,
                    &head,
                    &cursor.identity,
                    cursor.generation,
                    cursor.checkpoint_version,
                    cursor.fencing_token,
                )?;
                Ok(())
            },
        )
        .await
    }

    async fn adopt_released_head_document(
        &self,
        cursor: &ContinuityWriteCursor,
        session: &meerkat_core::Session,
    ) -> Result<(), SessionStoreError> {
        let session = session.clone();
        self.delta_write(
            "continuity adopt_released_head_document",
            cursor,
            session.id().clone(),
            move |tx, cursor| {
                adopt_released_head_in_txn(
                    tx,
                    &session,
                    &cursor.identity,
                    cursor.generation,
                    cursor.checkpoint_version,
                    cursor.fencing_token,
                )
            },
        )
        .await
    }

    async fn session_head_matches_current(
        &self,
        identity: &AgentIdentity,
        session_id: &meerkat_core::types::SessionId,
        generation: ContinuityGeneration,
        fencing_token: FencingToken,
        head: &SessionHead,
    ) -> Result<bool, SessionStoreError> {
        let identity = identity.clone();
        let session_id = session_id.clone();
        let head = head.clone();
        self.delta_read(
            "continuity session_head_matches_current",
            move |tx, head_tables| {
                if !head_tables {
                    return Ok(false);
                }
                let Some((stored, _token)) = head_row_in_txn(tx, &session_id)? else {
                    return Ok(false);
                };
                if stored != head {
                    return Ok(false);
                }
                // Fence currency, same shape `enforce_continuity_cursor_in_txn`
                // validates on the mutating verbs: the identity's CURRENT
                // record must bind this session and generation, and its fence
                // must EQUAL the presented one. An advanced durable fence
                // makes this probe false so the caller's fencing write verb
                // surfaces the ordinary stale-fence refusal.
                let record = tx
                    .query_row(
                        "SELECT session_id, generation, fencing_token
                         FROM continuity_records WHERE identity = ?1",
                        rusqlite::params![identity.as_str()],
                        |row| {
                            Ok((
                                row.get::<_, String>(0)?,
                                row.get::<_, u64>(1)?,
                                row.get::<_, u64>(2)?,
                            ))
                        },
                    )
                    .optional()
                    .map_err(|e| sqlite_session_err("query continuity record", e))?;
                let Some((record_session, record_generation, record_token)) = record else {
                    return Ok(false);
                };
                Ok(record_session == session_id.to_string()
                    && record_generation == generation.get()
                    && record_token == fencing_token.get())
            },
        )
        .await
    }

    async fn load_head(
        &self,
        id: &meerkat_core::types::SessionId,
    ) -> Result<Option<SessionHead>, SessionStoreError> {
        let id = id.clone();
        self.delta_read("continuity load_head", move |tx, head_tables| {
            if head_tables && let Some((head, _token)) = head_row_in_txn(tx, &id)? {
                return Ok(Some(head));
            }
            let Some(session) = blob_session_in_txn(tx, &id)? else {
                return Ok(None);
            };
            let (_layout, head) = layout_for_blob_session(&session)?;
            Ok(Some(head))
        })
        .await
    }

    async fn load_canonical_head(
        &self,
        id: &meerkat_core::types::SessionId,
    ) -> Result<Option<SessionHead>, SessionStoreError> {
        let id = id.clone();
        self.delta_read("continuity load_canonical_head", move |tx, head_tables| {
            if !head_tables {
                return Ok(None);
            }
            Ok(head_row_in_txn(tx, &id)?.map(|(head, _token)| head))
        })
        .await
    }

    async fn load_canonical_session(
        &self,
        id: &meerkat_core::types::SessionId,
    ) -> Result<Option<Session>, SessionStoreError> {
        let id = id.clone();
        self.delta_read(
            "continuity load_canonical_session",
            move |tx, head_tables| {
                if !head_tables {
                    return Ok(None);
                }
                // ONE snapshot over head + rows. `materialize_slim_in_txn`
                // re-derives the transcript digest against `head_revision`, so a
                // torn pair would surface as `Corrupted` rather than silently —
                // but under a single transaction the pair cannot tear at all.
                let Some((head, _token)) = head_row_in_txn(tx, &id)? else {
                    return Ok(None);
                };
                materialize_slim_in_txn(tx, &id, &head).map(Some)
            },
        )
        .await
    }

    async fn load_canonical_previous(
        &self,
        id: &meerkat_core::types::SessionId,
    ) -> Result<Option<(Session, Vec<meerkat_core::TranscriptRewriteCommit>)>, SessionStoreError>
    {
        let id = id.clone();
        self.delta_read(
            "continuity load_canonical_previous",
            move |tx, head_tables| {
                if !head_tables {
                    return Ok(None);
                }
                let Some((head, _token)) = head_row_in_txn(tx, &id)? else {
                    return Ok(None);
                };
                let rewrite_count = head.rewrite_count;
                let session = materialize_slim_in_txn(tx, &id, &head)?;
                // The commits alone — deliberately not `load_rewrites`,
                // which reconstructs both message bodies of every rewrite
                // and would make a guard read O(rewrites x transcript).
                let adopted = rewrite_rows_in_txn(tx, &id, rewrite_count)?
                    .into_iter()
                    .map(|row| row.commit)
                    .collect();
                Ok(Some((session, adopted)))
            },
        )
        .await
    }

    async fn load_messages(
        &self,
        id: &meerkat_core::types::SessionId,
        strand: &TranscriptStrandId,
        range: std::ops::Range<u64>,
    ) -> Result<Vec<Message>, SessionStoreError> {
        let id = id.clone();
        let strand = strand.clone();
        self.delta_read("continuity load_messages", move |tx, head_tables| {
            if head_tables && head_row_in_txn(tx, &id)?.is_some() {
                return strand_messages_in_txn(tx, &id, &strand, range);
            }
            let Some(session) = blob_session_in_txn(tx, &id)? else {
                return Err(SessionStoreError::NotFound(id));
            };
            let (layout, _head) = layout_for_blob_session(&session)?;
            let rows = layout
                .strands
                .iter()
                .find(|(sid, _)| *sid == strand)
                .map(|(_, rows)| rows.as_slice())
                .ok_or_else(|| SessionStoreError::Corrupted(id.clone()))?;
            let start = usize::try_from(range.start)
                .map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
            let end =
                usize::try_from(range.end).map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
            if start > end || end > rows.len() {
                return Err(SessionStoreError::Corrupted(id.clone()));
            }
            Ok(rows[start..end].to_vec())
        })
        .await
    }

    async fn load_rewrites(
        &self,
        id: &meerkat_core::types::SessionId,
    ) -> Result<Vec<TranscriptRewriteRecord>, SessionStoreError> {
        let id = id.clone();
        self.delta_read("continuity load_rewrites", move |tx, head_tables| {
            if head_tables && let Some((head, _token)) = head_row_in_txn(tx, &id)? {
                return rewrite_records_in_txn(tx, &id, head.rewrite_count);
            }
            let Some(session) = blob_session_in_txn(tx, &id)? else {
                return Ok(Vec::new());
            };
            let (layout, _head) = layout_for_blob_session(&session)?;
            layout
                .rewrites
                .iter()
                .map(|rewrite| {
                    let parent_len = usize::try_from(rewrite.parent_len)
                        .map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
                    let strand_len = usize::try_from(rewrite.strand_len)
                        .map_err(|_| SessionStoreError::Corrupted(id.clone()))?;
                    let parent_messages = layout
                        .strands
                        .iter()
                        .find(|(sid, _)| *sid == rewrite.parent_strand)
                        .map(|(_, rows)| rows[..parent_len].to_vec())
                        .ok_or_else(|| SessionStoreError::Corrupted(id.clone()))?;
                    let revision_messages = layout
                        .strands
                        .iter()
                        .find(|(sid, _)| *sid == rewrite.strand)
                        .map(|(_, rows)| rows[..strand_len].to_vec())
                        .ok_or_else(|| SessionStoreError::Corrupted(id.clone()))?;
                    reconstruct_rewrite_record(
                        &id,
                        rewrite.commit.clone(),
                        parent_messages,
                        revision_messages,
                    )
                })
                .collect()
        })
        .await
    }
}

#[cfg(test)]
#[allow(clippy::unwrap_used, clippy::expect_used, clippy::panic)]
mod tests {
    use super::*;

    fn record(
        identity: &AgentIdentity,
        session_id: &meerkat_core::types::SessionId,
    ) -> ContinuityRecord {
        ContinuityRecord {
            identity: identity.clone(),
            agent_runtime_id: AgentRuntimeId::parse("rt-001").unwrap(),
            session_id: session_id.clone(),
            generation: ContinuityGeneration::new(0),
            checkpoint_version: CheckpointVersion::new(0),
        }
    }

    #[tokio::test]
    async fn fresh_store_stamps_mobkit_continuity_domain() {
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let store = LocalContinuityStore::open(&path).expect("open");
        // The store must stay usable while we inspect the ledger.
        assert_eq!(store.max_fencing_token().expect("floor"), 0);
        let probe = Connection::open(&path).expect("probe");
        assert_eq!(
            meerkat_sqlite::domain_version(&probe, "mobkit-continuity").expect("ledger"),
            Some(1)
        );
    }

    /// A pre-ledger file (historical two-table DDL, no meerkat_schema table)
    /// is refused typed at open with its rows left untouched and no ledger
    /// stamped: pre-ledger corpora are below the mobkit 0.8.8 floor, and the
    /// 0.8.11 reset retired silent pre-floor convergence (this test pinned
    /// that convergence until then).
    #[tokio::test]
    async fn legacy_file_is_refused_with_rows_preserved() {
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let session_id = meerkat_core::types::SessionId::new();
        {
            let conn = Connection::open(&path).expect("legacy create");
            conn.execute_batch(SCHEMA).expect("legacy ddl");
            conn.execute(
                "INSERT INTO continuity_records (identity, agent_runtime_id, session_id, \
                 generation, checkpoint_version, fencing_token) VALUES (?1, 'rt-001', ?2, 3, 5, 7)",
                rusqlite::params![identity.as_str(), session_id.to_string()],
            )
            .expect("legacy record");
            conn.execute(
                "INSERT INTO session_snapshots (session_id, identity, generation, \
                 checkpoint_version, fencing_token, data) VALUES (?1, ?2, 3, 5, 9, X'010203')",
                rusqlite::params![session_id.to_string(), identity.as_str()],
            )
            .expect("legacy snapshot");
        }

        assert!(
            LocalContinuityStore::open(&path).is_err(),
            "opening a pre-ledger continuity database must refuse typed: unledgered owned \
             tables are below the mobkit 0.8.8 floor and must never be silently converged"
        );
        let probe = Connection::open(&path).expect("probe");
        let (generation, checkpoint): (i64, i64) = probe
            .query_row(
                "SELECT generation, checkpoint_version FROM continuity_records \
                 WHERE identity = ?1",
                rusqlite::params![identity.as_str()],
                |row| Ok((row.get(0)?, row.get(1)?)),
            )
            .expect("legacy record preserved");
        assert_eq!((generation, checkpoint), (3, 5));
        let snapshots: i64 = probe
            .query_row("SELECT COUNT(*) FROM session_snapshots", [], |row| {
                row.get(0)
            })
            .expect("legacy snapshots preserved");
        assert_eq!(snapshots, 1, "the refusal must leave legacy rows untouched");
        assert_eq!(
            meerkat_sqlite::domain_version(&probe, "mobkit-continuity").expect("ledger"),
            None,
            "a refused open must not stamp the ledger"
        );
    }

    #[tokio::test]
    async fn delete_continuity_record_removes_record_and_snapshots_atomically() {
        // Regression: the record + its session snapshots must be deleted as one
        // transaction so a crash between the two DELETEs cannot leave a
        // half-deleted store. Functionally: after a successful delete BOTH the
        // continuity record and the snapshot must be gone.
        let store = LocalContinuityStore::in_memory().expect("in-memory store");
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let session_id = meerkat_core::types::SessionId::new();

        store
            .upsert_continuity_record(&record(&identity, &session_id), FencingToken::new(1))
            .await
            .unwrap();
        store
            .save_session_snapshot(
                &identity,
                &session_id,
                ContinuityGeneration::new(0),
                CheckpointVersion::new(1),
                FencingToken::new(1),
                &SessionSnapshot {
                    data: vec![1, 2, 3],
                },
            )
            .await
            .unwrap();

        // Both present before delete.
        assert!(
            store
                .load_session_snapshot(&session_id)
                .await
                .unwrap()
                .is_some()
        );

        store
            .delete_continuity_record(&identity, FencingToken::new(2))
            .await
            .unwrap();

        // Record gone: resolve returns Uninitialized.
        let resolved = store
            .resolve_many(std::slice::from_ref(&identity))
            .await
            .unwrap();
        assert!(matches!(
            resolved.get(&identity),
            Some(ContinuityResolveState::Uninitialized)
        ));
        // Snapshot gone too (same transaction).
        assert!(
            store
                .load_session_snapshot(&session_id)
                .await
                .unwrap()
                .is_none()
        );
    }

    #[tokio::test]
    async fn delete_continuity_record_rejects_stale_fencing_token() {
        let store = LocalContinuityStore::in_memory().expect("in-memory store");
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let session_id = meerkat_core::types::SessionId::new();
        store
            .upsert_continuity_record(&record(&identity, &session_id), FencingToken::new(5))
            .await
            .unwrap();

        let err = store
            .delete_continuity_record(&identity, FencingToken::new(2))
            .await
            .expect_err("stale fencing token must be rejected");
        assert!(matches!(
            err,
            ContinuityStoreError::StaleFencingToken { .. }
        ));

        // The record must survive a rejected delete.
        let resolved = store
            .resolve_many(std::slice::from_ref(&identity))
            .await
            .unwrap();
        assert!(!matches!(
            resolved.get(&identity),
            Some(ContinuityResolveState::Uninitialized)
        ));
    }

    #[tokio::test]
    async fn continuity_upsert_rejects_generation_regression_even_with_newer_fence() {
        let store = LocalContinuityStore::in_memory().unwrap();
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let session_id = meerkat_core::types::SessionId::new();
        let mut current = record(&identity, &session_id);
        current.generation = ContinuityGeneration::new(1);
        store
            .upsert_continuity_record(&current, FencingToken::new(2))
            .await
            .unwrap();

        let mut stale = current.clone();
        stale.generation = ContinuityGeneration::new(0);
        let error = store
            .upsert_continuity_record(&stale, FencingToken::new(3))
            .await
            .expect_err("a newer fence must not authorize generation rollback");
        assert!(matches!(
            error,
            ContinuityStoreError::StaleContinuityGeneration { .. }
        ));
        let resolved = store
            .resolve_many(std::slice::from_ref(&identity))
            .await
            .unwrap();
        let ContinuityResolveState::Ready { record } = &resolved[&identity] else {
            panic!("continuity should remain ready");
        };
        assert_eq!(record.generation, ContinuityGeneration::new(1));
    }

    #[tokio::test]
    async fn same_generation_session_rebind_preserves_durable_checkpoint_head() {
        let store = LocalContinuityStore::in_memory().unwrap();
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let old_session_id = meerkat_core::types::SessionId::new();
        let mut old = record(&identity, &old_session_id);
        old.checkpoint_version = CheckpointVersion::new(10);
        store
            .upsert_continuity_record(&old, FencingToken::new(1))
            .await
            .unwrap();
        store
            .save_session_snapshot(
                &identity,
                &old_session_id,
                old.generation,
                CheckpointVersion::new(11),
                FencingToken::new(2),
                &SessionSnapshot { data: vec![11] },
            )
            .await
            .unwrap();

        let new_session_id = meerkat_core::types::SessionId::new();
        let mut stale_rebind = old;
        stale_rebind.session_id = new_session_id.clone();
        store
            .upsert_continuity_record(&stale_rebind, FencingToken::new(3))
            .await
            .unwrap();

        let resolved = store
            .resolve_many(std::slice::from_ref(&identity))
            .await
            .unwrap();
        let ContinuityResolveState::Ready { record } = &resolved[&identity] else {
            panic!("continuity should remain ready");
        };
        assert_eq!(record.session_id, new_session_id);
        assert_eq!(record.checkpoint_version, CheckpointVersion::new(11));
    }

    #[tokio::test]
    async fn reset_rollback_cas_restores_previous_row_and_only_removes_attempt_snapshots() {
        let store = LocalContinuityStore::in_memory().unwrap();
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let previous_session = meerkat_core::types::SessionId::new();
        let mut previous = record(&identity, &previous_session);
        store
            .upsert_continuity_record(&previous, FencingToken::new(1))
            .await
            .unwrap();
        store
            .save_session_snapshot(
                &identity,
                &previous_session,
                previous.generation,
                CheckpointVersion::new(1),
                FencingToken::new(1),
                &SessionSnapshot { data: vec![10] },
            )
            .await
            .unwrap();
        previous.checkpoint_version = CheckpointVersion::new(1);

        let attempted_session = meerkat_core::types::SessionId::new();
        let mut attempted = record(&identity, &attempted_session);
        attempted.agent_runtime_id = AgentRuntimeId::parse("rt:triage:main:1").unwrap();
        attempted.generation = ContinuityGeneration::new(1);
        store
            .upsert_continuity_record(&attempted, FencingToken::new(2))
            .await
            .unwrap();
        store
            .save_session_snapshot(
                &identity,
                &attempted_session,
                attempted.generation,
                CheckpointVersion::new(1),
                FencingToken::new(2),
                &SessionSnapshot { data: vec![20] },
            )
            .await
            .unwrap();

        // The session service may have advanced the attempted checkpoint
        // after reset captured the provisional record. Runtime/session/
        // generation/fence identify the attempt; its checkpoint is not part
        // of the rollback CAS.
        store
            .rollback_continuity_record(&attempted, Some(&previous), FencingToken::new(2))
            .await
            .unwrap();

        let resolved = store
            .resolve_many(std::slice::from_ref(&identity))
            .await
            .unwrap();
        assert_eq!(
            resolved.get(&identity),
            Some(&ContinuityResolveState::Ready {
                record: previous.clone(),
            })
        );
        assert_eq!(
            store
                .load_session_snapshot(&previous_session)
                .await
                .unwrap(),
            Some(SessionSnapshot { data: vec![10] })
        );
        assert_eq!(
            store
                .load_session_snapshot(&attempted_session)
                .await
                .unwrap(),
            None
        );
    }

    #[tokio::test]
    async fn reset_rollback_cas_deletes_uninitialized_attempt_and_its_snapshots() {
        let store = LocalContinuityStore::in_memory().unwrap();
        let identity = AgentIdentity::parse("triage:new").unwrap();
        let attempted_session = meerkat_core::types::SessionId::new();
        let mut attempted = record(&identity, &attempted_session);
        attempted.agent_runtime_id = AgentRuntimeId::parse("rt:triage:new:1").unwrap();
        attempted.generation = ContinuityGeneration::new(1);
        store
            .upsert_continuity_record(&attempted, FencingToken::new(1))
            .await
            .unwrap();
        store
            .save_session_snapshot(
                &identity,
                &attempted_session,
                attempted.generation,
                CheckpointVersion::new(1),
                FencingToken::new(1),
                &SessionSnapshot { data: vec![30] },
            )
            .await
            .unwrap();

        store
            .rollback_continuity_record(&attempted, None, FencingToken::new(1))
            .await
            .unwrap();

        let resolved = store
            .resolve_many(std::slice::from_ref(&identity))
            .await
            .unwrap();
        assert_eq!(
            resolved.get(&identity),
            Some(&ContinuityResolveState::Uninitialized)
        );
        assert!(
            store
                .load_session_snapshot(&attempted_session)
                .await
                .unwrap()
                .is_none()
        );
    }

    #[tokio::test]
    async fn reset_rollback_cas_cannot_clobber_a_newer_attempt() {
        let store = LocalContinuityStore::in_memory().unwrap();
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let previous_session = meerkat_core::types::SessionId::new();
        let previous = record(&identity, &previous_session);
        store
            .upsert_continuity_record(&previous, FencingToken::new(1))
            .await
            .unwrap();

        let attempted_session = meerkat_core::types::SessionId::new();
        let mut attempted = record(&identity, &attempted_session);
        attempted.agent_runtime_id = AgentRuntimeId::parse("rt:triage:main:1").unwrap();
        attempted.generation = ContinuityGeneration::new(1);
        store
            .upsert_continuity_record(&attempted, FencingToken::new(2))
            .await
            .unwrap();
        store
            .save_session_snapshot(
                &identity,
                &attempted_session,
                attempted.generation,
                CheckpointVersion::new(1),
                FencingToken::new(2),
                &SessionSnapshot { data: vec![40] },
            )
            .await
            .unwrap();

        let newer_session = meerkat_core::types::SessionId::new();
        let mut newer = record(&identity, &newer_session);
        newer.agent_runtime_id = AgentRuntimeId::parse("rt:triage:main:2").unwrap();
        newer.generation = ContinuityGeneration::new(2);
        store
            .upsert_continuity_record(&newer, FencingToken::new(3))
            .await
            .unwrap();

        let error = store
            .rollback_continuity_record(&attempted, Some(&previous), FencingToken::new(2))
            .await
            .expect_err("a stale reset attempt must not overwrite a newer generation");
        assert!(matches!(
            error,
            ContinuityStoreError::StaleFencingToken { .. }
        ));
        let resolved = store
            .resolve_many(std::slice::from_ref(&identity))
            .await
            .unwrap();
        assert_eq!(
            resolved.get(&identity),
            Some(&ContinuityResolveState::Ready { record: newer })
        );
        assert_eq!(
            store
                .load_session_snapshot(&attempted_session)
                .await
                .unwrap(),
            Some(SessionSnapshot { data: vec![40] })
        );
    }

    #[tokio::test]
    async fn max_fencing_token_recovers_high_water_across_tables_and_reopen() {
        let dir = tempfile::tempdir().unwrap();
        let path = dir.path().join("continuity.db");
        let identity = AgentIdentity::parse("identity:parent-1").unwrap();
        let session_id = meerkat_core::types::SessionId::new();
        {
            let store = LocalContinuityStore::open(&path).unwrap();
            assert_eq!(store.max_fencing_token().unwrap(), 0, "empty store -> 0");
            // First boot: continuity record + session snapshot both at token 1.
            store
                .upsert_continuity_record(&record(&identity, &session_id), FencingToken::new(1))
                .await
                .unwrap();
            store
                .save_session_snapshot(
                    &identity,
                    &session_id,
                    ContinuityGeneration::new(0),
                    CheckpointVersion::new(1),
                    FencingToken::new(1),
                    &SessionSnapshot {
                        data: vec![1, 2, 3],
                    },
                )
                .await
                .unwrap();
            // Reconcile re-bumps the continuity record to 15; the snapshot stays
            // at 1 — the two-table divergence from the field report.
            store
                .upsert_continuity_record(&record(&identity, &session_id), FencingToken::new(15))
                .await
                .unwrap();
            assert_eq!(
                store.max_fencing_token().unwrap(),
                15,
                "high-water = MAX over continuity_records (15) and session_snapshots (1)"
            );
        }
        // Restart: the high-water must survive re-opening the same db file.
        let store = LocalContinuityStore::open(&path).unwrap();
        assert_eq!(
            store.max_fencing_token().unwrap(),
            15,
            "high-water must persist across reopen"
        );

        // The session_snapshots arm of the union must actually count: a snapshot
        // whose token exceeds the continuity record (the crash-window case the
        // MAX-over-both-tables query is for) becomes the high-water.
        let snap_only = LocalContinuityStore::in_memory().unwrap();
        let sid = meerkat_core::types::SessionId::new();
        snap_only
            .save_session_snapshot(
                &identity,
                &sid,
                ContinuityGeneration::new(0),
                CheckpointVersion::new(1),
                FencingToken::new(7),
                &SessionSnapshot { data: vec![9] },
            )
            .await
            .unwrap();
        assert_eq!(
            snap_only.max_fencing_token().unwrap(),
            7,
            "high-water must come from session_snapshots when no continuity record is present"
        );
    }

    #[tokio::test(flavor = "current_thread")]
    async fn async_open_keeps_tokio_worker_responsive_while_sqlite_is_locked() {
        let dir = tempfile::tempdir().unwrap();
        let path = dir.path().join("async-open.db");
        let lock = Connection::open(&path).unwrap();
        lock.execute_batch("PRAGMA journal_mode=WAL; PRAGMA busy_timeout=5000; BEGIN IMMEDIATE;")
            .unwrap();

        let open = tokio::spawn({
            let path = path.clone();
            async move { LocalContinuityStore::open_with_fencing_floor(path).await }
        });
        tokio::time::timeout(
            std::time::Duration::from_millis(250),
            tokio::time::sleep(std::time::Duration::from_millis(25)),
        )
        .await
        .expect("the current-thread Tokio worker must remain responsive");
        assert!(
            !open.is_finished(),
            "schema initialization should still be waiting on the held SQLite writer lock"
        );

        lock.execute_batch("ROLLBACK;").unwrap();
        tokio::time::timeout(std::time::Duration::from_secs(2), open)
            .await
            .expect("async open should finish after releasing the SQLite lock")
            .expect("open task should not panic")
            .expect("store should open and read its fencing floor");
    }

    /// The end-to-end restart regression: a lease provider seeded from the
    /// persisted high-water issues a token that the store accepts on restore,
    /// while a provider that reset to 1 (the v0.7.8 bug) is rejected as stale.
    #[tokio::test]
    async fn lease_fencing_resumes_above_high_water_on_restart() {
        use super::super::contracts::LeaseProvider;
        use super::super::local_lease::LocalLeaseProvider;
        use super::super::types::LeaseAcquireResult;

        let store = LocalContinuityStore::in_memory().unwrap();
        let identity = AgentIdentity::parse("identity:parent-1").unwrap();
        let session_id = meerkat_core::types::SessionId::new();
        // Pre-restart history: reconcile bumped the continuity record to 15.
        store
            .upsert_continuity_record(&record(&identity, &session_id), FencingToken::new(15))
            .await
            .unwrap();

        // Restart: seed a fresh lease provider from the persisted high-water.
        let high_water = store.max_fencing_token().unwrap();
        assert_eq!(high_water, 15);
        let provider = LocalLeaseProvider::with_floor(high_water);
        let acquired = provider
            .acquire_leases(std::slice::from_ref(&identity), "rt-restart")
            .await
            .unwrap();
        let token = match acquired.get(&identity) {
            Some(LeaseAcquireResult::Acquired(grant)) => grant.fencing_token,
            _ => panic!("expected an acquired lease"),
        };
        assert!(
            token.get() > high_water,
            "resumed token {} must exceed the high-water {high_water}",
            token.get()
        );
        // The restore upsert with the resumed token SUCCEEDS (not stale).
        store
            .upsert_continuity_record(&record(&identity, &session_id), token)
            .await
            .expect("a token resumed above the high-water must be accepted");

        // Prove the bug this fixes: a provider that reset to 1 IS rejected.
        let reset_provider = LocalLeaseProvider::with_floor(0);
        let reset_acquired = reset_provider
            .acquire_leases(std::slice::from_ref(&identity), "rt-reset")
            .await
            .unwrap();
        let reset_token = match reset_acquired.get(&identity) {
            Some(LeaseAcquireResult::Acquired(grant)) => grant.fencing_token,
            _ => panic!("expected an acquired lease"),
        };
        let err = store
            .upsert_continuity_record(&record(&identity, &session_id), reset_token)
            .await
            .expect_err("a reset-to-1 token must be rejected as stale");
        assert!(matches!(
            err,
            ContinuityStoreError::StaleFencingToken { .. }
        ));
    }

    #[tokio::test]
    async fn exact_snapshot_match_requires_the_current_continuity_head() {
        let store = LocalContinuityStore::in_memory().expect("in-memory store");
        let identity = AgentIdentity::parse("agent:exact-match").unwrap();
        let session_id = meerkat_core::types::SessionId::new();
        let snapshot = SessionSnapshot {
            data: vec![1, 3, 3, 7],
        };
        let continuity_record = record(&identity, &session_id);
        store
            .upsert_continuity_record(&continuity_record, FencingToken::new(1))
            .await
            .unwrap();
        store
            .save_session_snapshot(
                &identity,
                &session_id,
                ContinuityGeneration::new(0),
                CheckpointVersion::new(1),
                FencingToken::new(1),
                &snapshot,
            )
            .await
            .unwrap();

        let candidate = SessionSnapshotMatchCandidate {
            identity: identity.clone(),
            session_id: session_id.clone(),
            generation: ContinuityGeneration::new(0),
            checkpoint_version: CheckpointVersion::new(1),
            fencing_token: FencingToken::new(1),
            snapshot: Arc::new(snapshot),
        };
        assert!(
            store
                .session_snapshot_matches_current(candidate.clone())
                .await
                .unwrap(),
            "the complete durable provenance tuple and bytes should match"
        );

        store
            .upsert_continuity_record(&continuity_record, FencingToken::new(2))
            .await
            .unwrap();
        assert!(
            !store
                .session_snapshot_matches_current(candidate.clone())
                .await
                .unwrap(),
            "a stale presented write fence must not match a newer continuity head"
        );
        assert!(
            store
                .session_snapshot_matches_current(SessionSnapshotMatchCandidate {
                    fencing_token: FencingToken::new(2),
                    ..candidate
                })
                .await
                .unwrap(),
            "the historical row fence is provenance and may precede current write authority"
        );
    }

    #[tokio::test]
    async fn snapshot_save_rejects_another_identity_owning_the_session_id() {
        let store = LocalContinuityStore::in_memory().expect("in-memory store");
        let first = AgentIdentity::parse("agent:first-owner").unwrap();
        let second = AgentIdentity::parse("agent:second-owner").unwrap();
        let session_id = meerkat_core::types::SessionId::new();
        store
            .upsert_continuity_record(&record(&first, &session_id), FencingToken::new(1))
            .await
            .unwrap();
        store
            .save_session_snapshot(
                &first,
                &session_id,
                ContinuityGeneration::new(0),
                CheckpointVersion::new(1),
                FencingToken::new(1),
                &SessionSnapshot { data: vec![1] },
            )
            .await
            .unwrap();
        store
            .upsert_continuity_record(&record(&second, &session_id), FencingToken::new(2))
            .await
            .unwrap();

        let error = store
            .save_session_snapshot(
                &second,
                &session_id,
                ContinuityGeneration::new(0),
                CheckpointVersion::new(1),
                FencingToken::new(2),
                &SessionSnapshot { data: vec![2] },
            )
            .await
            .expect_err("a different identity must not overwrite the session row");
        assert!(matches!(error, ContinuityStoreError::Corruption(_)));
        assert_eq!(
            store.load_session_snapshot(&session_id).await.unwrap(),
            Some(SessionSnapshot { data: vec![1] })
        );
    }

    #[tokio::test]
    async fn snapshot_save_rejects_same_identity_from_another_generation_atomically() {
        let store = LocalContinuityStore::in_memory().expect("in-memory store");
        let identity = AgentIdentity::parse("agent:generation-owner").unwrap();
        let session_id = meerkat_core::types::SessionId::new();
        store
            .upsert_continuity_record(&record(&identity, &session_id), FencingToken::new(1))
            .await
            .unwrap();
        store
            .save_session_snapshot(
                &identity,
                &session_id,
                ContinuityGeneration::new(0),
                CheckpointVersion::new(1),
                FencingToken::new(1),
                &SessionSnapshot { data: vec![1] },
            )
            .await
            .unwrap();

        let identity_for_update = identity.clone();
        store
            .run_blocking("advance-test-generation", move |inner| {
                inner.with_writer(|connection| {
                    connection
                        .execute(
                            "UPDATE continuity_records
                             SET generation = 1, checkpoint_version = 0, fencing_token = 2
                             WHERE identity = ?1",
                            rusqlite::params![identity_for_update.as_str()],
                        )
                        .map_err(|error| {
                            ContinuityStoreError::Io(format!(
                                "advance test continuity generation: {error}"
                            ))
                        })?;
                    Ok(())
                })
            })
            .await
            .unwrap();

        let error = store
            .save_session_snapshot(
                &identity,
                &session_id,
                ContinuityGeneration::new(1),
                CheckpointVersion::new(1),
                FencingToken::new(2),
                &SessionSnapshot { data: vec![2] },
            )
            .await
            .expect_err("a new generation must not overwrite the prior session row");
        assert!(matches!(error, ContinuityStoreError::Corruption(_)));
        assert_eq!(
            store.load_session_snapshot(&session_id).await.unwrap(),
            Some(SessionSnapshot { data: vec![1] }),
            "failed cross-generation save must leave snapshot bytes unchanged"
        );
        let resolved = store
            .resolve_many(std::slice::from_ref(&identity))
            .await
            .unwrap();
        let ContinuityResolveState::Ready { record } = resolved.get(&identity).unwrap() else {
            panic!("expected ready continuity head");
        };
        assert_eq!(record.generation, ContinuityGeneration::new(1));
        assert_eq!(record.checkpoint_version, CheckpointVersion::new(0));
    }

    #[tokio::test(flavor = "current_thread")]
    async fn blocking_worker_keeps_the_async_executor_responsive() {
        let store = LocalContinuityStore::in_memory().expect("in-memory store");
        let (started_tx, started_rx) = tokio::sync::oneshot::channel();
        let work = tokio::spawn(async move {
            store
                .run_blocking("blocking-worker-test", move |_| {
                    let _ = started_tx.send(());
                    std::thread::sleep(std::time::Duration::from_millis(150));
                    Ok(())
                })
                .await
        });

        started_rx.await.expect("blocking worker started");
        assert!(!work.is_finished(), "worker should still be sleeping");
        tokio::time::sleep(std::time::Duration::from_millis(10)).await;
        assert!(
            !work.is_finished(),
            "the current-thread executor should run while SQLite work is blocking"
        );
        work.await.expect("worker task joined").unwrap();
    }

    #[tokio::test]
    async fn file_backed_store_serves_reads_from_a_bounded_pool() {
        let dir = tempfile::tempdir().unwrap();
        let store = LocalContinuityStore::open(dir.path().join("read-pool.db")).unwrap();
        let active = Arc::new(std::sync::atomic::AtomicUsize::new(0));
        let max_active = Arc::new(std::sync::atomic::AtomicUsize::new(0));
        let release = Arc::new(std::sync::atomic::AtomicBool::new(false));
        let mut tasks = Vec::with_capacity(READ_POOL_SIZE);

        for _ in 0..READ_POOL_SIZE {
            let store = store.clone();
            let active = active.clone();
            let max_active = max_active.clone();
            let release = release.clone();
            tasks.push(tokio::spawn(async move {
                store
                    .run_blocking("read-pool-test", move |inner| {
                        inner.with_reader(|_| {
                            let now = active.fetch_add(1, std::sync::atomic::Ordering::SeqCst) + 1;
                            max_active.fetch_max(now, std::sync::atomic::Ordering::SeqCst);
                            while !release.load(std::sync::atomic::Ordering::SeqCst) {
                                std::thread::sleep(std::time::Duration::from_millis(1));
                            }
                            active.fetch_sub(1, std::sync::atomic::Ordering::SeqCst);
                            Ok(())
                        })
                    })
                    .await
            }));
        }

        let deadline = tokio::time::Instant::now() + std::time::Duration::from_secs(1);
        while max_active.load(std::sync::atomic::Ordering::SeqCst) < READ_POOL_SIZE
            && tokio::time::Instant::now() < deadline
        {
            tokio::time::sleep(std::time::Duration::from_millis(5)).await;
        }
        release.store(true, std::sync::atomic::Ordering::SeqCst);
        for task in tasks {
            task.await.expect("read task joined").unwrap();
        }
        assert_eq!(
            max_active.load(std::sync::atomic::Ordering::SeqCst),
            READ_POOL_SIZE,
            "all bounded reader connections should be independently usable"
        );
    }

    #[tokio::test]
    async fn cloned_in_memory_store_shares_one_database() {
        let store = LocalContinuityStore::in_memory().expect("in-memory store");
        let reader = store.clone();
        let identity = AgentIdentity::parse("agent:shared-memory").unwrap();
        let session_id = meerkat_core::types::SessionId::new();
        store
            .upsert_continuity_record(&record(&identity, &session_id), FencingToken::new(1))
            .await
            .unwrap();

        let resolved = reader
            .resolve_many(std::slice::from_ref(&identity))
            .await
            .unwrap();
        assert!(matches!(
            resolved.get(&identity),
            Some(ContinuityResolveState::Ready { .. })
        ));
    }

    // -----------------------------------------------------------------
    // M4b: the head-canonical session-delta channel
    // -----------------------------------------------------------------

    fn session_with(texts: &[&str]) -> Session {
        let mut session = Session::new();
        for text in texts {
            session.push(meerkat_core::Message::User(
                meerkat_core::UserMessage::text((*text).to_string()),
            ));
        }
        session
    }

    /// A ledgered-v1 corpus in the shape a real deployment actually has:
    /// the store's own open converges the DDL, the deferred stamp leaves the
    /// ledger at v1, and a blob row exists with no head row adopting it.
    fn plant_ledgered_v1_blob(path: &Path, identity: &AgentIdentity, session: &Session) {
        drop(LocalContinuityStore::open(path).expect("open converges schema"));
        let conn = Connection::open(path).expect("plant");
        conn.execute(
            "INSERT INTO session_snapshots (session_id, identity, generation, \
             checkpoint_version, fencing_token, data) VALUES (?1, ?2, 3, 5, 9, ?3)",
            rusqlite::params![
                session.id().to_string(),
                identity.as_str(),
                serde_json::to_vec(session).expect("encode session")
            ],
        )
        .expect("plant blob row");
    }

    fn continuity_domain_version(path: &Path) -> Option<i64> {
        let conn = Connection::open(path).expect("probe");
        meerkat_sqlite::domain_version(&conn, MOBKIT_CONTINUITY_DOMAIN.name)
            .expect("domain version")
    }

    /// Head rows, tolerating the table's absence — a real v1 corpus has NO
    /// head-canonical tables at all (they are created inside the delta
    /// write's transaction, not at open), so "missing table" is zero rows
    /// rather than an error.
    fn head_row_count(path: &Path) -> i64 {
        let conn = Connection::open(path).expect("probe");
        let exists: i64 = conn
            .query_row(
                "SELECT COUNT(*) FROM sqlite_master WHERE type='table' \
                 AND name='continuity_session_heads'",
                [],
                |row| row.get(0),
            )
            .expect("probe head table");
        if exists == 0 {
            return 0;
        }
        conn.query_row("SELECT COUNT(*) FROM continuity_session_heads", [], |row| {
            row.get(0)
        })
        .expect("count head rows")
    }

    #[test]
    fn backfill_converts_a_ledgered_v1_corpus_and_stamps_only_on_complete_conversion() {
        use std::collections::BTreeSet;
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let identity = AgentIdentity::parse("triage:main").expect("identity");
        let session = session_with(&["hello", "world"]);
        plant_ledgered_v1_blob(&path, &identity, &session);

        // Fixture self-check: the deferred stamp means a converged file is
        // still v1. If this ever fails the fixture is not the shape under
        // test and every assertion below is meaningless.
        assert_eq!(
            continuity_domain_version(&path),
            Some(1),
            "fixture must be a LEDGERED v1 corpus, not a stamped one"
        );
        assert_eq!(head_row_count(&path), 0, "fixture must have no head row");

        // ---- dry run mutates nothing, including the ledger ----
        let dry = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            false,
            &BTreeSet::new(),
        )
        .expect("dry run");
        assert_eq!(dry.examined, 1);
        assert!(!dry.applied);
        assert!(!dry.ledger_stamped);
        assert!(dry.converted.is_empty());
        assert_eq!(continuity_domain_version(&path), Some(1), "dry run stamped");
        assert_eq!(head_row_count(&path), 0, "dry run converted");

        // ---- apply converts, retains the blob, and stamps ----
        let applied = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            true,
            &BTreeSet::new(),
        )
        .expect("apply");
        assert_eq!(applied.converted.len(), 1);
        assert!(applied.failures.is_empty(), "{:?}", applied.failures);
        assert!(applied.complete());
        assert!(applied.ledger_stamped, "complete conversion must stamp");
        assert_eq!(head_row_count(&path), 1, "head row not created");
        assert_eq!(continuity_domain_version(&path), Some(2), "not stamped v2");

        // The blob is a frozen archive, never deleted.
        let conn = Connection::open(&path).expect("probe");
        let blobs: i64 = conn
            .query_row("SELECT COUNT(*) FROM session_snapshots", [], |row| {
                row.get(0)
            })
            .expect("count blobs");
        assert_eq!(blobs, 1, "the legacy blob must be retained as an archive");

        // ---- re-running is idempotent ----
        // The stamp asserts "no legacy blob is left unconverted", not "this
        // run did work", so a second run re-affirms it as a no-op rather than
        // withholding it. What must NOT happen is re-converting a session or
        // duplicating its head row.
        let again = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            true,
            &BTreeSet::new(),
        )
        .expect("second apply");
        // Examined counts EVERY blob row, so an already-converted session is
        // still examined — it just produces no work.
        assert_eq!(again.examined, 1);
        assert!(
            again.converted.is_empty(),
            "re-converted an already-converted session"
        );
        assert!(again.failures.is_empty(), "{:?}", again.failures);
        assert_eq!(head_row_count(&path), 1, "second run duplicated head rows");
        assert_eq!(continuity_domain_version(&path), Some(2));
    }

    #[test]
    fn backfill_leaves_the_ledger_at_v1_when_a_session_cannot_convert() {
        use std::collections::BTreeSet;
        // The whole point of deferring the stamp: a corpus that did not fully
        // cross keeps rollback to a pre-head-canonical release available.
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let identity = AgentIdentity::parse("triage:main").expect("identity");
        let session = session_with(&["ok"]);
        plant_ledgered_v1_blob(&path, &identity, &session);
        {
            // A second blob row that cannot decode into a Session.
            let conn = Connection::open(&path).expect("plant");
            conn.execute(
                "INSERT INTO session_snapshots (session_id, identity, generation, \
                 checkpoint_version, fencing_token, data) VALUES (?1, ?2, 3, 5, 9, X'6E6F7065')",
                rusqlite::params![
                    meerkat_core::types::SessionId::new().to_string(),
                    identity.as_str()
                ],
            )
            .expect("plant undecodable blob");
        }

        let applied = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            true,
            &BTreeSet::new(),
        )
        .expect("apply");
        assert_eq!(applied.examined, 2);
        assert!(!applied.failures.is_empty(), "undecodable blob must fail");
        assert!(!applied.complete());
        assert!(
            !applied.ledger_stamped,
            "a partial conversion must NOT stamp — rollback stays available"
        );
        assert_eq!(
            continuity_domain_version(&path),
            Some(1),
            "partial run must leave the file at v1"
        );
    }

    #[test]
    fn a_post_failure_file_resumes_on_the_remainder_without_reconverting() {
        use std::collections::BTreeSet;
        // Idempotence on a CLEAN file is the easy input. The interesting one
        // is the file a failed crossing leaves behind: A already has a head
        // row, so the census must skip it and retry only B. If that is wrong,
        // resumability is broken exactly where an operator needs it.
        // (Raised by the deployment owner reviewing the rollback spec.)
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let identity = AgentIdentity::parse("triage:main").expect("identity");
        let good = session_with(&["keep me"]);
        plant_ledgered_v1_blob(&path, &identity, &good);
        // Session ids are UUIDv7, so one created later sorts later: B is
        // attempted after A has already committed its own transaction.
        // B is a REAL session whose stored BYTES are corrupt, so the row's
        // session_id and the blob's own id agree. (A blob whose internal id
        // disagrees with its row is a different defect, and the re-census
        // correctly refuses to stamp on it — which is how this fixture was
        // caught being wrong.)
        let doomed_session = session_with(&["recovered"]);
        let doomed = doomed_session.id().clone();
        let doomed_bytes = serde_json::to_vec(&doomed_session).expect("encode");
        {
            let conn = Connection::open(&path).expect("plant");
            conn.execute(
                "INSERT INTO session_snapshots (session_id, identity, generation, \
                 checkpoint_version, fencing_token, data) VALUES (?1, ?2, 3, 5, 9, X'6E6F7065')",
                rusqlite::params![doomed.to_string(), identity.as_str()],
            )
            .expect("plant doomed blob");
        }

        // ---- the failed crossing ----
        let failed = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            true,
            &BTreeSet::new(),
        )
        .expect("first apply");
        assert_eq!(failed.examined, 2);
        assert_eq!(failed.converted, vec![good.id().to_string()]);
        assert_eq!(failed.failures.len(), 1);
        assert!(!failed.ledger_stamped);
        assert_eq!(continuity_domain_version(&path), Some(1));
        assert_eq!(head_row_count(&path), 1);

        // ---- re-run on the POST-FAILURE file: resume, do not re-convert ----
        let resumed = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            true,
            &BTreeSet::new(),
        )
        .expect("resume apply");
        assert_eq!(
            resumed.examined, 2,
            "both rows are examined; A produces no work, B is retried"
        );
        assert!(
            resumed.reconverted.is_empty(),
            "A did not change, so it must not be reconverted"
        );
        assert!(resumed.converted.is_empty(), "B still cannot convert");
        assert_eq!(head_row_count(&path), 1, "A was re-converted or duplicated");
        assert_eq!(continuity_domain_version(&path), Some(1));

        // ---- repair B, re-run: the corpus completes and only then stamps ----
        {
            let conn = Connection::open(&path).expect("repair");
            conn.execute(
                "UPDATE session_snapshots SET data = ?2 WHERE session_id = ?1",
                rusqlite::params![doomed.to_string(), doomed_bytes],
            )
            .expect("repair blob");
        }
        let finished = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            true,
            &BTreeSet::new(),
        )
        .expect("final apply");
        assert_eq!(finished.examined, 2);
        assert_eq!(finished.converted.len(), 1);
        assert!(finished.ledger_stamped, "completed corpus must stamp");
        assert_eq!(head_row_count(&path), 2);
        assert_eq!(continuity_domain_version(&path), Some(2));
    }

    #[test]
    fn a_blob_that_changed_after_conversion_is_reconverted_before_the_stamp() {
        use std::collections::BTreeSet;
        // The live-household sequence, which is the DEFAULT path rather than
        // an edge case: a crossing fails partway, the ledger stays at v1, and
        // AT v1 THE WHOLE-DOCUMENT PATH IS STILL THE ACTIVE WRITER. So the
        // deployment keeps appending to blobs that were already converted.
        // On retry, a census keyed on "has a head row" would skip them and
        // stamp, burying every message written in the gap.
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let identity = AgentIdentity::parse("triage:main").expect("identity");
        let mut session = session_with(&["first"]);
        plant_ledgered_v1_blob(&path, &identity, &session);
        // A second row that cannot convert, so the first run fails partway.
        let doomed = meerkat_core::types::SessionId::new();
        {
            let conn = Connection::open(&path).expect("plant");
            conn.execute(
                "INSERT INTO session_snapshots (session_id, identity, generation, \
                 checkpoint_version, fencing_token, data) VALUES (?1, ?2, 3, 5, 9, X'6E6F7065')",
                rusqlite::params![doomed.to_string(), identity.as_str()],
            )
            .expect("plant doomed");
        }
        let failed = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            true,
            &BTreeSet::new(),
        )
        .expect("first apply");
        assert_eq!(failed.converted, vec![session.id().to_string()]);
        assert!(!failed.ledger_stamped);

        // ---- the household keeps running: a message lands in the LEGACY blob ----
        session.push(meerkat_core::Message::User(
            meerkat_core::UserMessage::text("written after the failed crossing".to_string()),
        ));
        {
            let conn = Connection::open(&path).expect("append");
            conn.execute(
                "UPDATE session_snapshots SET data = ?2 WHERE session_id = ?1",
                rusqlite::params![
                    session.id().to_string(),
                    serde_json::to_vec(&session).expect("encode")
                ],
            )
            .expect("update blob");
            // ...and the unconvertible row is removed so the retry completes.
            conn.execute(
                "DELETE FROM session_snapshots WHERE session_id = ?1",
                rusqlite::params![doomed.to_string()],
            )
            .expect("drop doomed");
        }

        // ---- retry ----
        let retry = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            true,
            &BTreeSet::new(),
        )
        .expect("retry apply");
        assert_eq!(
            retry.reconverted,
            vec![session.id().to_string()],
            "a blob that changed after conversion must be RECONVERTED, not skipped"
        );
        assert!(retry.ledger_stamped, "the completed corpus must stamp");

        // The head now reflects BOTH messages. Without the fix it would carry
        // one, and the second would exist only in a blob nothing reads.
        let conn = Connection::open(&path).expect("probe");
        let count: i64 = conn
            .query_row(
                "SELECT message_count FROM continuity_session_heads WHERE session_id = ?1",
                rusqlite::params![session.id().to_string()],
                |row| row.get(0),
            )
            .expect("head row");
        assert_eq!(
            count, 2,
            "the head is stale: the message written after the failed crossing was buried"
        );
    }

    /// Harness for the ROLLBACK PROOF, not a unit test — builds a corpus in
    /// the exact post-failure state the proof requires and leaves it on disk
    /// for an older binary to open.
    ///
    ///   MOBKIT_ROLLBACK_CORPUS=/path/to/dir \
    ///     cargo test -p meerkat-mobkit --lib --all-features \
    ///     build_mid_run_failed_corpus_for_rollback_proof -- --ignored --nocapture
    ///
    /// Ordering is what makes the failure MID-RUN rather than pre-flight:
    /// session ids are UUIDv7, so the healthy session created first sorts
    /// first, converts, and COMMITS its own transaction before the poison row
    /// is attempted. A pre-flight failure would leave no head rows at all and
    /// would prove nothing.
    #[test]
    #[ignore = "harness: writes a corpus for the external rollback proof"]
    fn build_mid_run_failed_corpus_for_rollback_proof() {
        use std::collections::BTreeSet;
        let dir = std::env::var("MOBKIT_ROLLBACK_CORPUS")
            .expect("set MOBKIT_ROLLBACK_CORPUS to an existing directory");
        let path = std::path::Path::new(&dir).join("continuity.sqlite3");
        let identity = AgentIdentity::parse("triage:main").expect("identity");
        let healthy = session_with(&["message one", "message two"]);
        plant_ledgered_v1_blob(&path, &identity, &healthy);
        let doomed = meerkat_core::types::SessionId::new();
        {
            let conn = Connection::open(&path).expect("plant");
            conn.execute(
                "INSERT INTO session_snapshots (session_id, identity, generation, \
                 checkpoint_version, fencing_token, data) VALUES (?1, ?2, 3, 5, 9, X'6E6F7065')",
                rusqlite::params![doomed.to_string(), identity.as_str()],
            )
            .expect("plant doomed");
        }
        let report = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            true,
            &BTreeSet::new(),
        )
        .expect("apply");

        // The three conditions that make this a MID-RUN failure. If any fails,
        // the corpus is not the input the proof is about.
        assert_eq!(
            report.converted,
            vec![healthy.id().to_string()],
            "A must convert"
        );
        assert!(!report.failures.is_empty(), "B must fail");
        assert!(!report.ledger_stamped, "the ledger must NOT have advanced");
        assert_eq!(
            head_row_count(&path),
            1,
            "exactly one head row (A) must exist"
        );
        assert_eq!(
            continuity_domain_version(&path),
            Some(1),
            "file must remain v1"
        );
        let conn = Connection::open(&path).expect("probe");
        let blobs: i64 = conn
            .query_row("SELECT COUNT(*) FROM session_snapshots", [], |r| r.get(0))
            .expect("count blobs");
        assert_eq!(blobs, 2, "both blobs must be retained");

        println!("ROLLBACK_CORPUS_PATH={}", path.display());
        println!("ROLLBACK_HEALTHY_SESSION={}", healthy.id());
        println!("ROLLBACK_DOOMED_SESSION={doomed}");
        println!("ROLLBACK_LEDGER_VERSION=1");
        println!("ROLLBACK_HEAD_ROWS=1");
        println!("ROLLBACK_BLOB_ROWS=2");
    }

    #[test]
    fn a_late_failure_preserves_the_record_of_work_already_done() {
        use std::collections::BTreeSet;
        // P1: a failure at the re-census or stamp used to return Err and
        // discard the whole report, handing the operator an error with no
        // record of the sessions that had already converted and committed.
        // They would have no way to know what to expect on a re-run.
        //
        // Provoked here through the ordinary blocking path: an unacknowledged
        // malformed row makes the run refuse the stamp AFTER a healthy
        // session has converted. The refusal must arrive as a report, not as
        // a discarded one.
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let identity = AgentIdentity::parse("triage:main").expect("identity");
        let healthy = session_with(&["kept"]);
        plant_ledgered_v1_blob(&path, &identity, &healthy);
        {
            let conn = Connection::open(&path).expect("plant");
            conn.execute(
                "INSERT INTO session_snapshots (session_id, identity, generation, \
                 checkpoint_version, fencing_token, data) VALUES ('not-a-uuid', ?1, 3, 5, 9, X'00')",
                rusqlite::params![identity.as_str()],
            )
            .expect("plant malformed");
        }

        let report = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            true,
            &BTreeSet::new(),
        )
        .expect("a blocked stamp must still return a report, not an Err");
        assert_eq!(
            report.converted,
            vec![healthy.id().to_string()],
            "the record of the converted session must survive the refusal"
        );
        assert!(!report.failures.is_empty(), "the refusal must be recorded");
        assert!(!report.ledger_stamped);
        assert_eq!(head_row_count(&path), 1, "the conversion itself must stand");
    }

    #[test]
    fn a_dry_run_does_not_change_the_journal_mode_or_create_sidecars() {
        use std::collections::BTreeSet;
        // "Dry run mutates nothing" has to include PRAGMAs. The writer
        // profile sets journal_mode=WAL, so inspecting a DELETE-mode corpus
        // with a dry run used to convert it to WAL and leave -wal/-shm
        // siblings behind -- a durable change to a file the operator had
        // explicitly declined to modify.
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let identity = AgentIdentity::parse("triage:main").expect("identity");
        let session = session_with(&["hello"]);
        plant_ledgered_v1_blob(&path, &identity, &session);

        // Force the file to DELETE mode and close every connection.
        {
            let conn = Connection::open(&path).expect("open");
            let mode: String = conn
                .query_row("PRAGMA journal_mode=DELETE", [], |row| row.get(0))
                .expect("set delete mode");
            assert_eq!(
                mode.to_lowercase(),
                "delete",
                "fixture must start in DELETE"
            );
        }
        let before_bytes = std::fs::read(&path).expect("read before");

        let dry = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            false,
            &BTreeSet::new(),
        )
        .expect("dry run");
        assert!(!dry.applied);
        assert_eq!(dry.examined, 1);

        let conn = Connection::open(&path).expect("probe");
        let mode: String = conn
            .query_row("PRAGMA journal_mode", [], |row| row.get(0))
            .expect("read mode");
        assert_eq!(
            mode.to_lowercase(),
            "delete",
            "a dry run converted the journal mode to WAL"
        );
        drop(conn);
        assert_eq!(
            std::fs::read(&path).expect("read after"),
            before_bytes,
            "a dry run changed the database bytes"
        );
        assert!(
            !path.with_extension("sqlite3-wal").exists(),
            "a dry run created a -wal sidecar"
        );
    }

    #[test]
    fn an_identity_mismatch_writes_nothing_at_all() {
        use std::collections::BTreeSet;
        // A blob that decodes PERFECTLY but into a DIFFERENT session than its
        // row key. Every write in the conversion is laid out from the decoded
        // session while the orphan delete targets the row key, so without a
        // guard this misattributes head/strand rows to the blob's session —
        // durably, before any re-census can refuse the ledger.
        //
        // The assertion is therefore ZERO ROWS WRITTEN, not "the ledger
        // stayed at v1". A stamp guard is not a write guard.
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let identity = AgentIdentity::parse("triage:main").expect("identity");
        let anchor_session = session_with(&["anchor"]);
        plant_ledgered_v1_blob(&path, &identity, &anchor_session);

        // Row key R, blob containing a different session V.
        let row_key = meerkat_core::types::SessionId::new();
        let victim = session_with(&["victim"]);
        {
            let conn = Connection::open(&path).expect("plant");
            conn.execute(
                "INSERT INTO session_snapshots (session_id, identity, generation, \
                 checkpoint_version, fencing_token, data) VALUES (?1, ?2, 3, 5, 9, ?3)",
                rusqlite::params![
                    row_key.to_string(),
                    identity.as_str(),
                    serde_json::to_vec(&victim).expect("encode")
                ],
            )
            .expect("plant mismatched blob");
        }

        let report = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            true,
            &BTreeSet::new(),
        )
        .expect("apply");
        assert!(
            report
                .failures
                .iter()
                .any(|(row, _)| row == &row_key.to_string()),
            "the mismatched row must be reported as a failure: {:?}",
            report.failures
        );
        assert!(!report.ledger_stamped);

        let conn = Connection::open(&path).expect("probe");
        // NOTHING was written under the blob's id.
        for table in ["continuity_session_heads", "continuity_strand_messages"] {
            let n: i64 = conn
                .query_row(
                    &format!("SELECT COUNT(*) FROM {table} WHERE session_id = ?1"),
                    rusqlite::params![victim.id().to_string()],
                    |row| row.get(0),
                )
                .expect("count victim rows");
            assert_eq!(n, 0, "{table} was written under the BLOB's session id");
        }
        // ...nor under the row key.
        let under_key: i64 = conn
            .query_row(
                "SELECT COUNT(*) FROM continuity_session_heads WHERE session_id = ?1",
                rusqlite::params![row_key.to_string()],
                |row| row.get(0),
            )
            .expect("count row-key heads");
        assert_eq!(
            under_key, 0,
            "a head row was written for a refused conversion"
        );
        // The healthy session still converted; one bad row does not strand it.
        assert_eq!(report.converted, vec![anchor_session.id().to_string()]);
    }

    #[test]
    fn malformed_blob_rows_block_the_stamp_until_acknowledged() {
        use std::collections::BTreeSet;
        // A row this classifier calls malformed may be a corrupted session OR
        // a real one the classifier is too strict about. Those are the same
        // from here, so the irreversible step waits for a human.
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let identity = AgentIdentity::parse("triage:main").expect("identity");
        let session = session_with(&["ok"]);
        plant_ledgered_v1_blob(&path, &identity, &session);
        {
            let conn = Connection::open(&path).expect("plant");
            conn.execute(
                "INSERT INTO session_snapshots (session_id, identity, generation, \
                 checkpoint_version, fencing_token, data) VALUES ('not-a-uuid', ?1, 3, 5, 9, X'00')",
                rusqlite::params![identity.as_str()],
            )
            .expect("plant malformed row");
        }

        // Unacknowledged: the convertible session still converts, but the
        // ledger refuses to advance.
        let blocked = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            true,
            &BTreeSet::new(),
        )
        .expect("apply");
        assert_eq!(
            blocked.converted.len(),
            1,
            "convertible session must convert"
        );
        assert_eq!(blocked.skipped_unparseable, vec!["not-a-uuid".to_string()]);
        assert!(!blocked.failures.is_empty(), "must record the refusal");
        assert!(
            !blocked.ledger_stamped,
            "malformed row must block the stamp"
        );
        assert_eq!(continuity_domain_version(&path), Some(1));

        // Acknowledged BY NAME: acknowledging a different id must not work,
        // so the set carries the exact row the operator read.
        let wrong: BTreeSet<String> = ["some-other-row".to_string()].into_iter().collect();
        let still_blocked =
            LocalContinuityStore::backfill_head_canonical_sessions_at(&path, true, &wrong)
                .expect("apply with wrong ack");
        assert!(
            !still_blocked.ledger_stamped,
            "acknowledging a DIFFERENT row must not authorise the stamp"
        );
        let acknowledge_all: BTreeSet<String> = ["not-a-uuid".to_string()].into_iter().collect();
        let allowed = LocalContinuityStore::backfill_head_canonical_sessions_at(
            &path,
            true,
            &acknowledge_all,
        )
        .expect("apply acknowledged");
        assert_eq!(allowed.skipped_unparseable, vec!["not-a-uuid".to_string()]);
        assert!(
            allowed.ledger_stamped,
            "acknowledgement must permit the stamp"
        );
        assert_eq!(continuity_domain_version(&path), Some(2));
    }

    fn cursor(
        identity: &AgentIdentity,
        generation: u64,
        version: u64,
        token: u64,
    ) -> ContinuityWriteCursor {
        ContinuityWriteCursor {
            identity: identity.clone(),
            generation: ContinuityGeneration::new(generation),
            checkpoint_version: CheckpointVersion::new(version),
            fencing_token: FencingToken::new(token),
        }
    }

    fn ledger_version(path: &Path) -> Option<i64> {
        let probe = Connection::open(path).expect("probe");
        meerkat_sqlite::domain_version(&probe, "mobkit-continuity").expect("ledger")
    }

    async fn seed_record(
        store: &LocalContinuityStore,
        identity: &AgentIdentity,
        session_id: &meerkat_core::types::SessionId,
        token: u64,
    ) {
        store
            .upsert_continuity_record(&record(identity, session_id), FencingToken::new(token))
            .await
            .expect("seed continuity record");
    }

    /// BLOCKER PIN: opening a state directory with this binary must NOT
    /// commit the one-way ledger bump. Rollback to the previous release stays
    /// possible until a delta write actually creates a head row.
    #[tokio::test]
    async fn open_never_stamps_the_head_canonical_ledger_bump() {
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        {
            let store = LocalContinuityStore::open(&path).expect("open");
            assert_eq!(store.max_fencing_token().expect("floor"), 0);
        }
        assert_eq!(
            ledger_version(&path),
            Some(1),
            "a plain open must leave the file at the rollback-safe baseline"
        );

        // Reopening, resolving, whole-blob saving: still no bump.
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let session_id = meerkat_core::types::SessionId::new();
        {
            let store = LocalContinuityStore::open(&path).expect("reopen");
            seed_record(&store, &identity, &session_id, 1).await;
            store
                .save_session_snapshot(
                    &identity,
                    &session_id,
                    ContinuityGeneration::new(0),
                    CheckpointVersion::new(1),
                    FencingToken::new(1),
                    &SessionSnapshot {
                        data: serde_json::to_vec(&session_with(&["blob turn"])).unwrap(),
                    },
                )
                .await
                .expect("whole-blob save");
        }
        assert_eq!(
            ledger_version(&path),
            Some(1),
            "ordinary whole-document saves must not commit the head-canonical bump"
        );

        // The delta write that CREATES HEAD STATE is where the v1-writer
        // lockout becomes load-bearing, and only there is the bump
        // committed. An append that adopts nothing does not earn it — see
        // `an_accepted_delta_write_that_creates_no_head_state_stays_at_v1`.
        {
            let store = LocalContinuityStore::open(&path).expect("reopen");
            let head_session = session_with(&["delta turn"]);
            let delta_session_id = head_session.id().clone();
            let delta_identity = AgentIdentity::parse("triage:delta").unwrap();
            seed_record(&store, &delta_identity, &delta_session_id, 2).await;
            let root = TranscriptStrandId::root();
            store
                .append_messages(
                    &cursor(&delta_identity, 0, 1, 2),
                    &delta_session_id,
                    &root,
                    0,
                    head_session.messages(),
                )
                .await
                .expect("first delta write");
            assert_eq!(
                ledger_version(&path),
                Some(1),
                "an append that no head adopts creates no authority an older binary \
                 could misread, so it must not commit the lockout"
            );
            let head = SessionHead::from_session(&head_session, root, 0).expect("head");
            store
                .save_head(
                    &cursor(&delta_identity, 0, 2, 2),
                    &head,
                    SessionHeadCas::Create,
                )
                .await
                .expect("adopting head write");
        }
        assert_eq!(
            ledger_version(&path),
            Some(HEAD_CANONICAL_SCHEMA_VERSION),
            "the delta write that creates head state commits the head-canonical bump"
        );
    }

    /// ROLLBACK-SAFETY PIN (N1): the lockout must be earned by HEAD STATE,
    /// not merely by an accepted write.
    ///
    /// `append_messages` on a session with neither a head row nor a blob to
    /// migrate — the real creation-window shape, because the service appends
    /// and adopts under two separate locks — commits rows and no head. Rows
    /// no head adopts are not part of any document (every read path gates on
    /// the head row), so an older binary still correctly serves that session
    /// from its blob. Arming the one-way lockout there buys a brick for
    /// nothing.
    ///
    /// The second half is the trap the first half sets: the DDL DOES commit
    /// with those rows, so the file now has head-canonical tables at ledger
    /// v1. A binary that decided "is the bump owed?" from a table probe
    /// would latch "already head-canonical" on the next open and never stamp
    /// again — head rows with no lockout, which is the very state the
    /// lockout exists to prevent. The reopen below is what catches that.
    #[tokio::test]
    async fn an_accepted_delta_write_that_creates_no_head_state_stays_at_v1() {
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let identity = AgentIdentity::parse("triage:append-only").unwrap();
        let document = session_with(&["creation-window turn"]);
        let session_id = document.id().clone();
        let root = TranscriptStrandId::root();

        {
            let store = LocalContinuityStore::open(&path).expect("open");
            seed_record(&store, &identity, &session_id, 1).await;
            store
                .append_messages(
                    &cursor(&identity, 0, 1, 1),
                    &session_id,
                    &root,
                    0,
                    document.messages(),
                )
                .await
                .expect("an append with no adopting head is a legitimate accepted write");
        }

        assert_eq!(
            ledger_version(&path),
            Some(1),
            "an ACCEPTED write that creates zero head state must leave the file \
             rollback-safe at v1"
        );
        assert!(
            head_tables_exist(&path),
            "the rows are durable, so their (additive, IF NOT EXISTS) DDL committed with them"
        );
        // The v1-shaped reader the lockout protects: it must still open.
        {
            let probe = Connection::open(&path).expect("probe");
            refuse_future_schema_model(&probe, &V0_8_5_CONTINUITY_DOMAIN).expect(
                "a previous release must still open a file whose only head-canonical \
                 content is rows no head adopts",
            );
        }
        {
            let probe = Connection::open(&path).expect("probe");
            let heads: i64 = probe
                .query_row("SELECT COUNT(*) FROM continuity_session_heads", [], |row| {
                    row.get(0)
                })
                .expect("count heads");
            assert_eq!(heads, 0, "no head row was created");
            let rows: i64 = probe
                .query_row(
                    "SELECT COUNT(*) FROM continuity_strand_messages",
                    [],
                    |row| row.get(0),
                )
                .expect("count rows");
            assert_eq!(rows, 1, "the appended row is durable");
        }

        // Reopen (a fresh handle, ledger v1, tables present) and land the
        // adopting head. This MUST still stamp.
        {
            let store = LocalContinuityStore::open(&path).expect("reopen");
            // A restore reads before it writes, and the read observes the
            // tables. That is precisely what latches the "head tables are
            // queryable" flag — which is NOT the same fact as "the lockout
            // is committed". A binary that conflated them would now be
            // convinced the bump is already done and never stamp again.
            assert!(
                store
                    .load_canonical_head(&session_id)
                    .await
                    .expect("canonical head probe")
                    .is_none(),
                "rows no head adopts are not a document"
            );
            let head = SessionHead::from_session(&document, root.clone(), 0).expect("head");
            store
                .save_head(&cursor(&identity, 0, 2, 1), &head, SessionHeadCas::Create)
                .await
                .expect("the adopting head write");
        }
        assert_eq!(
            ledger_version(&path),
            Some(HEAD_CANONICAL_SCHEMA_VERSION),
            "the write that finally creates head state must commit the lockout, even \
             though the tables already existed when the handle opened"
        );
        {
            let probe = Connection::open(&path).expect("probe");
            match refuse_future_schema_model(&probe, &V0_8_5_CONTINUITY_DOMAIN) {
                Err(meerkat_sqlite::SqliteStoreError::SchemaFromTheFuture { domain, .. }) => {
                    assert_eq!(domain, "mobkit-continuity");
                }
                other => panic!(
                    "once a head row exists the file must be closed to binaries that would keep \
                     writing the frozen blob archive as authority, got {other:?}"
                ),
            }
        }
    }

    fn head_tables_exist(path: &Path) -> bool {
        let probe = Connection::open(path).expect("probe");
        probe
            .query_row(
                "SELECT EXISTS(SELECT 1 FROM sqlite_master WHERE type = 'table' \
                 AND name = 'continuity_session_heads')",
                [],
                |row| row.get::<_, bool>(0),
            )
            .expect("probe head tables")
    }

    /// ROLLBACK-SAFETY PIN: the one-way v1-writer lockout must be EARNED by
    /// a write that actually creates head state. A delta write refused by a
    /// guard, or refused by the operation's own CAS, leaves the file exactly
    /// as it found it — ledger v1, no head-canonical tables — so rolling
    /// back to the previous release stays possible.
    #[tokio::test]
    async fn a_refused_delta_write_never_arms_the_v1_writer_lockout() {
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let identity = AgentIdentity::parse("triage:refused").unwrap();
        let document = session_with(&["refused turn"]);
        let session_id = document.id().clone();
        let root = TranscriptStrandId::root();
        let head = SessionHead::from_session(&document, root.clone(), 0).expect("head");

        {
            let store = LocalContinuityStore::open(&path).expect("open");
            seed_record(&store, &identity, &session_id, 5).await;

            // (1) refused by a GUARD, before the operation runs at all.
            let stale = store
                .append_messages(
                    &cursor(&identity, 0, 1, 4),
                    &session_id,
                    &root,
                    0,
                    document.messages(),
                )
                .await
                .expect_err("a stale fencing token must refuse the delta write");
            assert!(
                stale.to_string().contains("stale fencing token"),
                "unexpected guard refusal: {stale}"
            );

            // (2) refused by the OPERATION's own CAS, after the guards pass.
            let conflict = store
                .save_head(
                    &cursor(&identity, 0, 1, 5),
                    &head,
                    SessionHeadCas::IfToken("row-sha256:nothing-like-this".to_string()),
                )
                .await
                .expect_err("a head CAS that cannot match must refuse the delta write");
            assert!(
                matches!(
                    conflict,
                    SessionStoreError::TranscriptRevisionConflict { .. }
                ),
                "unexpected operation refusal: {conflict}"
            );
        }
        assert_eq!(
            ledger_version(&path),
            Some(1),
            "a REFUSED delta write must not arm the one-way v1-writer lockout"
        );
        assert!(
            !head_tables_exist(&path),
            "a refused delta write must roll its speculative head-canonical DDL back"
        );

        // The same file still upgrades on a write that DOES create head
        // state. The append alone does not: it adopts nothing, so it commits
        // its rows and its DDL and leaves the file rollback-safe (pinned by
        // `an_accepted_delta_write_that_creates_no_head_state_stays_at_v1`).
        // The head write is what earns the bump.
        {
            let store = LocalContinuityStore::open(&path).expect("reopen");
            store
                .append_messages(
                    &cursor(&identity, 0, 1, 5),
                    &session_id,
                    &root,
                    0,
                    document.messages(),
                )
                .await
                .expect("an accepted delta write");
            assert_eq!(
                ledger_version(&path),
                Some(1),
                "an accepted append that no head adopts is still rollback-safe"
            );
            store
                .save_head(&cursor(&identity, 0, 2, 5), &head, SessionHeadCas::Create)
                .await
                .expect("the adopting head write");
        }
        assert_eq!(
            ledger_version(&path),
            Some(HEAD_CANONICAL_SCHEMA_VERSION),
            "a write that creates head state arms the lockout in the same transaction"
        );
        assert!(head_tables_exist(&path));
    }

    /// ALIGNMENT PIN: the delta channel and the whole-document verb are two
    /// write paths onto ONE durable session, so their accept/reject boundary
    /// must be identical. A session whose `session_snapshots` row is owned by
    /// another `(identity, generation)` is refused by BOTH — the intruder
    /// here holds a perfectly valid continuity cursor of its own, so nothing
    /// but the shared ownership guard can reject it.
    #[tokio::test]
    async fn delta_writes_refuse_the_foreign_snapshot_owner_the_blob_path_refuses() {
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let owner = AgentIdentity::parse("triage:owner").unwrap();
        let intruder = AgentIdentity::parse("triage:intruder").unwrap();
        let document = session_with(&["owned turn"]);
        let session_id = document.id().clone();
        let snapshot = SessionSnapshot {
            data: serde_json::to_vec(&document).unwrap(),
        };

        let store = LocalContinuityStore::open(&path).expect("open");
        seed_record(&store, &owner, &session_id, 1).await;
        store
            .save_session_snapshot(
                &owner,
                &session_id,
                ContinuityGeneration::new(0),
                CheckpointVersion::new(1),
                FencingToken::new(1),
                &snapshot,
            )
            .await
            .expect("the owner's whole-document save");

        // The intruder's own continuity record points at the same session id
        // and is current, so the cursor guard passes for it.
        seed_record(&store, &intruder, &session_id, 2).await;

        let blob_refusal = store
            .save_session_snapshot(
                &intruder,
                &session_id,
                ContinuityGeneration::new(0),
                CheckpointVersion::new(1),
                FencingToken::new(2),
                &snapshot,
            )
            .await
            .expect_err("the whole-document verb refuses a foreign snapshot owner");
        assert!(
            matches!(blob_refusal, ContinuityStoreError::Corruption(_)),
            "unexpected whole-document refusal: {blob_refusal}"
        );

        let delta_refusal = store
            .append_messages(
                &cursor(&intruder, 0, 1, 2),
                &session_id,
                &TranscriptStrandId::root(),
                0,
                document.messages(),
            )
            .await
            .expect_err("the delta channel must refuse exactly what the blob path refuses");
        assert!(
            delta_refusal.to_string().contains("is owned by")
                && delta_refusal.to_string().contains("triage:owner"),
            "the delta refusal must be the same ownership corruption: {delta_refusal}"
        );

        // Refused means refused: no rows, and no earned lockout either.
        drop(store);
        assert!(
            !head_tables_exist(&path),
            "a refused delta write must leave no head-canonical rows behind"
        );
        assert_eq!(ledger_version(&path), Some(1));
    }

    /// A v2 file reopens cleanly (never re-applied, never refused) and keeps
    /// serving head-canonical sessions.
    #[tokio::test]
    async fn head_canonical_file_reopens_and_keeps_serving_head_rows() {
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let document = session_with(&["one", "two"]);
        let session_id = document.id().clone();
        {
            let store = LocalContinuityStore::open(&path).expect("open");
            seed_record(&store, &identity, &session_id, 1).await;
            let root = TranscriptStrandId::root();
            store
                .append_messages(
                    &cursor(&identity, 0, 1, 1),
                    &session_id,
                    &root,
                    0,
                    document.messages(),
                )
                .await
                .expect("append");
            let head = SessionHead::from_session(&document, root, 0).expect("head");
            store
                .save_head(&cursor(&identity, 0, 2, 1), &head, SessionHeadCas::Create)
                .await
                .expect("save head");
        }
        assert_eq!(ledger_version(&path), Some(HEAD_CANONICAL_SCHEMA_VERSION));

        let store = LocalContinuityStore::open(&path).expect("reopen a head-canonical file");
        assert_eq!(ledger_version(&path), Some(HEAD_CANONICAL_SCHEMA_VERSION));
        let head = store
            .load_canonical_head(&session_id)
            .await
            .expect("load canonical head")
            .expect("head row survives reopen");
        assert_eq!(head.message_count, 2);
        let snapshot = store
            .load_session_snapshot(&session_id)
            .await
            .expect("snapshot")
            .expect("head-canonical sessions serve a synthesized snapshot");
        let loaded: Session = serde_json::from_slice(&snapshot.data).expect("decode");
        assert_eq!(loaded.messages(), document.messages());
    }

    /// Lazy per-session migration: the first delta write on a blob-only
    /// session converts it in the caller's transaction, the document loads
    /// back identically, and the blob row survives untouched as a frozen
    /// archive.
    #[tokio::test]
    async fn first_delta_write_migrates_the_blob_and_leaves_it_as_a_frozen_archive() {
        let store = LocalContinuityStore::in_memory().unwrap();
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let document = session_with(&["one", "two"]);
        let session_id = document.id().clone();
        let blob = serde_json::to_vec(&document).unwrap();
        seed_record(&store, &identity, &session_id, 1).await;
        store
            .save_session_snapshot(
                &identity,
                &session_id,
                ContinuityGeneration::new(0),
                CheckpointVersion::new(1),
                FencingToken::new(1),
                &SessionSnapshot { data: blob.clone() },
            )
            .await
            .unwrap();
        let before = store
            .load_session_snapshot(&session_id)
            .await
            .unwrap()
            .unwrap();

        // Read-only head synthesis must NOT migrate.
        let synthesized = store.load_head(&session_id).await.unwrap().unwrap();
        assert!(
            store
                .load_canonical_head(&session_id)
                .await
                .unwrap()
                .is_none(),
            "reads never migrate a blob-only session"
        );

        let mut extended = document.clone();
        extended.push(meerkat_core::Message::User(
            meerkat_core::UserMessage::text("three".to_string()),
        ));
        store
            .append_messages(
                &cursor(&identity, 0, 2, 1),
                &session_id,
                &synthesized.strand,
                synthesized.message_count,
                &extended.messages()[2..],
            )
            .await
            .expect("first delta write migrates");
        let migrated = store
            .load_canonical_head(&session_id)
            .await
            .unwrap()
            .expect("head row exists after the first delta write");
        assert_eq!(migrated.head_revision, synthesized.head_revision);
        assert_eq!(
            session_head_cas_token(&migrated).unwrap(),
            session_head_cas_token(&synthesized).unwrap(),
            "the deterministic layout makes the pre-migration token match the persisted one"
        );

        // The head still covers the pre-append prefix: the document is
        // unchanged until a head write adopts the appended rows.
        let after = store
            .load_session_snapshot(&session_id)
            .await
            .unwrap()
            .unwrap();
        let after_doc: Session = serde_json::from_slice(&after.data).unwrap();
        let before_doc: Session = serde_json::from_slice(&before.data).unwrap();
        assert_eq!(
            after_doc.messages(),
            before_doc.messages(),
            "unadopted tail rows are invisible to loads (the crash-window contract)"
        );

        // The archived blob row is byte-identical and never read again.
        let archived = store
            .run_blocking("read-archive", {
                let session_id = session_id.clone();
                move |inner| {
                    inner.with_reader(|connection| {
                        connection
                            .query_row(
                                "SELECT data FROM session_snapshots WHERE session_id = ?1",
                                rusqlite::params![session_id.to_string()],
                                |row| row.get::<_, Vec<u8>>(0),
                            )
                            .map_err(|e| sqlite_err("read archive", e))
                    })
                }
            })
            .await
            .unwrap();
        assert_eq!(archived, blob, "the archived blob must stay byte-identical");
    }

    /// A whole-document save on a head-canonical session converts into delta
    /// rows + a head and must NOT rewrite the frozen archive (the
    /// two-write-authorities tripwire).
    #[tokio::test]
    async fn whole_document_save_on_a_head_canonical_session_leaves_the_archive_untouched() {
        let store = LocalContinuityStore::in_memory().unwrap();
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let document = session_with(&["one"]);
        let session_id = document.id().clone();
        let blob = serde_json::to_vec(&document).unwrap();
        seed_record(&store, &identity, &session_id, 1).await;
        store
            .save_session_snapshot(
                &identity,
                &session_id,
                ContinuityGeneration::new(0),
                CheckpointVersion::new(1),
                FencingToken::new(1),
                &SessionSnapshot { data: blob.clone() },
            )
            .await
            .unwrap();
        // Migrate + adopt through the delta channel. The service's own flow:
        // `load_head` synthesizes deterministically from the blob, so the
        // token it derives is the one the migrating write persists and the
        // `IfToken` CAS matches.
        let head = store.load_head(&session_id).await.unwrap().unwrap();
        store
            .save_head(
                &cursor(&identity, 0, 2, 1),
                &head,
                SessionHeadCas::IfToken(session_head_cas_token(&head).unwrap()),
            )
            .await
            .expect("the pre-migration token matches the migrating write");
        store
            .save_head(&cursor(&identity, 0, 3, 1), &head, SessionHeadCas::Create)
            .await
            .expect_err("Create must conflict once the head row exists");

        let mut extended = document.clone();
        extended.push(meerkat_core::Message::User(
            meerkat_core::UserMessage::text("two".to_string()),
        ));
        store
            .save_session_snapshot(
                &identity,
                &session_id,
                ContinuityGeneration::new(0),
                CheckpointVersion::new(4),
                FencingToken::new(1),
                &SessionSnapshot {
                    data: serde_json::to_vec(&extended).unwrap(),
                },
            )
            .await
            .expect("whole-document save converts on a head-canonical session");

        let served = store
            .load_session_snapshot(&session_id)
            .await
            .unwrap()
            .unwrap();
        let served_doc: Session = serde_json::from_slice(&served.data).unwrap();
        assert_eq!(served_doc.messages(), extended.messages());
        let archived = store
            .run_blocking("read-archive", {
                let session_id = session_id.clone();
                move |inner| {
                    inner.with_reader(|connection| {
                        connection
                            .query_row(
                                "SELECT data FROM session_snapshots WHERE session_id = ?1",
                                rusqlite::params![session_id.to_string()],
                                |row| row.get::<_, Vec<u8>>(0),
                            )
                            .map_err(|e| sqlite_err("read archive", e))
                    })
                }
            })
            .await
            .unwrap();
        assert_eq!(
            archived, blob,
            "a head-canonical write must never touch the frozen blob archive"
        );
    }

    /// Per-mutation continuity discipline: the delta verbs apply exactly the
    /// fence / version / binding CAS the whole-blob verb applies, and a
    /// refused mutation commits nothing.
    #[tokio::test]
    async fn delta_writes_enforce_fence_and_version_cas_per_mutation() {
        let store = LocalContinuityStore::in_memory().unwrap();
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let document = session_with(&["one"]);
        let session_id = document.id().clone();
        let root = TranscriptStrandId::root();
        store
            .upsert_continuity_record(&record(&identity, &session_id), FencingToken::new(5))
            .await
            .unwrap();

        let stale_fence = store
            .append_messages(
                &cursor(&identity, 0, 1, 2),
                &session_id,
                &root,
                0,
                document.messages(),
            )
            .await
            .expect_err("a stale fencing token must be refused per append");
        assert!(
            stale_fence.to_string().contains("stale fencing token"),
            "unexpected error: {stale_fence}"
        );
        assert!(
            store
                .load_canonical_head(&session_id)
                .await
                .unwrap()
                .is_none(),
            "a refused delta write commits nothing"
        );

        store
            .append_messages(
                &cursor(&identity, 0, 1, 5),
                &session_id,
                &root,
                0,
                document.messages(),
            )
            .await
            .expect("a current fence is admitted");
        let resolved = store
            .resolve_many(std::slice::from_ref(&identity))
            .await
            .unwrap();
        let ContinuityResolveState::Ready { record: advanced } = &resolved[&identity] else {
            panic!("record must stay ready");
        };
        assert_eq!(
            advanced.checkpoint_version,
            CheckpointVersion::new(1),
            "the durable cursor advances atomically with the rows"
        );

        let stale_version = store
            .append_messages(
                &cursor(&identity, 0, 1, 5),
                &session_id,
                &root,
                1,
                document.messages(),
            )
            .await
            .expect_err("a non-advancing checkpoint version must be refused per append");
        assert!(
            stale_version
                .to_string()
                .contains("stale checkpoint version"),
            "unexpected error: {stale_version}"
        );

        let foreign = AgentIdentity::parse("triage:other").unwrap();
        let other_session = meerkat_core::types::SessionId::new();
        store
            .upsert_continuity_record(&record(&foreign, &other_session), FencingToken::new(6))
            .await
            .unwrap();
        let cross = store
            .append_messages(
                &cursor(&foreign, 0, 9, 6),
                &session_id,
                &root,
                1,
                document.messages(),
            )
            .await
            .expect_err("a foreign identity must not write another session's rows");
        assert!(
            cross.to_string().contains("not found") || cross.to_string().contains("owned by"),
            "unexpected error: {cross}"
        );
    }

    /// CAS delete over a head-canonical session: the token derives from the
    /// slim materialization and the delete scrubs head + strands + rewrites
    /// + the archive in one transaction.
    #[tokio::test]
    async fn cas_delete_over_head_canonical_rows_removes_every_table() {
        let store = LocalContinuityStore::in_memory().unwrap();
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let document = session_with(&["one", "two"]);
        let session_id = document.id().clone();
        let root = TranscriptStrandId::root();
        seed_record(&store, &identity, &session_id, 1).await;
        store
            .append_messages(
                &cursor(&identity, 0, 1, 1),
                &session_id,
                &root,
                0,
                document.messages(),
            )
            .await
            .unwrap();
        let head = SessionHead::from_session(&document, root, 0).unwrap();
        store
            .save_head(&cursor(&identity, 0, 2, 1), &head, SessionHeadCas::Create)
            .await
            .unwrap();

        let snapshot = store
            .load_session_snapshot(&session_id)
            .await
            .unwrap()
            .unwrap();
        let served: Session = serde_json::from_slice(&snapshot.data).unwrap();
        let token = meerkat_core::session_store::session_projection_cas_token(&served).unwrap();
        assert!(
            !store
                .delete_session_snapshot_if_current_revision(&session_id, "row-sha256:stale")
                .await
                .unwrap(),
            "a stale token must decline"
        );
        assert!(
            store
                .delete_session_snapshot_if_current_revision(&session_id, &token)
                .await
                .unwrap(),
            "the token derived from head+rows must be accepted"
        );
        assert!(
            store
                .load_session_snapshot(&session_id)
                .await
                .unwrap()
                .is_none()
        );
        assert!(
            store
                .load_canonical_head(&session_id)
                .await
                .unwrap()
                .is_none()
        );
    }

    /// Reset rollback keeps the PRIOR generation's head+rows as the rollback
    /// authority and deletes only the attempted generation's.
    #[tokio::test]
    async fn rollback_scopes_head_canonical_rows_to_the_attempted_generation() {
        let store = LocalContinuityStore::in_memory().unwrap();
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let previous_doc = session_with(&["previous"]);
        let previous_session = previous_doc.id().clone();
        let root = TranscriptStrandId::root();
        let mut previous = record(&identity, &previous_session);
        store
            .upsert_continuity_record(&previous, FencingToken::new(1))
            .await
            .unwrap();
        store
            .append_messages(
                &cursor(&identity, 0, 1, 1),
                &previous_session,
                &root,
                0,
                previous_doc.messages(),
            )
            .await
            .unwrap();
        let previous_head = SessionHead::from_session(&previous_doc, root.clone(), 0).unwrap();
        store
            .save_head(
                &cursor(&identity, 0, 2, 1),
                &previous_head,
                SessionHeadCas::Create,
            )
            .await
            .unwrap();
        previous.checkpoint_version = CheckpointVersion::new(2);

        let attempted_doc = session_with(&["attempted"]);
        let attempted_session = attempted_doc.id().clone();
        let mut attempted = record(&identity, &attempted_session);
        attempted.agent_runtime_id = AgentRuntimeId::parse("rt:triage:main:1").unwrap();
        attempted.generation = ContinuityGeneration::new(1);
        store
            .upsert_continuity_record(&attempted, FencingToken::new(2))
            .await
            .unwrap();
        store
            .append_messages(
                &cursor(&identity, 1, 1, 2),
                &attempted_session,
                &root,
                0,
                attempted_doc.messages(),
            )
            .await
            .unwrap();
        let attempted_head = SessionHead::from_session(&attempted_doc, root, 0).unwrap();
        store
            .save_head(
                &cursor(&identity, 1, 2, 2),
                &attempted_head,
                SessionHeadCas::Create,
            )
            .await
            .unwrap();

        store
            .rollback_continuity_record(&attempted, Some(&previous), FencingToken::new(2))
            .await
            .expect("rollback");

        assert!(
            store
                .load_canonical_head(&attempted_session)
                .await
                .unwrap()
                .is_none(),
            "the attempted generation's head+rows are abandoned"
        );
        let restored = store
            .load_canonical_head(&previous_session)
            .await
            .unwrap()
            .expect("the prior generation stays the rollback authority");
        assert_eq!(restored.head_revision, previous_head.head_revision);
        let served = store
            .load_session_snapshot(&previous_session)
            .await
            .unwrap()
            .expect("the restored session still loads");
        let doc: Session = serde_json::from_slice(&served.data).unwrap();
        assert_eq!(doc.messages(), previous_doc.messages());
    }

    /// Identity deletion scrubs all four tables atomically, and the fencing
    /// floor spans the head table so the lease provider never regresses.
    #[tokio::test]
    async fn identity_delete_scrubs_head_rows_and_the_floor_spans_the_head_table() {
        let store = LocalContinuityStore::in_memory().unwrap();
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let document = session_with(&["one"]);
        let session_id = document.id().clone();
        let root = TranscriptStrandId::root();
        seed_record(&store, &identity, &session_id, 1).await;
        store
            .append_messages(
                &cursor(&identity, 0, 1, 9),
                &session_id,
                &root,
                0,
                document.messages(),
            )
            .await
            .unwrap();
        let head = SessionHead::from_session(&document, root, 0).unwrap();
        store
            .save_head(&cursor(&identity, 0, 2, 9), &head, SessionHeadCas::Create)
            .await
            .unwrap();
        assert_eq!(
            store.max_fencing_token().unwrap(),
            9,
            "the head table participates in the fencing floor"
        );

        store
            .delete_continuity_record(&identity, FencingToken::new(10))
            .await
            .unwrap();
        assert!(
            store
                .load_canonical_head(&session_id)
                .await
                .unwrap()
                .is_none()
        );
        assert!(
            store
                .load_session_snapshot(&session_id)
                .await
                .unwrap()
                .is_none()
        );
        let remaining_rows = store
            .run_blocking("count-strands", move |inner| {
                inner.with_reader(|connection| {
                    connection
                        .query_row(
                            "SELECT COUNT(*) FROM continuity_strand_messages",
                            [],
                            |row| row.get::<_, i64>(0),
                        )
                        .map_err(|e| sqlite_err("count strands", e))
                })
            })
            .await
            .unwrap();
        assert_eq!(
            remaining_rows, 0,
            "strand rows are scrubbed with the identity"
        );
    }

    /// The exact-bytes no-op probe is a blob-authority concept: on a
    /// head-canonical session it declines so the caller takes its ordinary
    /// guard path.
    #[tokio::test]
    async fn exact_snapshot_probe_declines_for_head_canonical_sessions() {
        let store = LocalContinuityStore::in_memory().unwrap();
        let identity = AgentIdentity::parse("triage:main").unwrap();
        let document = session_with(&["one"]);
        let session_id = document.id().clone();
        let root = TranscriptStrandId::root();
        seed_record(&store, &identity, &session_id, 1).await;
        store
            .append_messages(
                &cursor(&identity, 0, 1, 1),
                &session_id,
                &root,
                0,
                document.messages(),
            )
            .await
            .unwrap();
        let head = SessionHead::from_session(&document, root, 0).unwrap();
        store
            .save_head(&cursor(&identity, 0, 2, 1), &head, SessionHeadCas::Create)
            .await
            .unwrap();

        let snapshot = store
            .load_session_snapshot(&session_id)
            .await
            .unwrap()
            .unwrap();
        assert!(
            !store
                .session_snapshot_matches_current(SessionSnapshotMatchCandidate {
                    identity,
                    session_id,
                    generation: ContinuityGeneration::new(0),
                    checkpoint_version: CheckpointVersion::new(2),
                    fencing_token: FencingToken::new(1),
                    snapshot: Arc::new(snapshot),
                })
                .await
                .unwrap(),
            "head-canonical sessions must decline the whole-blob byte probe"
        );
    }

    // ----------------------------------------------------------------
    // Previous-release model: what a v1-shaped binary sees in the file.
    // ----------------------------------------------------------------

    /// The v0.8.5 continuity schema domain, declared LOCALLY on purpose.
    ///
    /// Not `MOBKIT_CONTINUITY_BASELINE_DOMAIN`: that constant is this
    /// binary's internal staging device and is free to grow. What these
    /// tests must model is the previous RELEASE's version ceiling, which is
    /// frozen at 1 forever. Declaring it here means a future migration
    /// cannot quietly raise the bar the "old binary" is held to and turn
    /// these tests green for the wrong reason.
    const V0_8_5_CONTINUITY_DOMAIN: meerkat_sqlite::SchemaDomain = meerkat_sqlite::SchemaDomain {
        name: "mobkit-continuity",
        migrations: &[meerkat_sqlite::Migration {
            version: 1,
            name: "base-schema",
            apply: migration_0001_continuity_schema,
        }],
        initialize_current: migration_0001_continuity_schema,
        allowed_existing_versions: &[1],
        // Unledgered mobkit files are refused at open (below the 0.8.8 ledger
        // floor) and mobkit never runs the offline bridge, so no source
        // version is inferable.
        bridge_recoverable_versions: &[],
        released_predecessors: &[],
        owned_objects: RELEASED_V1_CONTINUITY_OBJECTS,
        retired_objects: &[],
    };

    /// Local model of the retired `meerkat_sqlite::refuse_future_schema`
    /// check the previous release ran at open: read the ledger row, refuse
    /// when it exceeds the modeled version ceiling.
    fn refuse_future_schema_model(
        conn: &Connection,
        domain: &meerkat_sqlite::SchemaDomain,
    ) -> Result<(), meerkat_sqlite::SqliteStoreError> {
        let supported = domain.supported_version();
        match meerkat_sqlite::domain_version(conn, domain.name)? {
            Some(found) if found > supported => {
                Err(meerkat_sqlite::SqliteStoreError::SchemaFromTheFuture {
                    domain: domain.name.to_string(),
                    found,
                    supported,
                })
            }
            _ => Ok(()),
        }
    }

    /// A stand-in for a release that predates the head-canonical channel:
    /// it supports `mobkit-continuity` up to v1 and reads sessions ONLY from
    /// `session_snapshots.data`.
    ///
    /// `refuse_future_schema` against that ceiling is exactly the check such
    /// a binary runs at open (the head-canonical migration simply does not
    /// exist in it), so this reproduces the real `SchemaFromTheFuture`
    /// lockout without needing the old binary on disk.
    fn v1_shaped_binary_opens(path: &Path) -> Result<(), meerkat_sqlite::SqliteStoreError> {
        let conn = Connection::open(path).expect("probe");
        refuse_future_schema_model(&conn, &V0_8_5_CONTINUITY_DOMAIN)
    }

    /// N1-INTERACTION PIN: keeping the file at v1 for an append that adopts
    /// nothing is what makes rollback possible — and it is also what lets
    /// ORPHAN strand rows outlive a rollback.
    ///
    /// Sequence: an append lands, the adopting head write never does (crash,
    /// or the operator rolls back mid-creation-window). The previous release
    /// can now open the file — that is the whole point — and it writes
    /// whole-document blobs, including ones that DIVERGE from the orphan
    /// rows (a compaction, a rewind). Re-upgrading then migrates that blob
    /// into head+rows over the orphans.
    ///
    /// Before this was handled, `insert_strand_rows_in_txn` refused the
    /// divergence as an immutability violation and the session became
    /// permanently unwritable. The migration clears orphans first: they are
    /// unreachable by construction (every read path gates on the head row),
    /// and the blob is the authority being migrated.
    #[tokio::test]
    async fn re_upgrading_over_orphan_rows_that_diverge_from_the_blob_succeeds() {
        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("continuity.sqlite3");
        let identity = AgentIdentity::parse("triage:orphans").unwrap();
        let root = TranscriptStrandId::root();
        let interrupted = session_with(&["draft turn that was never adopted"]);
        let session_id = interrupted.id().clone();

        // 1. An append with no adopting head: rows land, ledger stays v1.
        {
            let store = LocalContinuityStore::open(&path).expect("open");
            seed_record(&store, &identity, &session_id, 1).await;
            store
                .append_messages(
                    &cursor(&identity, 0, 1, 1),
                    &session_id,
                    &root,
                    0,
                    interrupted.messages(),
                )
                .await
                .expect("append");
        }
        assert_eq!(ledger_version(&path), Some(1));
        v1_shaped_binary_opens(&path).expect("rollback is possible — that is the point");

        // 2. The previous release writes a whole-document blob that diverges
        //    from the orphan rows at seq 0.
        let divergent = {
            let store = LocalContinuityStore::open(&path).expect("reopen");
            // The same session id carrying a transcript that differs from
            // the orphan rows at seq 0 — a compaction, say.
            let rebuilt = rebuild_with_messages(
                &interrupted,
                vec![meerkat_core::Message::User(
                    meerkat_core::UserMessage::text("post-rollback compaction".to_string()),
                )],
            );
            store
                .save_session_snapshot(
                    &identity,
                    &session_id,
                    ContinuityGeneration::new(0),
                    CheckpointVersion::new(2),
                    FencingToken::new(1),
                    &SessionSnapshot {
                        data: serde_json::to_vec(&rebuilt).unwrap(),
                    },
                )
                .await
                .expect("post-rollback whole-blob save");
            rebuilt
        };

        // 3. Re-upgrade: the first delta write migrates the divergent blob.
        {
            let store = LocalContinuityStore::open(&path).expect("reopen");
            let mut next = divergent.clone();
            next.push(meerkat_core::Message::User(
                meerkat_core::UserMessage::text("turn after re-upgrade".to_string()),
            ));
            let base = divergent.messages().len() as u64;
            store
                .append_messages(
                    &cursor(&identity, 0, 3, 1),
                    &session_id,
                    &root,
                    base,
                    &next.messages()[base as usize..],
                )
                .await
                .expect(
                    "the migrating append must clear orphan rows the blob diverges from, \
                     not refuse the session forever",
                );
            let migrated = store
                .load_canonical_head(&session_id)
                .await
                .expect("head")
                .expect("the blob migrated into head+rows");
            assert_eq!(
                migrated.message_count,
                divergent.messages().len() as u64,
                "the migrated head describes the BLOB, which is the authority"
            );
            let rows = store
                .load_messages(&session_id, &migrated.strand, 0..migrated.message_count)
                .await
                .expect("rows");
            assert_eq!(
                rows,
                divergent.messages(),
                "the orphan rows must be gone, replaced by the blob's transcript"
            );
        }
    }

    /// Rebuild a session document on the SAME id with a different transcript.
    fn rebuild_with_messages(source: &Session, messages: Vec<meerkat_core::Message>) -> Session {
        let mut head =
            SessionHead::from_session(source, TranscriptStrandId::root(), 0).expect("head");
        head.message_count = messages.len() as u64;
        head.head_revision = meerkat_core::transcript_messages_digest(&messages).expect("digest");
        // meerkat 0.8.11: `SessionHead::into_session` verifies the byte-exact
        // row-prefix commitment against the rows it materializes (mirrors
        // meerkat-core `SessionHead::into_session_with_serialized_rows`), so
        // the fabricated head must commit to the REPLACEMENT rows. The
        // source-derived lineage anchor cannot describe them (its fields are
        // store-private), so it is cleared - `None` is the accepted
        // unactivated shape at materialization.
        let serialized = messages
            .iter()
            .map(|message| serde_json::to_vec(message).expect("serialize replacement row"))
            .collect::<Vec<_>>();
        head.message_row_prefix = Some(
            meerkat_core::session_store::SessionMessageRowPrefixAccumulator::empty()
                .extend_serialized_rows(&serialized)
                .expect("recommit row prefix"),
        );
        head.row_lineage_anchor = None;
        head.into_session(messages).expect("rebuild")
    }
}

/// One legacy blob session awaiting head-canonical conversion.
///
/// Every value the conversion needs already lives in the blob row, so the
/// offline driver needs no external state and no running runtime.
#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct PendingLegacySession {
    pub(crate) session_id: String,
    pub(crate) identity: String,
    pub(crate) generation: i64,
    pub(crate) checkpoint_version: i64,
    pub(crate) fencing_token: i64,
}

/// Outcome of an offline head-canonical backfill.
///
/// `converted.len() == examined` with empty `failures`/`vanished` is
/// the only shape that stamps the ledger; every other shape leaves the file
/// at v1 and rollback available.
#[derive(Debug, Clone, Default, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
pub struct HeadCanonicalBackfillReport {
    /// Legacy blob rows the run examined. EVERY blob row, converted or not:
    /// a row that already has a head row is still examined, because its blob
    /// may have changed since that conversion. Do not read this as "work to
    /// do" — `converted` + `reconverted` is the work that happened.
    pub examined: usize,
    /// Session ids that now carry a head row because of this run.
    pub converted: Vec<String>,
    /// Sessions whose blob disappeared between census and conversion.
    pub vanished: Vec<String>,
    /// Sessions that HAD been converted but whose legacy blob changed
    /// afterwards, so their head-canonical rows were replaced. Non-empty here
    /// means the deployment kept writing between a failed crossing and this
    /// retry — which is normal, and exactly the case that would otherwise
    /// have buried those messages.
    pub reconverted: Vec<String>,
    /// `(session_id, error)`; an empty session id is a run-level refusal.
    pub failures: Vec<(String, String)>,
    /// Blob rows whose session id or identity is not well formed. These
    /// could not be parsed as sessions and were therefore not converted.
    ///
    /// These BLOCK the ledger stamp until acknowledged by id. An earlier
    /// design skipped them silently on the reasoning that a row which was
    /// never a session can never be converted — true, but it makes a parser
    /// bug indistinguishable from genuine garbage at the one step that
    /// cannot be undone, so a real session classified too strictly would be
    /// dropped and the ledger advanced over it.
    pub skipped_unparseable: Vec<String>,
    /// True only when the whole corpus crossed in this run.
    pub ledger_stamped: bool,
    /// False for a dry run, which mutates nothing including the DDL.
    pub applied: bool,
}

impl HeadCanonicalBackfillReport {
    /// True when the corpus is wholly head-canonical after this run.
    #[must_use]
    pub fn complete(&self) -> bool {
        self.failures.is_empty()
            && self.vanished.is_empty()
            && self.converted.len() == self.examined
    }
}

/// Sessions with a legacy blob row and no head row.
///
/// Returns every blob session when the head table does not exist yet, which
/// is the ordinary v1 shape — a dry run must be able to report the pending
/// count without applying the DDL first.
fn pending_head_canonical_sessions(
    conn: &Connection,
) -> Result<(Vec<PendingLegacySession>, Vec<String>), ContinuityStoreError> {
    let heads_exist: bool = conn
        .query_row(
            "SELECT COUNT(*) FROM sqlite_master WHERE type='table' AND name='continuity_session_heads'",
            [],
            |row| row.get::<_, i64>(0),
        )
        .map_err(|e| sqlite_err("probe head-canonical table", e))?
        > 0;
    // EVERY blob row, not only those lacking a head.
    //
    // "has a head row" is not "converted and current". A partial crossing
    // leaves the ledger at v1, and AT v1 THE WHOLE-DOCUMENT PATH IS STILL THE
    // ACTIVE WRITER — so between a failed run and its retry the deployment
    // keeps appending to exactly the blobs already converted. Filtering those
    // out here would skip them on the retry, stamp, and bury every message
    // written in the gap inside a retained blob nothing reads afterwards.
    // Silent, and discovered only when an agent appears to have forgotten a
    // conversation. So the census returns them and the driver compares
    // CONTENT.
    let sql = if heads_exist {
        "SELECT s.session_id, s.identity, s.generation, s.checkpoint_version, s.fencing_token \
         FROM session_snapshots s ORDER BY s.session_id"
    } else {
        "SELECT session_id, identity, generation, checkpoint_version, fencing_token \
         FROM session_snapshots ORDER BY session_id"
    };
    let mut stmt = conn
        .prepare(sql)
        .map_err(|e| sqlite_err("prepare pending legacy session census", e))?;
    let rows = stmt
        .query_map([], |row| {
            Ok(PendingLegacySession {
                session_id: row.get(0)?,
                identity: row.get(1)?,
                generation: row.get(2)?,
                checkpoint_version: row.get(3)?,
                fencing_token: row.get(4)?,
            })
        })
        .map_err(|e| sqlite_err("query pending legacy sessions", e))?;
    let mut pending = Vec::new();
    let mut unparseable = Vec::new();
    for row in rows {
        let row = row.map_err(|e| sqlite_err("read pending legacy session", e))?;
        // A row whose session id or identity is not well formed was never a
        // mobkit session and can never be converted by anything. Treating it
        // as a conversion FAILURE would block the ledger stamp permanently
        // and strand an otherwise-healthy corpus over one piece of garbage,
        // so it is surfaced separately and excluded from the pending set.
        let parseable = meerkat_core::types::SessionId::parse(&row.session_id).is_ok()
            && AgentIdentity::parse(&row.identity).is_ok();
        if parseable {
            pending.push(row);
        } else {
            unparseable.push(row.session_id);
        }
    }
    Ok((pending, unparseable))
}

/// Convert one legacy blob session in its own transaction.
///
/// `Ok(false)` means the blob was gone by the time the transaction opened —
/// reported rather than silently counted, so a complete-conversion claim
/// cannot be made about a corpus that changed under the fence.
/// Blob rows with no head row, for the final pre-stamp verification.
///
/// The census deliberately returns EVERY blob row so the driver can compare
/// content, so it can no longer double as "is anything unconverted?". This
/// asks that narrower question in SQL, with no decode: it catches a row that
/// appeared during the run, or a write that did not land, without trusting
/// the loop's own optimistic account of itself.
fn blob_rows_without_head(conn: &Connection) -> Result<Vec<String>, ContinuityStoreError> {
    let heads_exist: bool = conn
        .query_row(
            "SELECT COUNT(*) FROM sqlite_master WHERE type='table' AND name='continuity_session_heads'",
            [],
            |row| row.get::<_, i64>(0),
        )
        .map_err(|e| sqlite_err("probe head-canonical table", e))?
        > 0;
    if !heads_exist {
        return Ok(vec!["<no head-canonical tables>".to_string()]);
    }
    let mut stmt = conn
        .prepare(
            "SELECT s.session_id FROM session_snapshots s \
             LEFT JOIN continuity_session_heads h ON h.session_id = s.session_id \
             WHERE h.session_id IS NULL ORDER BY s.session_id",
        )
        .map_err(|e| sqlite_err("prepare unconverted census", e))?;
    let rows = stmt
        .query_map([], |row| row.get::<_, String>(0))
        .map_err(|e| sqlite_err("query unconverted rows", e))?;
    let mut out = Vec::new();
    for row in rows {
        out.push(row.map_err(|e| sqlite_err("read unconverted row", e))?);
    }
    Ok(out)
}

fn backfill_one_session(
    conn: &mut Connection,
    candidate: &PendingLegacySession,
) -> Result<BackfillOutcome, ContinuityStoreError> {
    let session_id = meerkat_core::types::SessionId::parse(&candidate.session_id)
        .map_err(|e| ContinuityStoreError::Io(format!("malformed session id in blob row: {e}")))?;
    let identity = AgentIdentity::parse(&candidate.identity)
        .map_err(|e| ContinuityStoreError::Io(format!("malformed identity in blob row: {e}")))?;
    let tx = conn
        .transaction()
        .map_err(|e| sqlite_err("begin legacy session backfill", e))?;
    // SQLite hands these back as i64. A negative stamp is a corrupt row, not
    // a value to wrap around silently — refuse it and let the report name the
    // session rather than converting it against a fabricated stamp.
    let stamp = |label: &str, value: i64| -> Result<u64, ContinuityStoreError> {
        u64::try_from(value).map_err(|_| {
            ContinuityStoreError::Io(format!(
                "negative {label} ({value}) in blob row for session {}",
                candidate.session_id
            ))
        })
    };
    let generation = stamp("generation", candidate.generation)?;
    let checkpoint_version = stamp("checkpoint_version", candidate.checkpoint_version)?;
    let fencing_token = stamp("fencing_token", candidate.fencing_token)?;
    // STALENESS, BY CONTENT.
    //
    // A head row means this session was converted at SOME point, not that the
    // conversion still reflects the blob. Compare the blob's own head
    // revision against the stored one and reconvert on divergence.
    //
    // The comparison is a content digest, never a message count or a
    // timestamp: a message added and then removed between runs leaves a count
    // unchanged while the content differs, and a timestamp says nothing about
    // what the bytes hold.
    let existing = head_row_in_txn(&tx, &session_id)
        .map_err(|e| ContinuityStoreError::Io(format!("read existing head row: {e}")))?;
    let mut replaced = false;
    if let Some((stored, _token)) = existing.as_ref() {
        let session = blob_session_in_txn(&tx, &session_id)
            .map_err(|e| ContinuityStoreError::Io(format!("read blob for staleness check: {e}")))?;
        match session {
            Some(session) => {
                if session.id() != &session_id {
                    // The identity guard below refuses this, but do not touch
                    // the existing head on the way there.
                    return Err(ContinuityStoreError::Io(format!(
                        "blob for {session_id} decodes to a different session; refusing"
                    )));
                }
                let (_layout, expected) = layout_for_blob_session(&session).map_err(|e| {
                    ContinuityStoreError::Io(format!("recompute head for staleness check: {e}"))
                })?;
                if expected.head_revision == stored.head_revision {
                    // Converted and still current — nothing to do.
                    tx.commit()
                        .map_err(|e| sqlite_err("commit no-op backfill", e))?;
                    return Ok(BackfillOutcome::AlreadyCurrent);
                }
                tracing::info!(
                    session_id = %session_id,
                    stored_revision = %stored.head_revision,
                    blob_revision = %expected.head_revision,
                    "legacy blob changed since its conversion; replacing the head-canonical rows"
                );
                delete_head_canonical_rows_in_txn(
                    &tx,
                    "session_id = ?1",
                    &[&session_id.to_string()],
                )?;
                replaced = true;
            }
            None => {
                tx.commit()
                    .map_err(|e| sqlite_err("commit vanished backfill", e))?;
                return Ok(BackfillOutcome::Vanished);
            }
        }
    }
    let migrated = migrate_legacy_blob_in_txn(
        &tx,
        &session_id,
        &identity,
        ContinuityGeneration::new(generation),
        CheckpointVersion::new(checkpoint_version),
        FencingToken::new(fencing_token),
    )
    .map_err(|e| ContinuityStoreError::Io(format!("head-canonical conversion failed: {e}")))?;
    tx.commit()
        .map_err(|e| sqlite_err("commit legacy session backfill", e))?;
    Ok(match (migrated.is_some(), replaced) {
        (false, _) => BackfillOutcome::Vanished,
        (true, true) => BackfillOutcome::Reconverted,
        (true, false) => BackfillOutcome::Converted,
    })
}

/// What one row did, so the report can distinguish a first conversion from a
/// replacement of a conversion the deployment had already outgrown.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum BackfillOutcome {
    Converted,
    /// The blob changed after an earlier conversion; head rows were replaced.
    Reconverted,
    /// Already converted and still current.
    AlreadyCurrent,
    /// The blob was gone by the time the transaction opened.
    Vanished,
}