memstead-base 0.7.0

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

use std::collections::{HashMap, HashSet};
use std::sync::Arc;

use memstead_schema::{Filterable, Schema, Serialization, TypeDefinition, type_by_name};

use super::{
    ExpansionInfo, Facets, ListResult, Query, ScoreBreakdown, SearchHit, SearchResult, SearchScope,
    SubsectionFacet, SummaryPair, WarningHint,
};
use crate::entity::EntityId;
use crate::entity::generator::generate_markdown;
use crate::graph::query;
use crate::search_index::{
    MemIndex, compute_matched_terms, compute_score_breakdown, query as search_query,
};
use crate::store::Store;

/// Hard ceiling on how many hits to pull back from tantivy per mem. The
/// in-memory post-filter trims this down; the ceiling exists so misconfigured
/// callers (e.g. an unbounded offset) can't degrade into a full-corpus scan
/// per mem. 10k matches the "typical mem" perf budget.
const MAX_HITS_PER_MEM: usize = 10_000;

/// Resolve a hit's lead-section summary against its *own* mem schema —
/// the renderer can't do this correctly (its `type_by_name` only sees the
/// `default` schema), so the search op computes it here where the per-mem
/// `schema` is in hand and stores it on the hit. Delegates to the shared
/// [`crate::render::lead_section_pair`] so the lead-section rule has one home.
fn hit_summary<'a>(
    schema: &TypeDefinition,
    get_section: impl Fn(&str) -> Option<&'a str>,
) -> SummaryPair {
    let (heading, value) = crate::render::lead_section_pair(schema, get_section);
    SummaryPair { heading, value }
}

/// Estimate token count for an entity (rough: markdown length / 4).
fn estimate_tokens(entity: &crate::entity::Entity, schema: &TypeDefinition) -> usize {
    let md = generate_markdown(entity, schema);
    md.len() / 4
}

/// #54: a `related_to` neighbourhood larger than this is ranked by proximity
/// and bounded to its nearest members so a hub can't flood the caller. Sized
/// generously — a normal (non-hub) neighbourhood stays whole (the refusal AC).
const RELATED_TO_NEIGHBOURHOOD_CAP: usize = 100;

/// Default token budget bounding a single search page's hit payload. Sized
/// to leave headroom under the MCP transport cap once both response channels
/// (structured envelope + rendered markdown, each derived from the same
/// hits) and the facets/frontmatter overhead are counted. Agents override via
/// `token_budget`; a page that overflows it is greedily trimmed with a
/// `SEARCH_RESULTS_TRUNCATED` warning.
const DEFAULT_SEARCH_TOKEN_BUDGET: usize = 12_000;

/// Rough serialized-token cost of one search hit (chars / 4) — the same
/// heuristic the rest of the engine uses for token estimates. Drives the
/// budget greedy-fill; `summary` is `#[serde(skip)]` so it doesn't serialize
/// here, which slightly under-counts, but the markdown channel carries the
/// summary instead, so the budget headroom absorbs it.
fn hit_response_tokens(hit: &SearchHit) -> usize {
    serde_json::to_string(hit).map(|s| s.len()).unwrap_or(0) / 4
}

/// Search entities with text matching and filtering.
///
/// Evaluates `scope.query` against the per-mem tantivy indexes when any
/// text predicate is set; otherwise degrades to a metadata-only scan of the
/// store (the `list` semantics path).
pub fn search(
    store: &Store,
    scope: &SearchScope,
    default_schema: &TypeDefinition,
    search_indexes: &HashMap<String, MemIndex>,
    mem_schemas: &HashMap<String, Arc<Schema>>,
) -> SearchResult {
    let mut warnings: Vec<WarningHint> = Vec::new();
    let scoped_type = scope.entity_type.as_deref();
    let scope_mem = scope.mem.as_deref();
    let filter_type = scoped_type.and_then(|t| resolve_type(t, scope_mem, mem_schemas));
    let filter_schema: &TypeDefinition = filter_type.as_deref().unwrap_or(default_schema);
    collect_equality_filter_warnings(
        &scope.filters,
        filter_schema,
        scoped_type,
        scope_mem,
        mem_schemas,
        &mut warnings,
    );
    collect_range_filter_warnings(
        &scope.range_filters,
        filter_schema,
        scoped_type,
        scope_mem,
        mem_schemas,
        &mut warnings,
    );
    collect_stub_type_exclusion_warning(scope, &mut warnings);

    // `scope.query` is the sole text-predicate entry point. An absent or
    // empty query falls through to the metadata-only scan below.
    let effective_query: Option<&Query> = scope.query.as_ref().filter(|q| !q.is_empty());
    let query_has_text = effective_query.is_some();

    // Execute the tantivy query across the selected mems — at most one
    // when `scope.mem` is Some, otherwise every indexed mem. Keep the
    // highest score per entity (a cross-mem dedup is irrelevant today but
    // cheap insurance).
    let mut scored_ids: HashMap<EntityId, f32> = HashMap::new();
    if query_has_text {
        let query = effective_query.unwrap();
        let target_mems = resolve_target_mems(search_indexes, scope.mem.as_deref());
        if let Some(name) = scope.mem.as_ref()
            && target_mems.is_empty()
        {
            warnings.push(WarningHint::SearchMemIndexUnavailable {
                mem: name.clone(),
                reason: "missing_index",
                error: None,
            });
        }
        for mem_name in &target_mems {
            let Some(idx) = search_indexes.get(mem_name.as_str()) else {
                continue;
            };
            let schema = mem_schemas.get(mem_name.as_str());
            match search_query::execute_on_mem(idx, schema, query, MAX_HITS_PER_MEM) {
                Ok(hits) => {
                    for (id, score) in hits {
                        let slot = scored_ids.entry(id).or_insert(f32::MIN);
                        if score > *slot {
                            *slot = score;
                        }
                    }
                }
                Err(e) => {
                    tracing::warn!(
                        mem = mem_name.as_str(),
                        error = %e,
                        "tantivy query failed; mem contributes no hits"
                    );
                    warnings.push(WarningHint::SearchMemIndexUnavailable {
                        mem: mem_name.to_string(),
                        reason: "query_failed",
                        error: Some(e.to_string()),
                    });
                }
            }
        }
        if scored_ids.is_empty() {
            return SearchResult {
                total: 0,
                returned: 0,
                offset: scope.offset.unwrap_or(0),
                total_tokens: 0,
                hits: Vec::new(),
                // Empty-but-present facets keeps the response shape stable
                // even when there are no hits — agents can always branch on
                // the keys without null checks.
                facets: Some(Facets::default()),
                warnings,
            };
        }
    }

    let query_term = first_positive_term(effective_query);

    let mut hits: Vec<SearchHit> = Vec::new();
    for entity in store.all_entities() {
        match scope.stub {
            Some(true) if !entity.stub => continue,
            Some(false) if entity.stub => continue,
            _ => {}
        }

        if let Some(ref mem) = scope.mem
            && entity.mem != *mem
        {
            continue;
        }

        if query_has_text && !scored_ids.contains_key(&entity.id) {
            continue;
        }

        if let Some(ref type_name) = scope.entity_type
            && entity.entity_type != *type_name
        {
            continue;
        }

        let resolved = resolve_type(&entity.entity_type, Some(entity.mem.as_str()), mem_schemas);
        let schema: &TypeDefinition = resolved.as_deref().unwrap_or(default_schema);

        if !apply_equality_filters(
            entity,
            &scope.filters,
            schema,
            scope.mem.as_deref(),
            mem_schemas,
        ) {
            continue;
        }
        if !apply_range_filters(
            entity,
            &scope.range_filters,
            schema,
            scope.mem.as_deref(),
            mem_schemas,
        ) {
            continue;
        }

        if let Some(ref edge_type) = scope.edge_type {
            let has_out = store
                .outgoing(&entity.id)
                .iter()
                .any(|e| e.rel_type == *edge_type);
            let has_in = store
                .incoming(&entity.id)
                .iter()
                .any(|e| e.rel_type == *edge_type);
            if !has_out && !has_in {
                continue;
            }
        }

        let score = scored_ids.get(&entity.id).copied().unwrap_or(0.0);
        let snippet = query_term
            .as_ref()
            .and_then(|term| snippet_for(entity, term, schema));

        let tokens = estimate_tokens(entity, schema);

        // Full section bodies are deliberately NOT carried on search hits:
        // search finds entities, `memstead_entity` reads them in full.
        // Shipping every required section per hit pushed a page of
        // content-rich matches past the MCP transport token cap; the
        // lead-section summary, `snippet`, and `matched_terms` carry enough
        // signal to triage a hit, and the body is one `memstead_entity` call
        // away. (`list` still ships sections — its human-facing roster
        // consumers read them.)
        let summary = Some(hit_summary(schema, |k| {
            entity.sections.get(k).map(String::as_str)
        }));

        // Populate matched_terms + score_breakdown only when the
        // caller actually supplied a text predicate. The metadata-only path
        // keeps both as `None` so empty queries don't carry pointless feedback.
        let (matched_terms, score_breakdown) = if let Some(q) = effective_query {
            let mt = compute_matched_terms(entity, q);
            let sb = compute_score_breakdown(schema, score, &mt);
            (mt, Some(sb))
        } else {
            (None, None)
        };

        hits.push(SearchHit {
            id: entity.id.clone(),
            title: entity.title.clone(),
            mem: entity.mem.clone(),
            entity_type: entity.entity_type.clone(),
            stub: entity.stub,
            last_modified: entity.metadata.get("last_modified").map(|v| v.to_string()),
            score,
            tokens,
            snippet,
            summary,
            sections: HashMap::new(),
            score_breakdown,
            matched_terms,
            expansion: None,
        });
    }

    // #54: a `related_to` neighbourhood is ranked by proximity (nearer
    // first) and bounded, not a flat alphabetical flood. Compute hop-
    // distances (membership = the reachable set, unchanged) and the anchor's
    // directly-typed neighbours; the sort and cap below consume them.
    let neighbourhood: Option<(HashMap<EntityId, usize>, HashSet<EntityId>)> =
        if let Some(ref related_to) = scope.related_to {
            let depth = scope.depth.unwrap_or(1);
            let distances = query::reachable_distances(store, related_to, depth, scope.direction);
            hits.retain(|h| distances.contains_key(&h.id));
            let typed_direct: HashSet<EntityId> = store
                .outgoing(related_to)
                .iter()
                .filter(|e| e.source != crate::store::EdgeSource::BodyLink)
                .map(|e| e.target.clone())
                .chain(
                    store
                        .incoming(related_to)
                        .iter()
                        .filter(|e| e.source != crate::store::EdgeSource::BodyLink)
                        .map(|e| e.from.clone()),
                )
                .collect();
            Some((distances, typed_direct))
        } else {
            None
        };

    // Graph expansion. After the primary hit set is computed,
    // optionally pull in neighbours reachable via the requested edge types.
    // Non-query filters (mem, entity_type, filters, range_filters) also
    // apply to expanded candidates — a violating neighbour is dropped. The
    // `related_to`, `edge_type`, and text predicates deliberately do NOT
    // apply: expansion is a graph-proximity surface on top of
    // the primary hit set, not a second text query.
    if let Some(ref edge_types) = scope.expand_via
        && !edge_types.is_empty()
    {
        expand_hits(
            &mut hits,
            store,
            edge_types,
            scope,
            default_schema,
            mem_schemas,
        );
    }

    // Sort: a `related_to` neighbourhood ranks by proximity — nearer hops
    // first, then a typed (dependency) link to the anchor before a
    // co-mention at the same distance — otherwise by tantivy score. Title
    // asc is the stable tiebreak throughout.
    if let Some((distances, typed_direct)) = neighbourhood.as_ref() {
        hits.sort_by(|a, b| {
            let da = distances.get(&a.id).copied().unwrap_or(usize::MAX);
            let db = distances.get(&b.id).copied().unwrap_or(usize::MAX);
            da.cmp(&db)
                .then_with(|| {
                    typed_direct
                        .contains(&b.id)
                        .cmp(&typed_direct.contains(&a.id))
                })
                .then_with(|| {
                    b.score
                        .partial_cmp(&a.score)
                        .unwrap_or(std::cmp::Ordering::Equal)
                })
                .then_with(|| a.title.cmp(&b.title))
        });
    } else {
        hits.sort_by(|a, b| {
            b.score
                .partial_cmp(&a.score)
                .unwrap_or(std::cmp::Ordering::Equal)
                .then_with(|| a.title.cmp(&b.title))
        });
    }

    // #54: bound a hub neighbourhood to its nearest N (after proximity
    // ranking) so it can't flood the caller; a neighbourhood at/under the
    // cap is unchanged (refusal AC). The warning surfaces the truncation.
    if neighbourhood.is_some() && hits.len() > RELATED_TO_NEIGHBOURHOOD_CAP {
        warnings.push(WarningHint::NeighbourhoodCapped {
            kept: RELATED_TO_NEIGHBOURHOOD_CAP,
            total: hits.len(),
        });
        hits.truncate(RELATED_TO_NEIGHBOURHOOD_CAP);
    }

    let total = hits.len();
    let total_tokens: usize = hits.iter().map(|h| h.tokens).sum();
    // Facets are computed over the unpaginated hit set. Pagination
    // is for display, facets are for navigation — counting only the page
    // window would mislead the agent.
    let facets = compute_facets(&hits, store);
    let offset = scope.offset.unwrap_or(0);
    let limit = scope.limit.unwrap_or(50).min(200);

    let mut paginated: Vec<SearchHit> = hits.into_iter().skip(offset).take(limit).collect();

    // Token-budget guard: a page of content-rich hits can still overflow the
    // MCP transport cap even after `limit`. Greedily keep hits while the
    // running serialized cost stays under the budget; always keep at least
    // one (a single oversized hit must still come back). `total` stays the
    // full match count — the agent pages with `offset` or raises
    // `token_budget`. Bounding here (not in the markdown renderer) keeps both
    // response channels in lockstep, since both derive from `hits`.
    let budget = scope.token_budget.unwrap_or(DEFAULT_SEARCH_TOKEN_BUDGET);
    let pre_budget = paginated.len();
    let mut running = 0usize;
    let mut keep = 0usize;
    for hit in &paginated {
        let cost = hit_response_tokens(hit);
        if keep > 0 && running + cost > budget {
            break;
        }
        running += cost;
        keep += 1;
    }
    if keep < pre_budget {
        paginated.truncate(keep);
        warnings.push(WarningHint::SearchResultsTruncated { kept: keep, budget });
    }
    let returned = paginated.len();

    SearchResult {
        total,
        returned,
        offset,
        total_tokens,
        hits: paginated,
        facets: Some(facets),
        warnings,
    }
}

/// List entities with filtering (no text matching, returns all matching entities).
pub fn list(
    store: &Store,
    scope: &SearchScope,
    default_schema: &TypeDefinition,
    mem_schemas: &HashMap<String, Arc<Schema>>,
) -> ListResult {
    let mut hits: Vec<SearchHit> = Vec::new();
    let mut total_tokens = 0;
    let mut warnings: Vec<WarningHint> = Vec::new();
    let scoped_type = scope.entity_type.as_deref();
    let scope_mem = scope.mem.as_deref();
    let filter_type = scoped_type.and_then(|t| resolve_type(t, scope_mem, mem_schemas));
    let filter_schema: &TypeDefinition = filter_type.as_deref().unwrap_or(default_schema);
    collect_equality_filter_warnings(
        &scope.filters,
        filter_schema,
        scoped_type,
        scope_mem,
        mem_schemas,
        &mut warnings,
    );
    collect_range_filter_warnings(
        &scope.range_filters,
        filter_schema,
        scoped_type,
        scope_mem,
        mem_schemas,
        &mut warnings,
    );
    collect_stub_type_exclusion_warning(scope, &mut warnings);

    for entity in store.all_entities() {
        match scope.stub {
            Some(true) if !entity.stub => continue,
            Some(false) if entity.stub => continue,
            _ => {}
        }

        if let Some(ref mem) = scope.mem
            && entity.mem != *mem
        {
            continue;
        }

        if let Some(ref type_name) = scope.entity_type
            && entity.entity_type != *type_name
        {
            continue;
        }

        let resolved = resolve_type(&entity.entity_type, Some(entity.mem.as_str()), mem_schemas);
        let schema: &TypeDefinition = resolved.as_deref().unwrap_or(default_schema);

        if !apply_equality_filters(
            entity,
            &scope.filters,
            schema,
            scope.mem.as_deref(),
            mem_schemas,
        ) {
            continue;
        }
        if !apply_range_filters(
            entity,
            &scope.range_filters,
            schema,
            scope.mem.as_deref(),
            mem_schemas,
        ) {
            continue;
        }

        if let Some(ref edge_type) = scope.edge_type {
            let has_out = store
                .outgoing(&entity.id)
                .iter()
                .any(|e| e.rel_type == *edge_type);
            let has_in = store
                .incoming(&entity.id)
                .iter()
                .any(|e| e.rel_type == *edge_type);
            if !has_out && !has_in {
                continue;
            }
        }

        let tokens = estimate_tokens(entity, schema);
        total_tokens += tokens;

        let mut result_sections = HashMap::new();
        for section_def in schema.sections.iter().filter(|s| s.required) {
            if let Some(content) = entity.sections.get(section_def.key.as_str()) {
                result_sections.insert(section_def.key.clone(), content.clone());
            }
        }

        // Resolve the summary before moving `result_sections` into the hit —
        // the closure borrows it, so the borrow must end first.
        let summary = Some(hit_summary(schema, |k| {
            result_sections.get(k).map(String::as_str)
        }));

        hits.push(SearchHit {
            id: entity.id.clone(),
            title: entity.title.clone(),
            mem: entity.mem.clone(),
            entity_type: entity.entity_type.clone(),
            stub: entity.stub,
            last_modified: entity.metadata.get("last_modified").map(|v| v.to_string()),
            score: 0.0,
            tokens,
            snippet: None,
            summary,
            sections: result_sections,
            score_breakdown: None,
            matched_terms: None,
            expansion: None,
        });
    }

    hits.sort_by(|a, b| a.title.cmp(&b.title));

    let total = hits.len();
    let offset = scope.offset.unwrap_or(0);
    let limit = scope.limit.unwrap_or(50).min(200);
    let paginated: Vec<SearchHit> = hits.into_iter().skip(offset).take(limit).collect();
    let returned = paginated.len();

    ListResult {
        total,
        returned,
        offset,
        total_tokens,
        hits: paginated,
        warnings,
    }
}

// ---------------------------------------------------------------------------
// Facets
// ---------------------------------------------------------------------------

/// Compute facet counts over the unpaginated hit set. Zero-count entries are
/// excluded to keep the payload small — agents branch on presence, not on
/// counts. `by_expansion` tags each hit `primary` or `expanded`.
///
/// `by_level` / `by_status` / `by_confidence` are the fixed Tier 1
/// `Filterable::Equality` dimensions. We look them up by literal metadata
/// key — the three closed fields on `Facets` match the three conventional
/// names used across the built-in schemas. If a schema renames them (e.g.
/// `verification_status` on assertions), that value lands in neither
/// `by_status` nor a dynamic dim — Tier 1 freezes the facet set; extending
/// is a Tier 2 concern.
fn compute_facets(hits: &[SearchHit], store: &Store) -> Facets {
    let mut by_type: HashMap<String, usize> = HashMap::new();
    let mut by_mem: HashMap<String, usize> = HashMap::new();
    let mut by_level: HashMap<String, usize> = HashMap::new();
    let mut by_status: HashMap<String, usize> = HashMap::new();
    let mut by_confidence: HashMap<String, usize> = HashMap::new();
    let mut subsection_counts: HashMap<Vec<String>, usize> = HashMap::new();
    let mut by_expansion: HashMap<String, usize> = HashMap::new();

    for hit in hits {
        // Stubs carry `entity_type: ""` by construction (store_builder::make_stub).
        // Skip them here so the facet doesn't expose a meaningless empty-string
        // bucket — an `entity_type` is semantically undefined for a stub.
        // Agents that need stub counts already have `stub=true|false` filter +
        // `memstead_health.stubs`.
        if !hit.entity_type.is_empty() {
            *by_type.entry(hit.entity_type.clone()).or_insert(0) += 1;
        }
        *by_mem.entry(hit.mem.clone()).or_insert(0) += 1;

        if let Some(entity) = store.get(&hit.id) {
            if let Some(v) = entity.metadata.get("level") {
                *by_level.entry(v.to_frontmatter_string()).or_insert(0) += 1;
            }
            if let Some(v) = entity.metadata.get("status") {
                *by_status.entry(v.to_frontmatter_string()).or_insert(0) += 1;
            }
            if let Some(v) = entity.metadata.get("confidence") {
                *by_confidence.entry(v.to_frontmatter_string()).or_insert(0) += 1;
            }
        }

        let tag = if hit.expansion.is_some() {
            "expanded"
        } else {
            "primary"
        };
        *by_expansion.entry(tag.into()).or_insert(0) += 1;

        if let Some(matched) = &hit.matched_terms {
            for term_matches in matched.values() {
                for tm in term_matches {
                    let Some(heading_path) = &tm.heading_path else {
                        continue;
                    };
                    if heading_path.is_empty() {
                        continue;
                    }
                    let mut path = Vec::with_capacity(heading_path.len() + 1);
                    path.push(tm.field.clone());
                    path.extend(heading_path.iter().cloned());
                    *subsection_counts.entry(path).or_insert(0) += 1;
                }
            }
        }
    }

    // Deterministic order: count desc, then path asc. Makes the wire shape
    // stable across runs for snapshot tests + readable for agents.
    let mut by_subsection: Vec<SubsectionFacet> = subsection_counts
        .into_iter()
        .map(|(path, count)| SubsectionFacet { path, count })
        .collect();
    by_subsection.sort_by(|a, b| b.count.cmp(&a.count).then_with(|| a.path.cmp(&b.path)));

    Facets {
        by_type,
        by_mem,
        by_level,
        by_status,
        by_confidence,
        by_subsection,
        by_expansion,
    }
}

// ---------------------------------------------------------------------------
// Graph expansion
// ---------------------------------------------------------------------------

/// Append expanded hits to the primary set. For each primary seed, walk
/// `edge_types` bidirectionally up to `expand_depth` hops (default 1) and
/// add neighbours with `expansion: Some(ExpansionInfo)`. Score decays by
/// `0.5^depth`. Non-query filters (`mem`, `entity_type`, `filters`,
/// `range_filters`) are enforced on every candidate; violating neighbours
/// are dropped. Duplicates across multiple seeds are resolved by keeping
/// the highest-score candidate.
///
/// Re-sorting is the caller's job (happens once after expansion so primary
/// and expanded hits interleave by score).
fn expand_hits(
    hits: &mut Vec<SearchHit>,
    store: &Store,
    edge_types: &[String],
    scope: &SearchScope,
    default_schema: &TypeDefinition,
    mem_schemas: &HashMap<String, Arc<Schema>>,
) {
    let depth_limit = scope.expand_depth.unwrap_or(1);
    if depth_limit == 0 {
        return;
    }
    let primary_ids: HashSet<EntityId> = hits.iter().map(|h| h.id.clone()).collect();

    // Dedup across seeds: if a neighbour is reached from two primaries,
    // keep the candidate with the highest score so agents see the shortest
    // / highest-ranking path.
    let mut expanded: HashMap<
        EntityId,
        (
            f32,
            String,
            usize,
            EntityId,
            crate::graph::query::TraversalDirection,
        ),
    > = HashMap::new();

    for primary in hits.iter() {
        let reached =
            query::reachable_via(store, &primary.id, edge_types, depth_limit, scope.direction);
        for reached_via in reached {
            if primary_ids.contains(&reached_via.id) {
                continue;
            }
            let decay = 0.5f32.powi(reached_via.depth as i32);
            let score = primary.score * decay;
            let better = match expanded.get(&reached_via.id) {
                Some((prev_score, _, _, _, _)) => score > *prev_score,
                None => true,
            };
            if better {
                expanded.insert(
                    reached_via.id.clone(),
                    (
                        score,
                        reached_via.via_edge,
                        reached_via.depth,
                        primary.id.clone(),
                        reached_via.direction,
                    ),
                );
            }
        }
    }

    for (id, (score, via_edge, depth, of, via_direction)) in expanded {
        let Some(entity) = store.get(&id) else {
            continue;
        };
        match scope.stub {
            Some(true) if !entity.stub => continue,
            Some(false) if entity.stub => continue,
            _ => {}
        }
        if let Some(ref mem) = scope.mem
            && entity.mem != *mem
        {
            continue;
        }
        if let Some(ref type_name) = scope.entity_type
            && entity.entity_type != *type_name
        {
            continue;
        }

        let resolved = resolve_type(&entity.entity_type, Some(entity.mem.as_str()), mem_schemas);
        let schema: &TypeDefinition = resolved.as_deref().unwrap_or(default_schema);

        if !apply_equality_filters(
            entity,
            &scope.filters,
            schema,
            scope.mem.as_deref(),
            mem_schemas,
        ) {
            continue;
        }
        if !apply_range_filters(
            entity,
            &scope.range_filters,
            schema,
            scope.mem.as_deref(),
            mem_schemas,
        ) {
            continue;
        }

        let tokens = estimate_tokens(entity, schema);
        // Expanded hits follow the same no-section-bodies rule as primary
        // search hits — see the note at the primary push site.
        let summary = Some(hit_summary(schema, |k| {
            entity.sections.get(k).map(String::as_str)
        }));

        let decay = 0.5f32.powi(depth as i32);
        let score_breakdown = ScoreBreakdown {
            bm25: 0.0,
            title_boost: 0.0,
            field_weights: HashMap::new(),
            expansion_decay: Some(decay),
        };

        hits.push(SearchHit {
            id: id.clone(),
            title: entity.title.clone(),
            mem: entity.mem.clone(),
            entity_type: entity.entity_type.clone(),
            stub: entity.stub,
            last_modified: entity.metadata.get("last_modified").map(|v| v.to_string()),
            score,
            tokens,
            snippet: None,
            summary,
            sections: HashMap::new(),
            score_breakdown: Some(score_breakdown),
            matched_terms: None,
            expansion: Some(ExpansionInfo {
                of,
                via_edge,
                depth,
                via_direction,
            }),
        });
    }
}

// ---------------------------------------------------------------------------
// Query derivation helpers
// ---------------------------------------------------------------------------

/// First positive term across `any` → `phrase`. Drives the single-snippet
/// surface alongside the per-term snippets in [`compute_matched_terms`].
fn first_positive_term(query: Option<&Query>) -> Option<String> {
    let q = query?;
    if let Some(t) = q.any.first() {
        return Some(t.clone());
    }
    q.phrase.clone()
}

/// Pick which mems to query. `None` = every indexed mem; `Some(name)`
/// narrows to that mem (or empty when the name isn't indexed).
fn resolve_target_mems<'a>(
    search_indexes: &'a HashMap<String, MemIndex>,
    requested: Option<&str>,
) -> Vec<&'a String> {
    match requested {
        Some(name) => search_indexes
            .keys()
            .filter(|k| k.as_str() == name)
            .collect(),
        None => search_indexes.keys().collect(),
    }
}

/// Build a one-line snippet for a hit by finding the first case-insensitive
/// substring match of `term` in the title or a weighted section. The
/// per-term snippets with heading-path attribution live in
/// [`compute_matched_terms`].
fn snippet_for(
    entity: &crate::entity::Entity,
    term: &str,
    schema: &TypeDefinition,
) -> Option<String> {
    let lower_term = term.to_lowercase();
    if entity.title.to_lowercase().contains(&lower_term) {
        return Some(build_snippet(&entity.title, term));
    }
    let mut best: Option<(f32, String)> = None;
    for section_def in &schema.sections {
        if section_def.search_weight == 0.0 {
            continue;
        }
        if let Some(content) = entity.sections.get(section_def.key.as_str())
            && content.to_lowercase().contains(&lower_term)
        {
            let snippet = build_snippet(content, term);
            let pick = match &best {
                Some((w, _)) if *w >= section_def.search_weight => continue,
                _ => (section_def.search_weight, snippet),
            };
            best = Some(pick);
        }
    }
    best.map(|(_, s)| s)
}

/// Build a snippet showing context around the match.
pub(crate) fn build_snippet(content: &str, query: &str) -> String {
    let lower = content.to_lowercase();
    let lower_query = query.to_lowercase();
    let pos = match lower.find(&lower_query) {
        Some(p) => p,
        None => return content.chars().take(100).collect(),
    };

    let context = 50;
    let start = content[..pos]
        .char_indices()
        .rev()
        .nth(context)
        .map(|(i, _)| i)
        .unwrap_or(0);
    let end_of_match = pos + query.len();
    let end = content[end_of_match..]
        .char_indices()
        .nth(context)
        .map(|(i, _)| end_of_match + i)
        .unwrap_or(content.len());

    let prefix = if start > 0 { "..." } else { "" };
    let suffix = if end < content.len() { "..." } else { "" };
    let before = &content[start..pos];
    let matched = &content[pos..end_of_match];
    let after = &content[end_of_match..end];

    format!("{prefix}{before}**{matched}**{after}{suffix}")
}

// ---------------------------------------------------------------------------
// Filters
// ---------------------------------------------------------------------------

fn apply_equality_filters(
    entity: &crate::entity::Entity,
    filters: &HashMap<String, String>,
    schema: &TypeDefinition,
    scope_mem: Option<&str>,
    mem_schemas: &HashMap<String, Arc<Schema>>,
) -> bool {
    // Two distinct branches decide whether an entity survives a filter
    // key it can't equality-match — and they are NOT the same outcome:
    //
    // - **Field absent from this entity's type but equality-filterable on
    //   some other reachable type** → exclude (`return false`). This is
    //   the deliberate strict type-narrowing: `filters={level:"M0"}`
    //   excludes memos/stubs that have no `level` field, so the result
    //   doesn't lie about what matched.
    // - **Field declared on this entity's type but `Filterable::None`, OR
    //   absent here but declared only as non-filterable workspace-wide**
    //   → pass through (`continue`). A non-filterable field can't
    //   discriminate, so filtering on it is a no-op: the entity survives
    //   and the result set equals the same search without the filter. The
    //   `FIELD_NOT_FILTERABLE` warning still fires from
    //   `collect_equality_filter_warnings`. The narrowing decision is keyed
    //   on *filterability*, not mere declaration — a non-filterable field
    //   never type-narrows in either the scoped or unscoped case.
    //
    // A key not declared by ANY reachable schema also passes through
    // (the warning channel flags it `UNKNOWN_FILTER_KEY`) so a single
    // typo doesn't collapse the result set.
    for (key, filter_value) in filters {
        let Some(field_def) = schema.metadata_field(key) else {
            if classify_filter_field(key, scope_mem, mem_schemas, false)
                == FieldFilterability::Filterable
            {
                return false;
            }
            continue;
        };
        if !matches!(
            field_def.filterable,
            Filterable::Equality | Filterable::Range
        ) {
            // Declared but non-filterable — truly ignore (pass through).
            continue;
        }
        let is_csv = field_def.serialization == Serialization::CsvArray;

        match entity.metadata.get(key) {
            Some(val) => {
                let val_str = val.to_frontmatter_string();
                if is_csv {
                    let items: Vec<&str> = val_str
                        .split(',')
                        .map(|s| s.trim())
                        .filter(|s| !s.is_empty())
                        .collect();
                    if !items.iter().any(|item| *item == filter_value) {
                        return false;
                    }
                } else if val_str != *filter_value {
                    return false;
                }
            }
            None => return false,
        }
    }
    true
}

/// Workspace-wide verdict on a filter key, keyed on *filterability* rather
/// than mere declaration. Both the application path (`apply_*_filters`) and
/// the warning path (`collect_*_filter_warnings`) consult this single
/// helper so they cannot disagree about what the filter did — the
/// warning-matches-result contract.
#[derive(PartialEq, Eq, Clone, Copy)]
enum FieldFilterability {
    /// No reachable schema (within `scope_mem` if set) declares the key.
    Unknown,
    /// Declared on ≥1 type, but no declaring type marks it filterable in
    /// the requested mode → the filter is ignored, result = unfiltered.
    DeclaredNotFilterable,
    /// Filterable (in the requested mode) on ≥1 declaring type → the
    /// filter narrows and value-matches.
    Filterable,
}

/// Classify `key`'s filterability across the reachable schemas, ignoring
/// any single reference type. `scope_mem = Some(v)` narrows to that
/// mem's pinned schema (mirrors [`find_filter_declaring_types`] so the
/// application and warning paths see the same reachable set); `None` scans
/// every schema. `range = true` counts only `Filterable::Range`; `false`
/// (equality) counts `Equality | Range`.
///
/// This replaces the old declaration-only `filter_declared_anywhere`
/// boolean: a key declared only as non-filterable must be *ignored* (result
/// = unfiltered), not type-narrowed, in both the scoped and unscoped cases.
/// The deliberate narrowing on a *filterable* field absent from an
/// entity's type is preserved via the `Filterable` verdict.
fn classify_filter_field(
    key: &str,
    scope_mem: Option<&str>,
    mem_schemas: &HashMap<String, Arc<Schema>>,
    range: bool,
) -> FieldFilterability {
    let counts = |f: Filterable| {
        if range {
            f == Filterable::Range
        } else {
            matches!(f, Filterable::Equality | Filterable::Range)
        }
    };
    let mut declared = false;
    let mut filterable = false;
    let mut scan = |schema: &Schema| {
        for t in schema.types.values() {
            if let Some(fd) = t.metadata_field(key) {
                declared = true;
                if counts(fd.filterable) {
                    filterable = true;
                }
            }
        }
    };
    match scope_mem {
        Some(v) => {
            if let Some(s) = mem_schemas.get(v) {
                scan(s);
            }
        }
        None => {
            for s in mem_schemas.values() {
                scan(s);
            }
        }
    }
    if filterable {
        FieldFilterability::Filterable
    } else if declared {
        FieldFilterability::DeclaredNotFilterable
    } else {
        FieldFilterability::Unknown
    }
}

fn apply_range_filters(
    entity: &crate::entity::Entity,
    filters: &HashMap<String, String>,
    schema: &TypeDefinition,
    scope_mem: Option<&str>,
    mem_schemas: &HashMap<String, Arc<Schema>>,
) -> bool {
    // Same two-branch posture as `apply_equality_filters`:
    // - Field absent from this type but range-filterable on another
    //   reachable type → exclude (narrowing).
    // - Field declared on this type but NOT `Filterable::Range` (so `None`
    //   or `Equality`), OR absent here but declared only as
    //   non-range-filterable workspace-wide → pass through: a
    //   non-range-filterable field can't range-discriminate, so the range
    //   filter is a no-op and the result set equals the same search without
    //   it. The `FIELD_NOT_RANGE_FILTERABLE` warning still fires. The
    //   narrowing decision is keyed on range-filterability, not mere
    //   declaration.
    // Malformed keys (no `min_`/`max_`/`_before`/`_after`) and
    // workspace-wide-unknown fields pass through too.
    for (key, filter_value) in filters {
        let Some((field_name, op)) = parse_range_key(key) else {
            continue;
        };
        let Some(field_def) = schema.metadata_field(field_name) else {
            if classify_filter_field(field_name, scope_mem, mem_schemas, true)
                == FieldFilterability::Filterable
            {
                return false;
            }
            continue;
        };
        if field_def.filterable != Filterable::Range {
            // Declared but not range-filterable — truly ignore.
            continue;
        }

        let Some(val) = entity.metadata.get(field_name) else {
            return false;
        };
        let matched = match op {
            RangeOp::Min => compare_numeric(val, filter_value, |ev, fv| ev >= fv),
            RangeOp::Max => compare_numeric(val, filter_value, |ev, fv| ev <= fv),
            RangeOp::Before => val.to_frontmatter_string() <= *filter_value,
            RangeOp::After => val.to_frontmatter_string() >= *filter_value,
        };
        if !matched {
            return false;
        }
    }
    true
}

#[derive(Copy, Clone)]
enum RangeOp {
    Min,
    Max,
    Before,
    After,
}

fn parse_range_key(key: &str) -> Option<(&str, RangeOp)> {
    if let Some(field) = key.strip_prefix("min_") {
        Some((field, RangeOp::Min))
    } else if let Some(field) = key.strip_prefix("max_") {
        Some((field, RangeOp::Max))
    } else if let Some(field) = key.strip_suffix("_before") {
        Some((field, RangeOp::Before))
    } else {
        key.strip_suffix("_after")
            .map(|field| (field, RangeOp::After))
    }
}

/// Emit `STUB_FILTER_EXCLUDES_ALL` when both `stub=true` and `entity_type`
/// are set. Stubs carry `entity_type: ""` (see store_builder::make_stub),
/// so the combined filter excludes every stub by construction. Surfacing
/// the impossibility as a typed warning prevents an agent from reading an
/// empty hit set as "no such stub exists" when in fact no stub could ever
/// satisfy the filter.
fn collect_stub_type_exclusion_warning(scope: &SearchScope, warnings: &mut Vec<WarningHint>) {
    if scope.stub == Some(true)
        && let Some(entity_type) = scope.entity_type.as_deref()
    {
        warnings.push(WarningHint::StubFilterExcludesAll {
            entity_type: entity_type.to_string(),
        });
    }
}

fn collect_equality_filter_warnings(
    filters: &HashMap<String, String>,
    schema: &TypeDefinition,
    scoped_type: Option<&str>,
    scope_mem: Option<&str>,
    mem_schemas: &HashMap<String, Arc<Schema>>,
    warnings: &mut Vec<WarningHint>,
) {
    for (key, value) in filters {
        match schema.metadata_field(key) {
            None => {
                // Field not on the reference type (the scoped type, or the
                // engine fallback type in the unscoped case). Classify it
                // workspace-wide so the warning matches what the application
                // path did: a field declared only as non-filterable is
                // ignored (result = unfiltered) and must report
                // `FIELD_NOT_FILTERABLE`, not an "applied-with-narrowing"
                // code — the fallback type's accident of declaration does
                // not decide the outcome.
                match classify_filter_field(key, scope_mem, mem_schemas, false) {
                    FieldFilterability::DeclaredNotFilterable => {
                        warnings.push(WarningHint::FieldNotFilterable { field: key.clone() });
                    }
                    _ => {
                        let others = find_filter_declaring_types(key, scope_mem, mem_schemas);
                        warnings.push(WarningHint::UnknownFilterKey {
                            key: key.clone(),
                            scoped_type: scoped_type.map(|s| s.to_string()),
                            declared_on_other_types: others,
                        });
                    }
                }
            }
            Some(field_def) if field_def.filterable == Filterable::None => {
                warnings.push(WarningHint::FieldNotFilterable { field: key.clone() });
            }
            Some(field_def) => {
                // Filterable field. A comma-bearing value on a csv-array
                // field can never equal a single member (members are split
                // on comma), so the filter silently matches nothing —
                // surface the shape mismatch and the single-member form
                // (CLI F8). The filter still applies as written.
                if field_def.serialization == Serialization::CsvArray && value.contains(',') {
                    warnings.push(WarningHint::FilterValueMultiMember {
                        key: key.clone(),
                        value: value.clone(),
                    });
                }
                // #52: a value the field's `enum_values` allow-list rejects
                // can never match, so a 0-hit result would otherwise be
                // indistinguishable from a true no-match. Check per-member
                // for csv-array fields (each member is matched singly).
                if let Some(allowed) = field_def.enum_values.as_ref() {
                    let members: Vec<&str> = if field_def.serialization == Serialization::CsvArray {
                        value.split(',').map(str::trim).collect()
                    } else {
                        vec![value.as_str()]
                    };
                    for member in members {
                        if !member.is_empty() && !allowed.iter().any(|a| a == member) {
                            warnings.push(WarningHint::FilterValueNotInEnum {
                                key: key.clone(),
                                value: member.to_string(),
                                allowed: allowed.clone(),
                            });
                        }
                    }
                }
            }
        }
    }
}

fn collect_range_filter_warnings(
    filters: &HashMap<String, String>,
    schema: &TypeDefinition,
    scoped_type: Option<&str>,
    scope_mem: Option<&str>,
    mem_schemas: &HashMap<String, Arc<Schema>>,
    warnings: &mut Vec<WarningHint>,
) {
    for key in filters.keys() {
        let Some((field_name, _)) = parse_range_key(key) else {
            warnings.push(WarningHint::RangeFilterKeyMalformed { key: key.clone() });
            continue;
        };
        match schema.metadata_field(field_name) {
            None => {
                // Classify workspace-wide (range mode) so the warning
                // matches the application path: a field declared only as
                // non-range-filterable is ignored (result = unfiltered) and
                // reports `FIELD_NOT_RANGE_FILTERABLE`, not an
                // applied-with-narrowing code.
                match classify_filter_field(field_name, scope_mem, mem_schemas, true) {
                    FieldFilterability::DeclaredNotFilterable => {
                        warnings.push(WarningHint::FieldNotRangeFilterable {
                            field: field_name.to_string(),
                        });
                    }
                    _ => {
                        let others =
                            find_filter_declaring_types(field_name, scope_mem, mem_schemas);
                        warnings.push(WarningHint::UnknownRangeFilterField {
                            field: field_name.to_string(),
                            key: key.clone(),
                            scoped_type: scoped_type.map(|s| s.to_string()),
                            declared_on_other_types: others,
                        });
                    }
                }
            }
            Some(field_def) if field_def.filterable != Filterable::Range => {
                warnings.push(WarningHint::FieldNotRangeFilterable {
                    field: field_name.to_string(),
                });
            }
            Some(_) => {}
        }
    }
}

/// Resolve `entity_type` to a TypeDefinition by consulting the per-mem
/// schema map first (narrowed to `preferred_mem`'s schema if provided
/// and the type is declared there), then any reachable schema in the
/// map, then the builtin default. Used by both filter dispatch (where
/// the entity's mem drives resolution) and warning collection (where
/// the scope's mem narrows the reachable set).
fn resolve_type(
    entity_type: &str,
    preferred_mem: Option<&str>,
    mem_schemas: &HashMap<String, Arc<Schema>>,
) -> Option<Arc<TypeDefinition>> {
    if let Some(v) = preferred_mem
        && let Some(s) = mem_schemas.get(v)
        && let Some(t) = s.get_type(entity_type)
    {
        return Some(t);
    }
    for s in mem_schemas.values() {
        if let Some(t) = s.get_type(entity_type) {
            return Some(t);
        }
    }
    type_by_name(entity_type)
}

/// Locate every reachable type that declares `key` as a metadata
/// field, regardless of its `filterable` kind. `scope_mem = Some(v)`
/// narrows the search to that mem's pinned schema; `None` scans every
/// schema in `mem_schemas`. Empty return ⇒ no reachable schema
/// declares the filter at all — caller distinguishes the
/// "filter-on-other-type(s)" message from the "no-declaration-anywhere"
/// message based on the list length.
///
/// Multi-type result: when a filter (e.g. `status`) is declared on
/// several types with disjoint enum values, naming only the first
/// match sends the agent toward the wrong type — surface every
/// declaring type so the agent picks the right `--type` scope.
fn find_filter_declaring_types(
    key: &str,
    scope_mem: Option<&str>,
    mem_schemas: &HashMap<String, Arc<Schema>>,
) -> Vec<String> {
    let mut found: Vec<String> = Vec::new();
    let mut scan = |schema: &Schema| {
        for t in schema.types.values() {
            if t.metadata_field(key).is_some() && !found.contains(&t.name) {
                found.push(t.name.clone());
            }
        }
    };
    match scope_mem {
        Some(v) => {
            if let Some(s) = mem_schemas.get(v) {
                scan(s);
            }
        }
        None => {
            for s in mem_schemas.values() {
                scan(s);
            }
        }
    }
    found.sort();
    found
}

fn compare_numeric(
    val: &crate::entity::MetadataValue,
    filter_str: &str,
    cmp: impl Fn(f64, f64) -> bool,
) -> bool {
    let entity_num = match val {
        crate::entity::MetadataValue::Integer(n) => *n as f64,
        crate::entity::MetadataValue::Float(f) => *f,
        crate::entity::MetadataValue::String(s) => match s.parse::<f64>() {
            Ok(n) => n,
            Err(_) => return false,
        },
        _ => return false,
    };
    let filter_num = match filter_str.parse::<f64>() {
        Ok(n) => n,
        Err(_) => return false,
    };
    cmp(entity_num, filter_num)
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::entity::{Entity, EntityId, MetadataValue};
    use crate::search_index::MemIndex;
    use crate::store::Store;
    use indexmap::IndexMap;
    use memstead_schema::{Schema, type_by_name};

    fn make_entity(name: &str, mem: &str) -> Entity {
        let mut metadata = IndexMap::new();
        metadata.insert("level".into(), MetadataValue::String("M0".into()));
        metadata.insert("type".into(), MetadataValue::String("spec".into()));
        metadata.insert("tags".into(), MetadataValue::String("backend, api".into()));

        let mut sections = IndexMap::new();
        sections.insert("identity".into(), format!("Identity of {name}."));
        sections.insert("purpose".into(), format!("Purpose of {name}."));

        Entity {
            id: EntityId::new(mem, name),
            title: name.to_string(),
            entity_type: "spec".into(),
            mem: mem.into(),
            file_path: format!("{name}.md"),
            metadata,
            sections,
            relationships: Vec::new(),
            content_hash: "abc123".into(),
            stub: false,
            stub_kind: None,
            heading_spans: std::collections::HashMap::new(),
            raw_section_headings: Vec::new(),
        }
    }

    /// Build per-mem tantivy indexes from a store's contents. Used by the
    /// unit tests since the search path now goes through tantivy.
    fn build_test_indexes(
        store: &Store,
    ) -> (HashMap<String, MemIndex>, HashMap<String, Arc<Schema>>) {
        let schema = Schema::builtin_default();
        let mut indexes = HashMap::new();
        let mut schemas = HashMap::new();
        let mems: HashSet<String> = store
            .all_entities()
            .filter(|e| !e.stub)
            .map(|e| e.mem.clone())
            .collect();
        for mem in mems {
            let mut idx = MemIndex::build_in_ram(mem.clone(), Some(&schema)).unwrap();
            for e in store.all_entities().filter(|e| e.mem == mem) {
                idx.index_entity(e).unwrap();
            }
            idx.commit().unwrap();
            indexes.insert(mem.clone(), idx);
            schemas.insert(mem, schema.clone());
        }
        (indexes, schemas)
    }

    fn run_search(store: &Store, scope: &SearchScope) -> SearchResult {
        let (indexes, schemas) = build_test_indexes(store);
        let schema = type_by_name("spec").unwrap();
        search(store, scope, &schema, &indexes, &schemas)
    }

    /// The direction selector threads from `SearchScope` into BOTH
    /// walkers: `related_to` membership narrows per direction with the
    /// per-hop transitive-closure semantics, expanded hits report the
    /// traversal direction, and the default (`both`) returns the
    /// historical undirected set.
    #[test]
    fn search_direction_narrows_related_to_and_expansion() {
        // x --USES--> seed --USES--> y --USES--> z
        let mut store = Store::new();
        for n in ["x", "seed", "y", "z"] {
            let e = make_entity(n, "specs");
            store.upsert(e.id.clone(), e);
        }
        let id = |n: &str| EntityId(format!("specs--{n}"));
        let mut edge = |f: &str, t: &str| {
            store.add_edge(
                id(f),
                crate::store::Edge {
                    rel_type: "USES".into(),
                    target: id(t),
                    source: crate::store::EdgeSource::Explicit,
                },
            )
        };
        edge("x", "seed");
        edge("seed", "y");
        edge("y", "z");

        let titles = |r: &SearchResult| {
            let mut v: Vec<String> = r.hits.iter().map(|h| h.title.clone()).collect();
            v.sort();
            v
        };

        // related_to: both (the default) = undirected; out/in narrow.
        let base = SearchScope {
            related_to: Some(id("seed")),
            depth: Some(5),
            ..Default::default()
        };
        assert_eq!(titles(&run_search(&store, &base)), ["seed", "x", "y", "z"]);
        let out_scope = SearchScope {
            direction: crate::graph::query::TraversalDirection::Out,
            ..base.clone()
        };
        assert_eq!(
            titles(&run_search(&store, &out_scope)),
            ["seed", "y", "z"],
            "out = transitive descendants only, at every hop"
        );
        let in_scope = SearchScope {
            direction: crate::graph::query::TraversalDirection::In,
            ..base
        };
        assert_eq!(
            titles(&run_search(&store, &in_scope)),
            ["seed", "x"],
            "in = transitive ancestors only"
        );

        // expand_via: primary hit is `seed`; `out` expands to y and z
        // (via_direction Out at each), `in` expands to x only.
        let expand_base = SearchScope {
            query: Some(Query {
                any: vec!["seed".into()],
                ..Default::default()
            }),
            expand_via: Some(vec!["USES".into()]),
            expand_depth: Some(3),
            ..Default::default()
        };
        let out_result = run_search(
            &store,
            &SearchScope {
                direction: crate::graph::query::TraversalDirection::Out,
                ..expand_base.clone()
            },
        );
        let expanded: Vec<(String, String)> = out_result
            .hits
            .iter()
            .filter_map(|h| {
                h.expansion.as_ref().map(|e| {
                    (
                        h.title.clone(),
                        serde_json::to_value(e.via_direction)
                            .unwrap()
                            .as_str()
                            .unwrap()
                            .to_string(),
                    )
                })
            })
            .collect();
        let mut expanded_sorted = expanded.clone();
        expanded_sorted.sort();
        assert_eq!(
            expanded_sorted,
            [
                ("y".to_string(), "out".to_string()),
                ("z".to_string(), "out".to_string())
            ],
            "out-expansion reaches descendants only and reports the direction"
        );
        let in_result = run_search(
            &store,
            &SearchScope {
                direction: crate::graph::query::TraversalDirection::In,
                ..expand_base
            },
        );
        let expanded_in: Vec<String> = in_result
            .hits
            .iter()
            .filter(|h| h.expansion.is_some())
            .map(|h| h.title.clone())
            .collect();
        assert_eq!(expanded_in, ["x"], "in-expansion reaches ancestors only");
    }

    /// Plan 08 (metadata searchability): a value that exists only in an
    /// entity's metadata — declared filterable or not, declared at all
    /// or not — is returned by a free-text search; a metadata KEY finds
    /// its carriers; the hit is identifiable as a metadata match; a
    /// value that exists nowhere still returns zero; and where a term
    /// lives in both prose and metadata, the prose hit stays and ranks
    /// above the metadata-only hit (below-prose weight).
    #[test]
    fn search_finds_metadata_values_and_keys() {
        let mut store = Store::new();
        // `carrier` holds the identifier-shaped value in an UNDECLARED
        // metadata field (the default schema declares no `aktenzeichen`).
        let mut carrier = make_entity("carrier", "specs");
        carrier.metadata.insert(
            "aktenzeichen".into(),
            MetadataValue::String("20/54/033".into()),
        );
        store.upsert(carrier.id.clone(), carrier);
        // `prose` carries the shared term in its prose only.
        let mut prose = make_entity("prose", "specs");
        prose.sections.insert(
            "identity".into(),
            "shared-token lives in prose here.".into(),
        );
        store.upsert(prose.id.clone(), prose);
        // `meta-only` carries the shared term in metadata only.
        let mut meta_only = make_entity("meta-only", "specs");
        meta_only.metadata.insert(
            "note".into(),
            MetadataValue::String("shared-token via metadata".into()),
        );
        store.upsert(meta_only.id.clone(), meta_only);

        let q = |term: &str| SearchScope {
            query: Some(Query {
                any: vec![term.into()],
                ..Default::default()
            }),
            ..Default::default()
        };

        // The motivating case: the identifier-shaped value is found.
        let result = run_search(&store, &q("20/54/033"));
        assert_eq!(result.hits.len(), 1, "identifier found: {result:?}");
        assert_eq!(result.hits[0].title, "carrier");
        // …and the hit is identifiable as a metadata match.
        let matched = result.hits[0]
            .matched_terms
            .as_ref()
            .expect("matched_terms present");
        assert!(
            matched.values().flatten().any(|tm| tm.field == "metadata"),
            "metadata-only hit reports field \"metadata\": {matched:?}"
        );

        // The KEY finds its carrier too.
        let result = run_search(&store, &q("aktenzeichen"));
        assert_eq!(result.hits.len(), 1);
        assert_eq!(result.hits[0].title, "carrier");

        // A value that exists nowhere returns zero — no spurious matches.
        let result = run_search(&store, &q("99/99/999"));
        assert!(result.hits.is_empty(), "{result:?}");

        // Shared term: the prose hit stays present and ranks above the
        // metadata-only hit; the metadata hit is ADDED, nothing dropped.
        let result = run_search(&store, &q("shared-token"));
        let titles: Vec<&str> = result.hits.iter().map(|h| h.title.as_str()).collect();
        assert!(
            titles.contains(&"prose") && titles.contains(&"meta-only"),
            "{titles:?}"
        );
        let prose_pos = titles.iter().position(|t| *t == "prose").unwrap();
        let meta_pos = titles.iter().position(|t| *t == "meta-only").unwrap();
        assert!(
            prose_pos < meta_pos,
            "prose match ranks above the metadata-only match: {titles:?}"
        );
    }

    /// The metadata field is ADDITIVE only: an `--exclude` term that
    /// exists solely in an entity's metadata must NOT drop that entity
    /// from a prose query's results — exclusion consults prose fields
    /// only, so the pre-metadata-field result set never shrinks.
    /// (Grader counterexample from the plan-08 gate.)
    #[test]
    fn search_exclude_ignores_metadata_only_tokens() {
        let mut store = Store::new();
        let mut gamma = make_entity("gamma", "specs");
        gamma
            .sections
            .insert("identity".into(), "graphword appears here.".into());
        gamma.metadata.insert(
            "status_note".into(),
            MetadataValue::String("draftword".into()),
        );
        store.upsert(gamma.id.clone(), gamma);
        let mut delta = make_entity("delta", "specs");
        delta
            .sections
            .insert("identity".into(), "graphword also here.".into());
        store.upsert(delta.id.clone(), delta);

        let result = run_search(
            &store,
            &SearchScope {
                query: Some(Query {
                    any: vec!["graphword".into()],
                    not: vec!["draftword".into()],
                    ..Default::default()
                }),
                ..Default::default()
            },
        );
        let mut titles: Vec<&str> = result.hits.iter().map(|h| h.title.as_str()).collect();
        titles.sort();
        assert_eq!(
            titles,
            ["delta", "gamma"],
            "a metadata-only token must not exclude gamma"
        );

        // Complement: the same token in PROSE still excludes.
        let mut store2 = Store::new();
        let mut eps = make_entity("eps", "specs");
        eps.sections.insert(
            "identity".into(),
            "graphword and draftword in prose.".into(),
        );
        store2.upsert(eps.id.clone(), eps);
        let result = run_search(
            &store2,
            &SearchScope {
                query: Some(Query {
                    any: vec!["graphword".into()],
                    not: vec!["draftword".into()],
                    ..Default::default()
                }),
                ..Default::default()
            },
        );
        assert!(
            result.hits.is_empty(),
            "prose exclusion unchanged: {result:?}"
        );
    }

    #[test]
    fn search_by_title() {
        let mut store = Store::new();
        let e1 = make_entity("graph-engine", "specs");
        let e2 = make_entity("mcp-server", "specs");
        store.upsert(e1.id.clone(), e1);
        store.upsert(e2.id.clone(), e2);

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["graph".into()],
                ..Default::default()
            }),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
        assert_eq!(result.hits[0].id.name(), "graph-engine");
    }

    #[test]
    fn search_by_section_content() {
        let mut store = Store::new();
        let mut e = make_entity("test-entity", "specs");
        e.sections.insert(
            "identity".into(),
            "Uses the graph database for queries.".into(),
        );
        store.upsert(e.id.clone(), e);

        let scope = SearchScope {
            query: Some(Query {
                phrase: Some("graph database".into()),
                ..Default::default()
            }),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
    }

    #[test]
    fn search_with_mem_filter() {
        let mut store = Store::new();
        store.upsert(EntityId::new("specs", "a"), make_entity("a", "specs"));
        store.upsert(EntityId::new("memos", "b"), make_entity("b", "memos"));

        let scope = SearchScope {
            mem: Some("specs".into()),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
        assert_eq!(result.hits[0].mem, "specs");
    }

    #[test]
    fn search_with_equality_filter() {
        let mut store = Store::new();
        let mut e1 = make_entity("m0-entity", "specs");
        e1.metadata
            .insert("level".into(), MetadataValue::String("M0".into()));
        let mut e2 = make_entity("m1-entity", "specs");
        e2.metadata
            .insert("level".into(), MetadataValue::String("M1".into()));
        store.upsert(e1.id.clone(), e1);
        store.upsert(e2.id.clone(), e2);

        let scope = SearchScope {
            filters: HashMap::from([("level".into(), "M0".into())]),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
        assert_eq!(result.hits[0].id.name(), "m0-entity");
        assert!(result.warnings.is_empty(), "no warnings for valid filter");
    }

    #[test]
    fn search_unknown_filter_key_warns_and_keeps_hits() {
        let mut store = Store::new();
        let e1 = make_entity("m0-entity", "specs");
        let e2 = make_entity("m1-entity", "specs");
        store.upsert(e1.id.clone(), e1);
        store.upsert(e2.id.clone(), e2);

        let scope = SearchScope {
            filters: HashMap::from([("stauts".into(), "active".into())]),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(
            result.total, 2,
            "unknown filter should be skipped, not reject all entities"
        );
        assert_eq!(result.warnings.len(), 1);
        assert!(
            result.warnings[0].to_string().contains("stauts")
                && result.warnings[0].to_string().contains("unknown"),
            "warning mentions unknown key: {:?}",
            result.warnings
        );
    }

    /// F7: a search scoped to entity_type=T with an unknown filter
    /// key must name `T` in the warning, not the schema's default
    /// type. Pre-fix the warning generator used the resolved
    /// `filter_schema.name` (the default type when `T` doesn't
    /// resolve), which read as if the search had been scoped to that
    /// unrelated type and cost an agent round-trip while they
    /// figured out the mismatch.
    #[test]
    fn search_unknown_filter_key_names_scoped_entity_type() {
        let mut store = Store::new();
        let e = make_entity("only", "specs");
        store.upsert(e.id.clone(), e);

        let scope = SearchScope {
            entity_type: Some("contract".into()),
            filters: HashMap::from([("confidence".into(), "verified".into())]),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(result.warnings.len(), 1, "{:?}", result.warnings);
        let warning = result.warnings[0].to_string();
        assert!(
            warning.contains("'contract'"),
            "warning must name the agent's scoped type: {warning}",
        );
        assert!(
            !warning.contains("'spec'"),
            "warning must not name an unrelated default type: {warning}",
        );
    }

    /// F7: when the caller did NOT scope the search to any
    /// entity_type, the warning must omit the "for type 'X'" clause
    /// rather than name the schema's default type — the user didn't
    /// ask about any specific type, so naming one in the warning is
    /// misleading.
    #[test]
    fn search_unknown_filter_key_omits_type_when_no_scope() {
        let mut store = Store::new();
        let e = make_entity("only", "specs");
        store.upsert(e.id.clone(), e);

        let scope = SearchScope {
            filters: HashMap::from([("confidence".into(), "verified".into())]),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(result.warnings.len(), 1, "{:?}", result.warnings);
        let warning = result.warnings[0].to_string();
        assert!(
            warning.contains("confidence"),
            "warning must name the unknown key: {warning}",
        );
        assert!(
            !warning.contains("for type"),
            "warning must omit the type-name clause when caller didn't scope: {warning}",
        );
    }

    /// F7 (range sibling): the range-filter warning has the same
    /// scoped-type contract as its equality cousin.
    #[test]
    fn search_unknown_range_filter_names_scoped_entity_type() {
        let mut store = Store::new();
        let e = make_entity("only", "specs");
        store.upsert(e.id.clone(), e);

        let scope = SearchScope {
            entity_type: Some("contract".into()),
            range_filters: HashMap::from([("min_priority".into(), "0".into())]),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(result.warnings.len(), 1, "{:?}", result.warnings);
        let warning = result.warnings[0].to_string();
        assert!(
            warning.contains("'contract'"),
            "range warning must name the agent's scoped type: {warning}",
        );
        assert!(
            !warning.contains("'spec'"),
            "range warning must not name an unrelated default type: {warning}",
        );
    }

    /// Strict semantics — a filter on `level` (declared by `spec`)
    /// excludes entities whose type doesn't declare the field. A
    /// non-narrowing variant would pass all entities through and the
    /// result would lie about what matched.
    #[test]
    fn search_equality_filter_excludes_types_without_declared_field() {
        let mut store = Store::new();
        // Spec entity with the filter field set — must match.
        let mut spec_match = make_entity("level-m0", "specs");
        spec_match
            .metadata
            .insert("level".into(), MetadataValue::String("M0".into()));
        // Spec entity with the field set to a different value — must
        // be excluded by the value check.
        let mut spec_other = make_entity("level-m1", "specs");
        spec_other
            .metadata
            .insert("level".into(), MetadataValue::String("M1".into()));
        // Memo-typed entity that doesn't declare `level`. It's excluded
        // because the workspace-wide schema knows `level`.
        let mut memo = make_entity("memo-no-level", "specs");
        memo.entity_type = "memo".into();
        store.upsert(spec_match.id.clone(), spec_match.clone());
        store.upsert(spec_other.id.clone(), spec_other);
        store.upsert(memo.id.clone(), memo);

        let scope = SearchScope {
            filters: HashMap::from([("level".into(), "M0".into())]),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(
            result.total,
            1,
            "strict filter must keep only the matching spec entity; got {:?}",
            result
                .hits
                .iter()
                .map(|h| h.id.to_string())
                .collect::<Vec<_>>(),
        );
        assert_eq!(result.hits[0].id, spec_match.id);
    }

    /// A workspace-wide-unknown filter key continues to warn and pass
    /// through (no result collapse on a single typo). Companion to the
    /// type-aware exclusion test
    /// above — exercises the unknown-key fallback gate inside
    /// `classify_filter_field` (the `Unknown` verdict passes through).
    #[test]
    fn search_workspace_wide_unknown_filter_passes_through() {
        let mut store = Store::new();
        let e = make_entity("only", "specs");
        store.upsert(e.id.clone(), e);

        let scope = SearchScope {
            filters: HashMap::from([("definitely-not-a-real-field".into(), "x".into())]),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(
            result.total,
            1,
            "unknown-anywhere filter key must not collapse the result set; got {:?}",
            result
                .hits
                .iter()
                .map(|h| h.id.to_string())
                .collect::<Vec<_>>(),
        );
        assert!(
            result
                .warnings
                .iter()
                .any(|w| w.to_string().contains("definitely-not-a-real-field")),
            "unknown-key warning must still surface: {:?}",
            result.warnings,
        );
    }

    #[test]
    fn search_non_filterable_field_ignored_returns_unfiltered() {
        // MCP F2: a filter on a field declared but marked
        // `Filterable::None` (here, the
        // universal `type` base field) is truly ignored — the result
        // set equals the same search without the filter, NOT an empty
        // set. Pre-fix this branch `return false`d and emptied the set
        // under a "filter ignored" banner; the warning's word and the
        // behaviour disagreed. The `FIELD_NOT_FILTERABLE` warning still
        // fires so the agent knows the filter had no effect.
        let mut store = Store::new();
        store.upsert(EntityId::new("specs", "a"), make_entity("a", "specs"));
        store.upsert(EntityId::new("specs", "b"), make_entity("b", "specs"));

        let scope = SearchScope {
            filters: HashMap::from([("type".into(), "totally-different".into())]),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(
            result.total, 2,
            "non-filterable field filter must be ignored — result equals the unfiltered search, not emptied",
        );
        assert_eq!(result.warnings.len(), 1);
        assert_eq!(
            result.warnings[0].code(),
            "FIELD_NOT_FILTERABLE",
            "non-filterable field must still warn so the agent knows the filter had no effect: {:?}",
            result.warnings,
        );
    }

    /// A search scoped to a type with a filter on a field that type
    /// declares but marks
    /// non-filterable returns the SAME hits as the same search without
    /// the filter — "ignored" means unfiltered, not emptied — plus a
    /// `FIELD_NOT_FILTERABLE` warning. The code/effect is coherent in
    /// the scoped shape just as in the unscoped shape above.
    #[test]
    fn search_scoped_non_filterable_field_matches_unfiltered() {
        let mut store = Store::new();
        store.upsert(EntityId::new("specs", "a"), make_entity("a", "specs"));
        store.upsert(EntityId::new("specs", "b"), make_entity("b", "specs"));

        let baseline = run_search(
            &store,
            &SearchScope {
                entity_type: Some("spec".into()),
                ..Default::default()
            },
        );
        let filtered = run_search(
            &store,
            &SearchScope {
                entity_type: Some("spec".into()),
                filters: HashMap::from([("type".into(), "irrelevant".into())]),
                ..Default::default()
            },
        );
        assert_eq!(
            filtered.total, baseline.total,
            "non-filterable filter must leave the scoped result set identical to the unfiltered search",
        );
        assert_eq!(filtered.total, 2);
        assert!(
            filtered
                .warnings
                .iter()
                .any(|w| w.code() == "FIELD_NOT_FILTERABLE"),
            "scoped non-filterable filter must warn FIELD_NOT_FILTERABLE: {:?}",
            filtered.warnings,
        );
    }

    /// An unscoped filter on a field that IS filterable on some type
    /// (here `maturity` on
    /// `concept`) narrows the result to the declaring type and carries
    /// `FILTER_TYPE_SCOPED` — a code distinct from the truly-unknown-key
    /// code, so a consumer branching on `code` alone learns the filter
    /// took effect.
    #[test]
    fn search_unscoped_filterable_field_narrows_with_distinct_code() {
        let mut store = Store::new();
        // Two concept entities, one matching the filter value.
        let mut c_match = make_entity("c-emerging", "specs");
        c_match.entity_type = "concept".into();
        c_match
            .metadata
            .insert("maturity".into(), MetadataValue::String("emerging".into()));
        let mut c_other = make_entity("c-stable", "specs");
        c_other.entity_type = "concept".into();
        c_other
            .metadata
            .insert("maturity".into(), MetadataValue::String("stable".into()));
        // A spec entity that doesn't declare `maturity` — narrowed away.
        let spec = make_entity("s", "specs");
        store.upsert(c_match.id.clone(), c_match.clone());
        store.upsert(c_other.id.clone(), c_other);
        store.upsert(spec.id.clone(), spec);

        let result = run_search(
            &store,
            &SearchScope {
                filters: HashMap::from([("maturity".into(), "emerging".into())]),
                ..Default::default()
            },
        );
        assert_eq!(
            result.total, 1,
            "only the matching concept survives the narrowing"
        );
        assert_eq!(result.hits[0].id, c_match.id);
        assert_eq!(result.warnings.len(), 1, "{:?}", result.warnings);
        assert_eq!(
            result.warnings[0].code(),
            "FILTER_TYPE_SCOPED",
            "applied-with-narrowing must carry a code distinct from UNKNOWN_FILTER_KEY: {:?}",
            result.warnings,
        );
    }

    /// MCP F3: an UNSCOPED filter on a field that is declared only as
    /// **non-filterable** (`source_quality`
    /// on `assertion`, `Filterable::None`) is ignored, not type-narrowed —
    /// the result equals the same search without the filter (the spec
    /// entities are retained, not silently dropped to the declaring type) —
    /// and the warning reports `FIELD_NOT_FILTERABLE`, not the
    /// `FILTER_TYPE_SCOPED` "applied-with-narrowing" code it carried pre-fix
    /// (which lied: no value predicate ever ran). Filterability, not the
    /// fallback type's accident of declaration, decides the outcome.
    #[test]
    fn search_unscoped_non_filterable_field_ignored_not_narrowed() {
        let mut store = Store::new();
        let mut assertion = make_entity("a-claim", "specs");
        assertion.entity_type = "assertion".into();
        assertion.metadata.insert(
            "source_quality".into(),
            MetadataValue::String("experimental".into()),
        );
        store.upsert(assertion.id.clone(), assertion);
        store.upsert(EntityId::new("specs", "s1"), make_entity("s1", "specs"));
        store.upsert(EntityId::new("specs", "s2"), make_entity("s2", "specs"));

        let baseline = run_search(&store, &SearchScope::default());

        // Both a wrong value and the assertion's real value must return the
        // same set as the unfiltered baseline — the filter is ignored, the
        // value is never matched. This is the discriminator that separates
        // "ignored" from "narrowed".
        for value in ["WRONG-VALUE", "experimental"] {
            let result = run_search(
                &store,
                &SearchScope {
                    filters: HashMap::from([("source_quality".into(), value.into())]),
                    ..Default::default()
                },
            );
            assert_eq!(
                result.total, baseline.total,
                "non-filterable filter (value={value}) must return the unfiltered set, not narrow to the declaring type",
            );
            assert_eq!(result.total, 3);
            assert_eq!(result.warnings.len(), 1, "{:?}", result.warnings);
            assert_eq!(
                result.warnings[0].code(),
                "FIELD_NOT_FILTERABLE",
                "unscoped non-filterable field must report FIELD_NOT_FILTERABLE, not FILTER_TYPE_SCOPED: {:?}",
                result.warnings,
            );
        }
    }

    /// MCP F4 (range): an UNSCOPED range filter on a field no type
    /// declares as range-filterable does
    /// not drop the types that lack the field. `level` is `Filterable::
    /// Equality` on `spec`; a `min_level` range filter is ignored, so a
    /// `memo` entity (which doesn't declare `level`) is retained rather than
    /// silently narrowed away — the warning's "ignored" word now matches the
    /// result set.
    #[test]
    fn search_unscoped_non_range_filterable_field_not_dropped() {
        let mut store = Store::new();
        store.upsert(EntityId::new("specs", "s1"), make_entity("s1", "specs"));
        let mut memo = make_entity("m1", "specs");
        memo.entity_type = "memo".into();
        memo.metadata.shift_remove("level");
        store.upsert(memo.id.clone(), memo);

        let result = run_search(
            &store,
            &SearchScope {
                range_filters: HashMap::from([("min_level".into(), "M0".into())]),
                ..Default::default()
            },
        );
        assert_eq!(
            result.total,
            2,
            "non-range-filterable range filter must not drop the memo lacking the field; got {:?}",
            result
                .hits
                .iter()
                .map(|h| h.id.to_string())
                .collect::<Vec<_>>(),
        );
        assert!(
            result
                .warnings
                .iter()
                .any(|w| w.code() == "FIELD_NOT_RANGE_FILTERABLE"),
            "must warn FIELD_NOT_RANGE_FILTERABLE: {:?}",
            result.warnings,
        );
    }

    /// Range warning, fallback-type independence: an unscoped range
    /// filter on a field the engine fallback type does NOT declare but
    /// another type declares as
    /// equality-only (`maturity` on `concept`) reports
    /// `FIELD_NOT_RANGE_FILTERABLE` — keyed on workspace-wide
    /// range-filterability, not on whether the fallback type happens to
    /// declare it (pre-fix it emitted `RANGE_FILTER_TYPE_SCOPED`).
    #[test]
    fn search_unscoped_range_on_equality_only_other_type_field() {
        let mut store = Store::new();
        let mut concept = make_entity("c1", "specs");
        concept.entity_type = "concept".into();
        concept
            .metadata
            .insert("maturity".into(), MetadataValue::String("stable".into()));
        store.upsert(concept.id.clone(), concept);
        store.upsert(EntityId::new("specs", "s1"), make_entity("s1", "specs"));

        let result = run_search(
            &store,
            &SearchScope {
                range_filters: HashMap::from([("min_maturity".into(), "stable".into())]),
                ..Default::default()
            },
        );
        assert_eq!(
            result.total, 2,
            "non-range-filterable field range filter must leave the set unfiltered",
        );
        assert!(
            result
                .warnings
                .iter()
                .any(|w| w.code() == "FIELD_NOT_RANGE_FILTERABLE"),
            "must warn FIELD_NOT_RANGE_FILTERABLE (not RANGE_FILTER_TYPE_SCOPED): {:?}",
            result.warnings,
        );
    }

    /// A truly-unknown filter key (no reachable schema declares it) runs
    /// the query unfiltered
    /// and carries `UNKNOWN_FILTER_KEY` — the only "ignored" code whose
    /// result set equals the unfiltered search via an unknown key.
    #[test]
    fn search_truly_unknown_key_ignored_with_unknown_code() {
        let mut store = Store::new();
        store.upsert(EntityId::new("specs", "a"), make_entity("a", "specs"));
        store.upsert(EntityId::new("specs", "b"), make_entity("b", "specs"));

        let result = run_search(
            &store,
            &SearchScope {
                filters: HashMap::from([("boguskey".into(), "x".into())]),
                ..Default::default()
            },
        );
        assert_eq!(
            result.total, 2,
            "truly-unknown key must leave the result set unfiltered"
        );
        assert_eq!(result.warnings.len(), 1);
        assert_eq!(
            result.warnings[0].code(),
            "UNKNOWN_FILTER_KEY",
            "a key no schema declares must carry UNKNOWN_FILTER_KEY: {:?}",
            result.warnings,
        );
    }

    /// Range complement: a range filter on a field declared but not
    /// range-filterable
    /// (`level` is `filterable: equality`) is truly ignored — the
    /// result equals the same search without it — and carries
    /// `FIELD_NOT_RANGE_FILTERABLE`, not a silent empty.
    #[test]
    fn search_non_range_filterable_field_ignored_returns_unfiltered() {
        let mut store = Store::new();
        store.upsert(EntityId::new("specs", "a"), make_entity("a", "specs"));
        store.upsert(EntityId::new("specs", "b"), make_entity("b", "specs"));

        let result = run_search(
            &store,
            &SearchScope {
                entity_type: Some("spec".into()),
                range_filters: HashMap::from([("min_level".into(), "M0".into())]),
                ..Default::default()
            },
        );
        assert_eq!(
            result.total, 2,
            "non-range-filterable field range filter must be ignored, not empty the set",
        );
        assert!(
            result
                .warnings
                .iter()
                .any(|w| w.code() == "FIELD_NOT_RANGE_FILTERABLE"),
            "must warn FIELD_NOT_RANGE_FILTERABLE: {:?}",
            result.warnings,
        );
    }

    #[test]
    fn search_range_filter_unknown_field_warns() {
        let mut store = Store::new();
        let e = make_entity("only", "specs");
        store.upsert(e.id.clone(), e);

        let scope = SearchScope {
            range_filters: HashMap::from([("min_nonexistent".into(), "0".into())]),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(
            result.total, 1,
            "unknown range field should be skipped, not reject all entities"
        );
        assert_eq!(result.warnings.len(), 1);
        assert!(
            result.warnings[0].to_string().contains("nonexistent"),
            "warning mentions unknown range field: {:?}",
            result.warnings
        );
    }

    #[test]
    fn list_unknown_filter_key_warns() {
        let mut store = Store::new();
        store.upsert(EntityId::new("specs", "a"), make_entity("a", "specs"));

        let schema = type_by_name("spec").unwrap();
        let scope = SearchScope {
            filters: HashMap::from([("nope".into(), "x".into())]),
            ..Default::default()
        };

        let schemas: HashMap<String, Arc<Schema>> = HashMap::new();
        let result = list(&store, &scope, &schema, &schemas);
        assert_eq!(result.total, 1);
        assert_eq!(result.warnings.len(), 1);
    }

    #[test]
    fn token_budget_trims_overflowing_page_and_warns() {
        let mut store = Store::new();
        for i in 0..20 {
            let mut e = make_entity(&format!("entity-{i:02}"), "specs");
            e.sections.insert("identity".into(), "graph ".repeat(50));
            store.upsert(e.id.clone(), e);
        }

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["graph".into()],
                ..Default::default()
            }),
            // Tiny budget: a single hit already exceeds it, so the page must
            // trim to exactly one and warn.
            token_budget: Some(20),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(result.total, 20, "total reflects the full match count");
        assert!(result.returned >= 1, "at least one hit always returns");
        assert!(result.returned < 20, "the page was trimmed by the budget");
        assert_eq!(result.hits.len(), result.returned);
        let trunc = result
            .warnings
            .iter()
            .find(|w| w.code() == "SEARCH_RESULTS_TRUNCATED")
            .expect("budget trim emits SEARCH_RESULTS_TRUNCATED");
        assert!(trunc.message().contains("budget"));
    }

    #[test]
    fn ample_budget_returns_all_hits_without_warning() {
        let mut store = Store::new();
        for i in 0..5 {
            let mut e = make_entity(&format!("entity-{i}"), "specs");
            e.sections.insert("identity".into(), "graph".into());
            store.upsert(e.id.clone(), e);
        }
        let scope = SearchScope {
            query: Some(Query {
                any: vec!["graph".into()],
                ..Default::default()
            }),
            token_budget: Some(1_000_000),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.returned, 5);
        assert!(
            result
                .warnings
                .iter()
                .all(|w| w.code() != "SEARCH_RESULTS_TRUNCATED"),
            "an ample budget does not trim"
        );
    }

    #[test]
    fn search_hits_carry_no_section_bodies() {
        let mut store = Store::new();
        store.upsert(EntityId::new("specs", "a"), make_entity("a", "specs"));
        let scope = SearchScope {
            query: Some(Query {
                any: vec!["Identity".into()],
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
        assert!(
            result.hits[0].sections.is_empty(),
            "search hits ship no section bodies — read them with memstead_entity"
        );
        // The lead-section summary is still resolved from the entity.
        assert!(result.hits[0].summary.is_some(), "summary still resolved");
    }

    #[test]
    fn list_hits_still_carry_section_bodies() {
        let mut store = Store::new();
        store.upsert(EntityId::new("specs", "a"), make_entity("a", "specs"));
        let schema = type_by_name("spec").unwrap();
        let schemas: HashMap<String, Arc<Schema>> = HashMap::new();
        let result = list(&store, &SearchScope::default(), &schema, &schemas);
        assert_eq!(result.total, 1);
        assert!(
            !result.hits[0].sections.is_empty(),
            "list hits keep section bodies for human-facing roster consumers"
        );
    }

    #[test]
    fn search_csv_array_filter() {
        let mut store = Store::new();
        let mut e = make_entity("tagged", "specs");
        e.metadata.insert(
            "tags".into(),
            MetadataValue::String("backend, api, rust".into()),
        );
        store.upsert(e.id.clone(), e);

        let scope = SearchScope {
            filters: HashMap::from([("tags".into(), "api".into())]),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
    }

    #[test]
    fn search_pagination() {
        let mut store = Store::new();
        for i in 0..10 {
            let e = make_entity(&format!("entity-{i:02}"), "specs");
            store.upsert(e.id.clone(), e);
        }

        let scope = SearchScope {
            limit: Some(3),
            offset: Some(2),
            ..Default::default()
        };

        let result = run_search(&store, &scope);
        assert_eq!(result.total, 10);
        assert_eq!(result.returned, 3);
        assert_eq!(result.offset, 2);
    }

    #[test]
    fn list_entities() {
        let mut store = Store::new();
        store.upsert(EntityId::new("specs", "a"), make_entity("a", "specs"));
        store.upsert(EntityId::new("specs", "b"), make_entity("b", "specs"));

        let schema = type_by_name("spec").unwrap();
        let scope = SearchScope::default();

        let schemas: HashMap<String, Arc<Schema>> = HashMap::new();
        let result = list(&store, &scope, &schema, &schemas);
        assert_eq!(result.total, 2);
        assert!(result.total_tokens > 0);
    }

    #[test]
    fn build_snippet_basic() {
        let content = "The graph engine processes queries efficiently.";
        let snippet = build_snippet(content, "engine");
        assert!(snippet.contains("**engine**"));
    }

    // ---- Structured-query semantics ----

    #[test]
    fn query_any_or_semantics() {
        let mut store = Store::new();
        let mut a = make_entity("a", "specs");
        a.sections
            .insert("identity".into(), "authentication flow".into());
        let mut b = make_entity("b", "specs");
        b.sections
            .insert("identity".into(), "login pipeline".into());
        let mut c = make_entity("c", "specs");
        c.sections
            .insert("identity".into(), "unrelated subject".into());
        store.upsert(a.id.clone(), a);
        store.upsert(b.id.clone(), b);
        store.upsert(c.id.clone(), c);

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["authentication".into(), "login".into()],
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let names: Vec<_> = result
            .hits
            .iter()
            .map(|h| h.id.name().to_string())
            .collect();
        assert_eq!(result.total, 2, "union of any terms: {names:?}");
        assert!(names.contains(&"a".to_string()));
        assert!(names.contains(&"b".to_string()));
    }

    #[test]
    fn query_not_excludes() {
        let mut store = Store::new();
        let mut a = make_entity("a", "specs");
        a.sections
            .insert("identity".into(), "uses authentication".into());
        let mut b = make_entity("b", "specs");
        b.sections
            .insert("identity".into(), "uses authentication mock".into());
        store.upsert(a.id.clone(), a);
        store.upsert(b.id.clone(), b);

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["authentication".into()],
                not: vec!["mock".into()],
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
        assert_eq!(result.hits[0].id.name(), "a");
    }

    #[test]
    fn query_phrase_match() {
        let mut store = Store::new();
        let mut a = make_entity("a", "specs");
        a.sections.insert(
            "identity".into(),
            "the client side agent runs locally".into(),
        );
        let mut b = make_entity("b", "specs");
        b.sections.insert(
            "identity".into(),
            "the client invokes the side channel for the agent".into(),
        );
        store.upsert(a.id.clone(), a);
        store.upsert(b.id.clone(), b);

        let scope = SearchScope {
            query: Some(Query {
                phrase: Some("client side agent".into()),
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
        assert_eq!(result.hits[0].id.name(), "a");
    }

    #[test]
    fn query_field_restricted() {
        let mut store = Store::new();
        let mut a = make_entity("a", "specs");
        a.sections.insert("identity".into(), "foo content".into());
        let mut b = make_entity("b", "specs");
        b.sections.insert("purpose".into(), "foo content".into());
        store.upsert(a.id.clone(), a);
        store.upsert(b.id.clone(), b);

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["foo".into()],
                field: Some("identity".into()),
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
        assert_eq!(result.hits[0].id.name(), "a");
    }

    #[test]
    fn query_empty_is_metadata_filter() {
        let mut store = Store::new();
        let mut memo_entity = make_entity("m", "specs");
        memo_entity.entity_type = "memo".into();
        store.upsert(memo_entity.id.clone(), memo_entity);
        store.upsert(EntityId::new("specs", "s1"), make_entity("s1", "specs"));
        store.upsert(EntityId::new("specs", "s2"), make_entity("s2", "specs"));

        let scope = SearchScope {
            query: Some(Query::default()),
            entity_type: Some("spec".into()),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(
            result.total, 2,
            "empty query ⇒ metadata filter over entity_type"
        );
    }

    #[test]
    fn query_diacritic_folding() {
        let mut store = Store::new();
        let mut a = make_entity("a", "specs");
        a.sections.insert("identity".into(), "schöne Häuser".into());
        store.upsert(a.id.clone(), a);

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["hauser".into()],
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
    }

    #[test]
    fn query_spans_all_mems_when_mem_none() {
        let mut store = Store::new();
        let mut a = make_entity("a", "specs");
        a.sections.insert("identity".into(), "foo".into());
        let mut b = make_entity("b", "memos");
        b.sections.insert("identity".into(), "foo".into());
        store.upsert(a.id.clone(), a);
        store.upsert(b.id.clone(), b);

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["foo".into()],
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 2);
    }

    #[test]
    fn query_targets_single_mem_when_named() {
        let mut store = Store::new();
        let mut a = make_entity("a", "specs");
        a.sections.insert("identity".into(), "foo".into());
        let mut b = make_entity("b", "memos");
        b.sections.insert("identity".into(), "foo".into());
        store.upsert(a.id.clone(), a);
        store.upsert(b.id.clone(), b);

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["foo".into()],
                ..Default::default()
            }),
            mem: Some("memos".into()),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
        assert_eq!(result.hits[0].mem, "memos");
    }

    // ---- matched_terms + score_breakdown + heading_path ----

    use crate::entity::HeadingSpan;

    #[test]
    fn matched_terms_populated_for_any() {
        let mut store = Store::new();
        let mut a = make_entity("a", "specs");
        a.sections
            .insert("identity".into(), "auth flow uses oidc sessions".into());
        store.upsert(a.id.clone(), a);

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["auth".into(), "oidc".into()],
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
        let hit = &result.hits[0];
        let mt = hit.matched_terms.as_ref().expect("matched_terms populated");
        assert!(mt.contains_key("auth"), "auth keyed: {mt:?}");
        assert!(mt.contains_key("oidc"), "oidc keyed: {mt:?}");
    }

    #[test]
    fn matched_terms_per_field() {
        let mut store = Store::new();
        let mut a = make_entity("graph-engine", "specs");
        a.sections.insert(
            "identity".into(),
            "graph-engine uses graph primitives".into(),
        );
        store.upsert(a.id.clone(), a);

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["graph".into()],
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let hit = &result.hits[0];
        let mt = hit.matched_terms.as_ref().unwrap();
        let fields: Vec<&str> = mt["graph"].iter().map(|tm| tm.field.as_str()).collect();
        assert!(fields.contains(&"title"), "title field: {fields:?}");
        assert!(fields.contains(&"identity"), "identity field: {fields:?}");
    }

    #[test]
    fn matched_terms_excludes_not_terms() {
        let mut store = Store::new();
        let mut a = make_entity("a", "specs");
        a.sections
            .insert("identity".into(), "uses authentication".into());
        store.upsert(a.id.clone(), a);

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["authentication".into()],
                not: vec!["mock".into()],
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let hit = &result.hits[0];
        let mt = hit.matched_terms.as_ref().unwrap();
        assert!(mt.contains_key("authentication"));
        assert!(
            !mt.contains_key("mock"),
            "negative predicate must not populate matched_terms: {mt:?}"
        );
    }

    #[test]
    fn score_breakdown_sums_to_score() {
        let mut store = Store::new();
        let mut a = make_entity("a", "specs");
        a.sections
            .insert("identity".into(), "graph engine core".into());
        store.upsert(a.id.clone(), a);

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["graph".into()],
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let hit = &result.hits[0];
        let br = hit.score_breakdown.as_ref().expect("breakdown populated");
        let sum: f32 = br.bm25 + br.title_boost + br.field_weights.values().sum::<f32>();
        assert!(
            (sum - hit.score).abs() < 0.01,
            "components should sum to score: sum={sum} score={}",
            hit.score
        );
    }

    #[test]
    fn phrase_snippet_contains_full_phrase() {
        let mut store = Store::new();
        let mut a = make_entity("a", "specs");
        a.sections.insert(
            "identity".into(),
            "the client side agent runs locally".into(),
        );
        store.upsert(a.id.clone(), a);

        let scope = SearchScope {
            query: Some(Query {
                phrase: Some("client side agent".into()),
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let hit = &result.hits[0];
        let mt = hit.matched_terms.as_ref().unwrap();
        let matches = mt
            .get("client side agent")
            .expect("phrase term keyed in matched_terms");
        let identity_snippet = matches
            .iter()
            .find(|tm| tm.field == "identity")
            .expect("phrase matched in identity");
        assert!(
            identity_snippet.snippet.contains("client side agent"),
            "snippet must contain full phrase: {}",
            identity_snippet.snippet
        );
    }

    fn entity_with_heading_spans(
        name: &str,
        section_key: &str,
        content: &str,
        spans: Vec<HeadingSpan>,
    ) -> Entity {
        let mut e = make_entity(name, "specs");
        e.sections
            .insert(section_key.to_string(), content.to_string());
        e.heading_spans.insert(section_key.to_string(), spans);
        e
    }

    #[test]
    fn heading_path_none_when_match_above_first_subheading() {
        // H3 starts at offset 20 in the section content; match "anchor" is at offset 4 (before).
        let content = "the anchor word here\n### Later Heading\nmore text";
        let h3_offset = content.find("### Later Heading").unwrap();
        let spans = vec![HeadingSpan {
            level: 3,
            title: "Later Heading".into(),
            start_offset: h3_offset,
            end_offset: content.len(),
        }];
        let mut store = Store::new();
        store.upsert(
            EntityId::new("specs", "a"),
            entity_with_heading_spans("a", "identity", content, spans),
        );

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["anchor".into()],
                field: Some("identity".into()),
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let mt = result.hits[0].matched_terms.as_ref().unwrap();
        let tm = &mt["anchor"][0];
        assert!(
            tm.heading_path.is_none(),
            "match above first subheading ⇒ no heading_path: {:?}",
            tm.heading_path
        );
    }

    #[test]
    fn heading_path_single_level() {
        // Match under one H3.
        let content = "### Response Shapes\nhandles unique keyword here\n";
        let spans = vec![HeadingSpan {
            level: 3,
            title: "Response Shapes".into(),
            start_offset: 0,
            end_offset: content.len(),
        }];
        let mut store = Store::new();
        store.upsert(
            EntityId::new("specs", "a"),
            entity_with_heading_spans("a", "identity", content, spans),
        );

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["unique".into()],
                field: Some("identity".into()),
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let mt = result.hits[0].matched_terms.as_ref().unwrap();
        let tm = &mt["unique"][0];
        assert_eq!(
            tm.heading_path,
            Some(vec!["Response Shapes".into()]),
            "single-level path under one H3"
        );
    }

    #[test]
    fn heading_path_nested_h3_h4() {
        // Section content:
        //   ### Response Shapes
        //   some text
        //   #### Markdown Output
        //   match distinct-keyword here
        let mut content = String::new();
        content.push_str("### Response Shapes\n");
        content.push_str("some text\n");
        let h4_start = content.len();
        content.push_str("#### Markdown Output\n");
        let payload_start = content.len();
        content.push_str("distinct-keyword is below\n");
        let spans = vec![
            HeadingSpan {
                level: 3,
                title: "Response Shapes".into(),
                start_offset: 0,
                end_offset: content.len(),
            },
            HeadingSpan {
                level: 4,
                title: "Markdown Output".into(),
                start_offset: h4_start,
                end_offset: content.len(),
            },
        ];
        let _ = payload_start;
        let mut store = Store::new();
        store.upsert(
            EntityId::new("specs", "a"),
            entity_with_heading_spans("a", "identity", &content, spans),
        );

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["distinct-keyword".into()],
                field: Some("identity".into()),
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let mt = result.hits[0].matched_terms.as_ref().unwrap();
        let tm = &mt["distinct-keyword"][0];
        assert_eq!(
            tm.heading_path,
            Some(vec!["Response Shapes".into(), "Markdown Output".into()]),
            "nested path: outermost (H3) first, innermost (H4) last"
        );
    }

    #[test]
    fn heading_path_survives_level_skip() {
        // H2 → H4 directly (no H3). Only the H4 span exists.
        let content = "#### Direct Subsection\nrare-match word here\n";
        let spans = vec![HeadingSpan {
            level: 4,
            title: "Direct Subsection".into(),
            start_offset: 0,
            end_offset: content.len(),
        }];
        let mut store = Store::new();
        store.upsert(
            EntityId::new("specs", "a"),
            entity_with_heading_spans("a", "identity", content, spans),
        );

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["rare-match".into()],
                field: Some("identity".into()),
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let mt = result.hits[0].matched_terms.as_ref().unwrap();
        let tm = &mt["rare-match"][0];
        assert_eq!(
            tm.heading_path,
            Some(vec!["Direct Subsection".into()]),
            "flat H4 span produces single-element path; no virtual H3 inserted"
        );
    }

    #[test]
    fn heading_path_distinguishes_duplicate_siblings() {
        // Two `### Foo` under the same section; match in second one → path
        // carries "Foo" from the second span (same title, distinguished by
        // offset containment).
        let mut content = String::new();
        content.push_str("### Foo\nfirst body\n");
        let second_start = content.len();
        content.push_str("### Foo\nsecond body carries sentinel-word here\n");
        let spans = vec![
            HeadingSpan {
                level: 3,
                title: "Foo".into(),
                start_offset: 0,
                end_offset: second_start,
            },
            HeadingSpan {
                level: 3,
                title: "Foo".into(),
                start_offset: second_start,
                end_offset: content.len(),
            },
        ];
        let mut store = Store::new();
        store.upsert(
            EntityId::new("specs", "a"),
            entity_with_heading_spans("a", "identity", &content, spans),
        );

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["sentinel-word".into()],
                field: Some("identity".into()),
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let mt = result.hits[0].matched_terms.as_ref().unwrap();
        let tm = &mt["sentinel-word"][0];
        assert_eq!(
            tm.heading_path,
            Some(vec!["Foo".into()]),
            "second `### Foo` span contains the match (offset-based)"
        );
    }

    // ---- Facets ----

    #[test]
    fn facets_count_over_full_result_not_page() {
        // 12 matching entities; page limit 5. Facets must reflect all 12.
        let mut store = Store::new();
        for i in 0..12 {
            let mut e = make_entity(&format!("e-{i:02}"), "specs");
            e.sections
                .insert("identity".into(), "shared-keyword here".into());
            store.upsert(e.id.clone(), e);
        }

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["shared-keyword".into()],
                ..Default::default()
            }),
            limit: Some(5),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 12);
        assert_eq!(result.returned, 5);
        let facets = result.facets.as_ref().expect("facets present");
        let by_type_sum: usize = facets.by_type.values().sum();
        assert_eq!(
            by_type_sum, 12,
            "by_type must cover the full unpaginated set, not just the page"
        );
        let by_mem_sum: usize = facets.by_mem.values().sum();
        assert_eq!(by_mem_sum, 12);
    }

    #[test]
    fn facets_by_type_and_mem_exact() {
        let mut store = Store::new();
        // 3 specs in 'specs', 2 memos in 'memos'.
        for i in 0..3 {
            let mut e = make_entity(&format!("s-{i}"), "specs");
            e.sections.insert("identity".into(), "shared anchor".into());
            store.upsert(e.id.clone(), e);
        }
        for i in 0..2 {
            let mut e = make_entity(&format!("m-{i}"), "memos");
            e.entity_type = "memo".into();
            e.sections.insert("identity".into(), "shared anchor".into());
            store.upsert(e.id.clone(), e);
        }

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["anchor".into()],
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let facets = result.facets.as_ref().unwrap();
        assert_eq!(facets.by_type.get("spec").copied(), Some(3));
        assert_eq!(facets.by_type.get("memo").copied(), Some(2));
        assert_eq!(facets.by_mem.get("specs").copied(), Some(3));
        assert_eq!(facets.by_mem.get("memos").copied(), Some(2));
        // Without graph expansion every hit is primary; no `expanded`
        // dim is populated.
        assert_eq!(facets.by_expansion.get("primary").copied(), Some(5));
        assert!(!facets.by_expansion.contains_key("expanded"));
    }

    #[test]
    fn facets_empty_when_no_hits() {
        let mut store = Store::new();
        let e = make_entity("lonely", "specs");
        store.upsert(e.id.clone(), e);

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["never-occurs-keyword".into()],
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 0);
        let facets = result
            .facets
            .as_ref()
            .expect("facets is Some(Facets::default()) even when hit set is empty");
        assert!(facets.by_type.is_empty());
        assert!(facets.by_mem.is_empty());
        assert!(facets.by_level.is_empty());
        assert!(facets.by_subsection.is_empty());
        assert!(facets.by_expansion.is_empty());
    }

    #[test]
    fn facets_by_subsection_exact() {
        // Two hits both matching under two distinct sub-sections.
        let content_a = "### Response Shapes\nentity-a unique-anchor here\n";
        let spans_a = vec![HeadingSpan {
            level: 3,
            title: "Response Shapes".into(),
            start_offset: 0,
            end_offset: content_a.len(),
        }];
        let content_b = "### Tool Surface\nentity-b unique-anchor here\n";
        let spans_b = vec![HeadingSpan {
            level: 3,
            title: "Tool Surface".into(),
            start_offset: 0,
            end_offset: content_b.len(),
        }];
        let mut store = Store::new();
        store.upsert(
            EntityId::new("specs", "a"),
            entity_with_heading_spans("a", "identity", content_a, spans_a),
        );
        store.upsert(
            EntityId::new("specs", "b"),
            entity_with_heading_spans("b", "identity", content_b, spans_b),
        );

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["unique-anchor".into()],
                field: Some("identity".into()),
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let facets = result.facets.as_ref().unwrap();
        assert_eq!(facets.by_subsection.len(), 2);
        let paths: std::collections::HashSet<Vec<String>> = facets
            .by_subsection
            .iter()
            .map(|e| e.path.clone())
            .collect();
        assert!(paths.contains(&vec!["identity".into(), "Response Shapes".into()]));
        assert!(paths.contains(&vec!["identity".into(), "Tool Surface".into()]));
        for entry in &facets.by_subsection {
            assert_eq!(entry.count, 1);
        }
    }

    #[test]
    fn facets_by_subsection_excludes_h2_only_matches() {
        // Match falls inside an H2 section that has no H3–H6 spans. No
        // `by_subsection` entry should appear for it.
        let mut store = Store::new();
        let mut e = make_entity("a", "specs");
        e.sections
            .insert("identity".into(), "only-here unique-keyword lives".into());
        store.upsert(e.id.clone(), e);

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["unique-keyword".into()],
                field: Some("identity".into()),
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
        let facets = result.facets.as_ref().unwrap();
        assert!(
            facets.by_subsection.is_empty(),
            "H2-only match must not contribute to by_subsection: {:?}",
            facets.by_subsection
        );
    }

    #[test]
    fn facets_by_subsection_survives_punctuation_in_heading() {
        // A heading containing a slash must not be split by a delimiter.
        let content = "### Client/Server split\nword punctuation-anchor exists\n";
        let spans = vec![HeadingSpan {
            level: 3,
            title: "Client/Server split".into(),
            start_offset: 0,
            end_offset: content.len(),
        }];
        let mut store = Store::new();
        store.upsert(
            EntityId::new("specs", "a"),
            entity_with_heading_spans("a", "identity", content, spans),
        );

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["punctuation-anchor".into()],
                field: Some("identity".into()),
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let facets = result.facets.as_ref().unwrap();
        assert_eq!(facets.by_subsection.len(), 1);
        let entry = &facets.by_subsection[0];
        assert_eq!(entry.count, 1);
        assert_eq!(
            entry.path,
            vec!["identity".to_string(), "Client/Server split".to_string()],
            "punctuation in heading must remain a single path element"
        );
    }

    #[test]
    fn facets_by_level_counts_when_present() {
        let mut store = Store::new();
        let mut e1 = make_entity("a", "specs");
        e1.metadata
            .insert("level".into(), MetadataValue::String("M0".into()));
        e1.sections
            .insert("identity".into(), "shared anchor".into());
        let mut e2 = make_entity("b", "specs");
        e2.metadata
            .insert("level".into(), MetadataValue::String("M1".into()));
        e2.sections
            .insert("identity".into(), "shared anchor".into());
        let mut e3 = make_entity("c", "specs");
        e3.metadata
            .insert("level".into(), MetadataValue::String("M1".into()));
        e3.sections
            .insert("identity".into(), "shared anchor".into());
        store.upsert(e1.id.clone(), e1);
        store.upsert(e2.id.clone(), e2);
        store.upsert(e3.id.clone(), e3);

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["anchor".into()],
                ..Default::default()
            }),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let facets = result.facets.as_ref().unwrap();
        assert_eq!(facets.by_level.get("M0").copied(), Some(1));
        assert_eq!(facets.by_level.get("M1").copied(), Some(2));
    }

    // ---- Graph expansion via expand_via ----

    use crate::store::{Edge, EdgeSource};

    fn add_edge(store: &mut Store, from: EntityId, to: EntityId, rel: &str) {
        store.add_edge(
            from,
            Edge {
                rel_type: rel.into(),
                target: to,
                source: EdgeSource::Explicit,
            },
        );
    }

    /// An auto-emitted mention edge (`EdgeSource::BodyLink`) — a co-mention,
    /// not a typed dependency.
    fn add_body_edge(store: &mut Store, from: EntityId, to: EntityId) {
        store.add_edge(
            from,
            Edge {
                rel_type: "REFERENCES".into(),
                target: to,
                source: EdgeSource::BodyLink,
            },
        );
    }

    /// #54: a `related_to` neighbourhood ranks by proximity — nearer hops
    /// first, and a typed (dependency) link to the anchor before a
    /// co-mention at the same hop. A small neighbourhood keeps full
    /// membership (only ordering changes — the refusal AC).
    #[test]
    fn related_to_ranks_by_proximity_then_typed() {
        let mut store = Store::new();
        for n in ["hub", "dep1", "men1", "far1"] {
            let e = make_entity(n, "specs");
            store.upsert(e.id.clone(), e);
        }
        let hub = EntityId::new("specs", "hub");
        // hub —USES→ dep1 (typed, dist 1); hub —REFERENCES(mention)→ men1
        // (dist 1); dep1 —USES→ far1 (dist 2 from hub).
        add_edge(
            &mut store,
            hub.clone(),
            EntityId::new("specs", "dep1"),
            "USES",
        );
        add_body_edge(&mut store, hub.clone(), EntityId::new("specs", "men1"));
        add_edge(
            &mut store,
            EntityId::new("specs", "dep1"),
            EntityId::new("specs", "far1"),
            "USES",
        );

        let scope = SearchScope {
            related_to: Some(hub.clone()),
            depth: Some(2),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        // Membership unchanged: hub(0) + dep1,men1(1) + far1(2) — all 4.
        let order: Vec<&str> = result.hits.iter().map(|h| h.id.name()).collect();
        assert_eq!(
            result.total, 4,
            "small neighbourhood keeps full membership: {order:?}"
        );
        let pos = |n: &str| order.iter().position(|x| *x == n).unwrap();
        assert!(
            pos("dep1") < pos("far1"),
            "nearer before farther: {order:?}"
        );
        assert!(
            pos("men1") < pos("far1"),
            "nearer before farther: {order:?}"
        );
        assert!(
            pos("dep1") < pos("men1"),
            "typed link before co-mention at the same hop: {order:?}"
        );
    }

    /// #54: a hub neighbourhood larger than the cap is bounded to its
    /// nearest N with a `NEIGHBOURHOOD_CAPPED` warning.
    #[test]
    fn related_to_hub_is_capped_with_warning() {
        let mut store = Store::new();
        let hub = EntityId::new("specs", "hub");
        store.upsert(hub.clone(), make_entity("hub", "specs"));
        for i in 0..150 {
            let n = format!("n{i:03}");
            let id = EntityId::new("specs", &n);
            store.upsert(id.clone(), make_entity(&n, "specs"));
            add_edge(&mut store, hub.clone(), id, "USES");
        }
        let scope = SearchScope {
            related_to: Some(hub.clone()),
            depth: Some(1),
            limit: Some(200),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(
            result.total, RELATED_TO_NEIGHBOURHOOD_CAP,
            "hub neighbourhood bounded to the cap"
        );
        assert!(
            result
                .warnings
                .iter()
                .any(|w| w.code() == "NEIGHBOURHOOD_CAPPED"),
            "capping must surface a warning; got {:?}",
            result.warnings.iter().map(|w| w.code()).collect::<Vec<_>>()
        );
    }

    #[test]
    fn expand_via_pulls_in_direct_neighbours() {
        let mut store = Store::new();
        let mut primary = make_entity("primary", "specs");
        primary
            .sections
            .insert("identity".into(), "auth flow".into());
        let n1 = make_entity("n1", "specs");
        let n2 = make_entity("n2", "specs");
        let primary_id = primary.id.clone();
        store.upsert(primary_id.clone(), primary);
        store.upsert(n1.id.clone(), n1);
        store.upsert(n2.id.clone(), n2);
        add_edge(
            &mut store,
            primary_id.clone(),
            EntityId::new("specs", "n1"),
            "REFERENCES",
        );
        add_edge(
            &mut store,
            primary_id.clone(),
            EntityId::new("specs", "n2"),
            "REFERENCES",
        );

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["auth".into()],
                ..Default::default()
            }),
            expand_via: Some(vec!["REFERENCES".into()]),
            expand_depth: Some(1),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 3, "primary + 2 expanded");

        let expanded: Vec<&SearchHit> = result
            .hits
            .iter()
            .filter(|h| h.expansion.is_some())
            .collect();
        assert_eq!(expanded.len(), 2);
        for h in expanded {
            let exp = h.expansion.as_ref().unwrap();
            assert_eq!(exp.of, primary_id);
            assert_eq!(exp.via_edge, "REFERENCES");
            assert_eq!(exp.depth, 1);
            // Facet side check lands below — here, confirm the wire contract:
            // expanded hits carry a decayed score_breakdown, no matched_terms.
            let bd = h.score_breakdown.as_ref().unwrap();
            assert_eq!(bd.expansion_decay, Some(0.5));
            assert!(h.matched_terms.is_none());
        }
        // Facet by_expansion now carries both keys.
        let facets = result.facets.as_ref().unwrap();
        assert_eq!(facets.by_expansion.get("primary").copied(), Some(1));
        assert_eq!(facets.by_expansion.get("expanded").copied(), Some(2));
    }

    #[test]
    fn expand_via_respects_filter() {
        // Primary is a spec; neighbour is a memo. entity_type filter drops it.
        let mut store = Store::new();
        let mut primary = make_entity("primary", "specs");
        primary
            .sections
            .insert("identity".into(), "auth flow".into());
        let mut neighbor = make_entity("neighbor", "specs");
        neighbor.entity_type = "memo".into();
        let primary_id = primary.id.clone();
        store.upsert(primary_id.clone(), primary);
        store.upsert(neighbor.id.clone(), neighbor);
        add_edge(
            &mut store,
            primary_id,
            EntityId::new("specs", "neighbor"),
            "REFERENCES",
        );

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["auth".into()],
                ..Default::default()
            }),
            entity_type: Some("spec".into()),
            expand_via: Some(vec!["REFERENCES".into()]),
            expand_depth: Some(1),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(
            result.total, 1,
            "only the primary — memo neighbour dropped by entity_type"
        );
        assert!(result.hits[0].expansion.is_none());
    }

    #[test]
    fn expand_via_respects_depth() {
        // primary --R--> a --R--> b
        let mut store = Store::new();
        let mut primary = make_entity("primary", "specs");
        primary.sections.insert("identity".into(), "anchor".into());
        let a = make_entity("a", "specs");
        let b = make_entity("b", "specs");
        let primary_id = primary.id.clone();
        store.upsert(primary_id.clone(), primary);
        store.upsert(a.id.clone(), a);
        store.upsert(b.id.clone(), b);
        add_edge(
            &mut store,
            primary_id.clone(),
            EntityId::new("specs", "a"),
            "REFERENCES",
        );
        add_edge(
            &mut store,
            EntityId::new("specs", "a"),
            EntityId::new("specs", "b"),
            "REFERENCES",
        );

        let make_scope = |depth: usize| SearchScope {
            query: Some(Query {
                any: vec!["anchor".into()],
                ..Default::default()
            }),
            expand_via: Some(vec!["REFERENCES".into()]),
            expand_depth: Some(depth),
            ..Default::default()
        };
        let r1 = run_search(&store, &make_scope(1));
        assert_eq!(r1.total, 2, "depth 1: primary + a");

        let r2 = run_search(&store, &make_scope(2));
        assert_eq!(r2.total, 3, "depth 2: primary + a + b");
        let b_hit = r2.hits.iter().find(|h| h.id.name() == "b").unwrap();
        assert_eq!(b_hit.expansion.as_ref().unwrap().depth, 2);
    }

    #[test]
    fn expand_via_empty_edge_types_skips() {
        let mut store = Store::new();
        let mut primary = make_entity("primary", "specs");
        primary.sections.insert("identity".into(), "anchor".into());
        let n = make_entity("n", "specs");
        let primary_id = primary.id.clone();
        store.upsert(primary_id.clone(), primary);
        store.upsert(n.id.clone(), n);
        add_edge(
            &mut store,
            primary_id,
            EntityId::new("specs", "n"),
            "REFERENCES",
        );

        let scope_empty = SearchScope {
            query: Some(Query {
                any: vec!["anchor".into()],
                ..Default::default()
            }),
            expand_via: Some(Vec::new()),
            ..Default::default()
        };
        let scope_none = SearchScope {
            query: Some(Query {
                any: vec!["anchor".into()],
                ..Default::default()
            }),
            expand_via: None,
            ..Default::default()
        };
        let r_empty = run_search(&store, &scope_empty);
        let r_none = run_search(&store, &scope_none);
        assert_eq!(r_empty.total, 1);
        assert_eq!(r_empty.total, r_none.total);
    }

    #[test]
    fn expand_via_score_decay() {
        // primary --R--> a --R--> b, depth 2
        let mut store = Store::new();
        let mut primary = make_entity("primary", "specs");
        primary.sections.insert("identity".into(), "keyword".into());
        let a = make_entity("a", "specs");
        let b = make_entity("b", "specs");
        let primary_id = primary.id.clone();
        store.upsert(primary_id.clone(), primary);
        store.upsert(a.id.clone(), a);
        store.upsert(b.id.clone(), b);
        add_edge(
            &mut store,
            primary_id.clone(),
            EntityId::new("specs", "a"),
            "REFERENCES",
        );
        add_edge(
            &mut store,
            EntityId::new("specs", "a"),
            EntityId::new("specs", "b"),
            "REFERENCES",
        );

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["keyword".into()],
                ..Default::default()
            }),
            expand_via: Some(vec!["REFERENCES".into()]),
            expand_depth: Some(2),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let primary_hit = result
            .hits
            .iter()
            .find(|h| h.id == primary_id)
            .expect("primary present");
        let primary_score = primary_hit.score;
        assert!(primary_score > 0.0, "primary must have BM25 score");

        let a_hit = result.hits.iter().find(|h| h.id.name() == "a").unwrap();
        let b_hit = result.hits.iter().find(|h| h.id.name() == "b").unwrap();
        assert!((a_hit.score - primary_score * 0.5).abs() < 0.0001);
        assert!((b_hit.score - primary_score * 0.25).abs() < 0.0001);
        assert_eq!(
            a_hit.score_breakdown.as_ref().unwrap().expansion_decay,
            Some(0.5)
        );
        assert_eq!(
            b_hit.score_breakdown.as_ref().unwrap().expansion_decay,
            Some(0.25)
        );
    }

    #[test]
    fn expand_via_via_edge_label_correct() {
        let mut store = Store::new();
        let mut primary = make_entity("primary", "specs");
        primary.sections.insert("identity".into(), "keyword".into());
        let realizes_n = make_entity("realizes-target", "specs");
        let references_n = make_entity("references-target", "specs");
        let primary_id = primary.id.clone();
        store.upsert(primary_id.clone(), primary);
        store.upsert(realizes_n.id.clone(), realizes_n);
        store.upsert(references_n.id.clone(), references_n);
        add_edge(
            &mut store,
            primary_id.clone(),
            EntityId::new("specs", "realizes-target"),
            "REALIZES",
        );
        add_edge(
            &mut store,
            primary_id,
            EntityId::new("specs", "references-target"),
            "REFERENCES",
        );

        let scope = SearchScope {
            query: Some(Query {
                any: vec!["keyword".into()],
                ..Default::default()
            }),
            expand_via: Some(vec!["REALIZES".into(), "REFERENCES".into()]),
            expand_depth: Some(1),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        let rt = result
            .hits
            .iter()
            .find(|h| h.id.name() == "realizes-target")
            .unwrap();
        assert_eq!(rt.expansion.as_ref().unwrap().via_edge, "REALIZES");
        let rf = result
            .hits
            .iter()
            .find(|h| h.id.name() == "references-target")
            .unwrap();
        assert_eq!(rf.expansion.as_ref().unwrap().via_edge, "REFERENCES");
    }

    fn make_stub_entity(name: &str, mem: &str) -> Entity {
        let mut e = make_entity(name, mem);
        e.stub = true;
        e
    }

    #[test]
    fn search_filter_stub_none_returns_both() {
        let mut store = Store::new();
        let real = make_entity("real-a", "specs");
        let stub = make_stub_entity("stub-b", "specs");
        store.upsert(real.id.clone(), real);
        store.upsert(stub.id.clone(), stub);

        let scope = SearchScope::default();
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 2, "default returns both stubs and reals");

        let stub_hit = result
            .hits
            .iter()
            .find(|h| h.id.name() == "stub-b")
            .expect("stub must appear in default results");
        assert!(
            stub_hit.stub,
            "hit.stub reflects entity.stub (regression guard)"
        );
        let real_hit = result
            .hits
            .iter()
            .find(|h| h.id.name() == "real-a")
            .expect("real must appear");
        assert!(!real_hit.stub);
    }

    #[test]
    fn search_filter_stub_true_returns_only_stubs() {
        let mut store = Store::new();
        let real = make_entity("real-a", "specs");
        let stub = make_stub_entity("stub-b", "specs");
        store.upsert(real.id.clone(), real);
        store.upsert(stub.id.clone(), stub);

        let scope = SearchScope {
            stub: Some(true),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
        assert_eq!(result.hits[0].id.name(), "stub-b");
        assert!(result.hits[0].stub);
    }

    #[test]
    fn search_filter_stub_false_excludes_stubs() {
        let mut store = Store::new();
        let real = make_entity("real-a", "specs");
        let stub = make_stub_entity("stub-b", "specs");
        store.upsert(real.id.clone(), real);
        store.upsert(stub.id.clone(), stub);

        let scope = SearchScope {
            stub: Some(false),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
        assert_eq!(result.hits[0].id.name(), "real-a");
        assert!(!result.hits[0].stub);
    }

    #[test]
    fn search_filter_stub_intersects_entity_type() {
        let mut store = Store::new();
        let real_spec = make_entity("real-spec", "specs");
        let stub_spec = make_stub_entity("stub-spec", "specs");
        let mut stub_memo = make_stub_entity("stub-memo", "specs");
        stub_memo.entity_type = "memo".into();
        store.upsert(real_spec.id.clone(), real_spec);
        store.upsert(stub_spec.id.clone(), stub_spec);
        store.upsert(stub_memo.id.clone(), stub_memo);

        let scope = SearchScope {
            stub: Some(true),
            entity_type: Some("spec".into()),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(result.total, 1);
        assert_eq!(result.hits[0].id.name(), "stub-spec");
        assert!(result.hits[0].stub);
    }

    #[test]
    fn facets_by_type_omits_empty_bucket_for_stubs() {
        // Production stubs carry `entity_type: ""` (crud::make_stub). When a
        // mixed hit-set reaches compute_facets, the empty string must not
        // surface as its own `by_type` bucket — the type is semantically
        // undefined for a stub. Agents read stub counts from the `stub`
        // filter or memstead_health.stubs, not from the type facet.
        let mut store = Store::new();
        let real = make_entity("real-a", "specs");
        let mut stub = make_stub_entity("stub-b", "specs");
        stub.entity_type = String::new(); // match production make_stub
        store.upsert(real.id.clone(), real);
        store.upsert(stub.id.clone(), stub);

        let result = run_search(&store, &SearchScope::default());
        assert_eq!(result.total, 2, "both entities are in the hit set");
        let facets = result.facets.as_ref().expect("facets present");
        assert_eq!(facets.by_type.get("spec").copied(), Some(1));
        assert!(
            !facets.by_type.contains_key(""),
            "by_type must not expose an empty-string bucket for stubs: {:?}",
            facets.by_type
        );
    }

    /// A hit's summary is resolved against its *own* mem schema at
    /// search time,
    /// not the global `default` schema. A `software`-schema `requirement`
    /// projects its `Statement` anchor — pre-fix `type_by_name` missed it
    /// (requirement isn't a `default`-schema type) and rendered `—`.
    #[test]
    fn search_summary_uses_per_mem_schema_anchor_section() {
        use memstead_schema::SchemaRegistry;

        let software = SchemaRegistry::builtin()
            .get("software", &semver::Version::new(0, 2, 0))
            .expect("software builtin present");
        let req_type = software.get_type("requirement").expect("requirement type");

        let mut metadata = IndexMap::new();
        metadata.insert("type".into(), MetadataValue::String("requirement".into()));
        let mut sections = IndexMap::new();
        sections.insert(
            "statement".into(),
            "The system shall encrypt tokens at rest.".into(),
        );
        let entity = Entity {
            id: EntityId::new("reqs", "encrypt-tokens"),
            title: "Encrypt tokens".into(),
            entity_type: "requirement".into(),
            mem: "reqs".into(),
            file_path: "encrypt-tokens.md".into(),
            metadata,
            sections,
            relationships: Vec::new(),
            content_hash: "h".into(),
            stub: false,
            stub_kind: None,
            heading_spans: std::collections::HashMap::new(),
            raw_section_headings: Vec::new(),
        };
        let mut store = Store::new();
        store.upsert(entity.id.clone(), entity);

        // Index + per-mem schema map keyed to the *software* schema, so the
        // search op resolves `requirement` against it (not the default schema).
        let mut idx = MemIndex::build_in_ram("reqs".into(), Some(&software)).unwrap();
        for e in store.all_entities() {
            idx.index_entity(e).unwrap();
        }
        idx.commit().unwrap();
        let mut indexes = HashMap::new();
        indexes.insert("reqs".to_string(), idx);
        let mut schemas: HashMap<String, Arc<Schema>> = HashMap::new();
        schemas.insert("reqs".to_string(), software.clone());

        // Metadata-only scan returns the requirement.
        let result = search(
            &store,
            &SearchScope::default(),
            &req_type,
            &indexes,
            &schemas,
        );
        assert_eq!(result.total, 1);
        let summary = result.hits[0]
            .summary
            .as_ref()
            .expect("summary computed at search time");
        assert_eq!(summary.heading, "Statement");
        assert!(
            summary.value.contains("encrypt tokens at rest"),
            "got: {}",
            summary.value
        );

        // The envelope projects the anchor section, not the `—` fallback.
        let envelope = crate::render::build_search_envelope(&result, 0);
        assert_eq!(envelope.hits[0].summary_heading, "Statement");
        assert!(
            envelope.hits[0]
                .summary_value
                .contains("encrypt tokens at rest")
        );
    }

    /// The engine-stamped `created_date` is range-filterable, so the
    /// canonical
    /// "entities created since X" query works and returns only entities
    /// past the bound — pre-fix it warned `FIELD_NOT_RANGE_FILTERABLE`.
    #[test]
    fn range_filter_on_created_date_works() {
        let mut store = Store::new();
        let mut old = make_entity("old", "specs");
        old.metadata.insert(
            "created_date".into(),
            MetadataValue::String("2020-01-01".into()),
        );
        let mut recent = make_entity("recent", "specs");
        recent.metadata.insert(
            "created_date".into(),
            MetadataValue::String("2026-06-01".into()),
        );
        store.upsert(old.id.clone(), old);
        store.upsert(recent.id.clone(), recent);

        let scope = SearchScope {
            range_filters: HashMap::from([("created_date_after".into(), "2025-01-01".into())]),
            ..Default::default()
        };
        let result = run_search(&store, &scope);
        assert_eq!(
            result.total, 1,
            "only the entity created after the bound matches"
        );
        assert_eq!(result.hits[0].id.name(), "recent");
        assert!(
            result.warnings.is_empty(),
            "created_date is range-filterable — no FIELD_NOT_RANGE_FILTERABLE warning; got {:?}",
            result.warnings
        );
    }

    /// Build a one-type schema whose `tags` field is a csv-array,
    /// equality-filterable metadata field — the shape CLI F8 is about.
    fn csv_tag_schema() -> std::sync::Arc<Schema> {
        let manifest = "name: tagtest\nversion: 0.1.0\ndescription: t\nwhen_to_use: t\n\
types:\n  - thing\nrelationships:\n  mode: open\n  definitions:\n    \
- name: PART_OF\n      description: parent\n      default_weight: 3.0\n    \
- name: _default\n      description: fallback\n      default_weight: 1.0\n\
community:\n  resolution: 1.0\n  seed: 42\n";
        let type_yaml = "name: thing\ndescription: t\nwhen_to_use: t\nsections:\n  \
- key: body\n    heading: Body\n    required: true\n    catch_all: true\n    \
search_weight: 1.0\n    write_rules: []\nmetadata_fields:\n  - key: labels\n    \
description: csv labels\n    field_type: string\n    serialization: csv_array\n    \
filterable: equality\n  - key: priority\n    description: prio\n    field_type: string\n    \
enum_values: [low, mid, high]\n    filterable: equality\ntitle_weight: 1.0\ntext_fields:\n  - body\n\
hierarchy_relationship: PART_OF\nno_self_loop_relationships: []\n\
updatable_fields: [title, body, labels]\nhealth_required_fields: []\n\
staleness_threshold_days: 90\nwrite_rules: []\n";
        std::sync::Arc::new(
            memstead_schema::load_schema_from_memory(
                manifest,
                &[("thing".to_string(), type_yaml.to_string())],
            )
            .expect("csv-tag test schema must load"),
        )
    }

    fn codes_for(filters: &[(&str, &str)]) -> Vec<&'static str> {
        let schema = csv_tag_schema();
        let type_def = schema.get_type("thing").expect("thing type present");
        let type_def = type_def.as_ref();
        let mem_schemas: HashMap<String, Arc<Schema>> = HashMap::new();
        let filters: HashMap<String, String> = filters
            .iter()
            .map(|(k, v)| (k.to_string(), v.to_string()))
            .collect();
        let mut warnings = Vec::new();
        super::collect_equality_filter_warnings(
            &filters,
            type_def,
            None,
            None,
            &mem_schemas,
            &mut warnings,
        );
        warnings.iter().map(|w| w.code()).collect()
    }

    /// CLI F8 positive: a comma-bearing value on a csv-array field warns
    /// `FILTER_VALUE_MULTI_MEMBER` — the silent zero gets a recoverable
    /// signal naming the single-member form.
    #[test]
    fn csv_filter_comma_value_warns_multi_member() {
        let codes = codes_for(&[("labels", "dedup,retry")]);
        assert!(
            codes.contains(&"FILTER_VALUE_MULTI_MEMBER"),
            "comma-bearing csv value must warn; got: {codes:?}",
        );
    }

    /// CLI F8 complement: a single-member value is the supported shape —
    /// no multi-member warning.
    #[test]
    fn csv_filter_single_member_does_not_warn() {
        let codes = codes_for(&[("labels", "dedup")]);
        assert!(
            !codes.contains(&"FILTER_VALUE_MULTI_MEMBER"),
            "single-member csv value must not warn; got: {codes:?}",
        );
    }

    /// CLI F8 complement: a genuinely-unknown key still warns
    /// `UNKNOWN_FILTER_KEY` (the new advisory is additive, not a
    /// replacement).
    #[test]
    fn unknown_filter_key_still_warns_unknown() {
        let codes = codes_for(&[("nonexistent", "x")]);
        assert!(
            codes.contains(&"UNKNOWN_FILTER_KEY"),
            "unknown key must still warn UNKNOWN_FILTER_KEY; got: {codes:?}",
        );
        assert!(!codes.contains(&"FILTER_VALUE_MULTI_MEMBER"));
    }

    /// #52: filtering a valid enum-constrained field with a value outside
    /// `enum_values` warns `INVALID_ENUM_VALUE`, so a 0-hit result isn't
    /// mistaken for a true no-match.
    #[test]
    fn enum_filter_invalid_value_warns() {
        let codes = codes_for(&[("priority", "urgent")]);
        assert!(
            codes.contains(&"INVALID_ENUM_VALUE"),
            "out-of-enum filter value must warn INVALID_ENUM_VALUE; got: {codes:?}",
        );
    }

    /// #52 refusal: a valid enum value filters normally — no false warning.
    #[test]
    fn enum_filter_valid_value_does_not_warn() {
        let codes = codes_for(&[("priority", "high")]);
        assert!(
            !codes.contains(&"INVALID_ENUM_VALUE"),
            "a valid enum value must not warn; got: {codes:?}",
        );
    }

    /// #52 complement: an unknown field key keeps `UNKNOWN_FILTER_KEY` (the
    /// enum check runs only on declared fields), not the enum warning.
    #[test]
    fn enum_check_does_not_fire_on_unknown_key() {
        let codes = codes_for(&[("nonexistent", "urgent")]);
        assert!(codes.contains(&"UNKNOWN_FILTER_KEY"));
        assert!(!codes.contains(&"INVALID_ENUM_VALUE"));
    }
}