mati 0.1.2

An enforcement layer for codebase knowledge: confirmed gotchas gate what AI agents read and edit at the hook level. Not a passive memory store.
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
use std::collections::{HashMap, HashSet};
use std::time::{SystemTime, UNIX_EPOCH};

use anyhow::Result;
use petgraph::graph::{DiGraph, NodeIndex};
use petgraph::visit::EdgeRef;
use petgraph::Direction;

use super::edges::{Edge, EdgeKind};
use crate::store::Store;

const EDGE_PREFIX: &str = "graph:edge:";

/// In-memory directed knowledge graph backed by SurrealKV.
///
/// Use `Graph::load` to restore the full graph from disk, or `Graph::empty`
/// when the caller only needs store access (e.g. warm re-init with no new edges).
/// Every mutation writes through to SurrealKV immediately — no edges are lost
/// on restart. Traversal is fully in-memory (<1 ms).
pub struct Graph {
    /// petgraph directed graph. Node weights are namespaced record keys.
    inner: DiGraph<String, EdgeKind>,
    /// Maps a record key → its NodeIndex for O(1) lookup.
    node_index: HashMap<String, NodeIndex>,
    /// Tracks existing (from, kind, to) triples for O(1) duplicate detection.
    /// Avoids an O(E) scan on every `insert_edge_in_memory` call.
    edge_set: HashSet<(NodeIndex, NodeIndex, EdgeKind)>,
    /// Handle to the store for write-through persistence. Private — callers
    /// must go through Graph methods to keep in-memory and persisted state in sync.
    store: Store,
}

impl Graph {
    /// Wrap a Store without scanning any keys. All collections are empty.
    /// Use when the caller needs store access but has no edges to add or read
    /// (e.g. warm re-init with zero new edges — skips the 14k-key prefix scan).
    pub fn empty(store: Store) -> Self {
        Graph {
            inner: DiGraph::new(),
            node_index: HashMap::new(),
            edge_set: HashSet::new(),
            store,
        }
    }

    /// Load the full graph from SurrealKV by scanning `graph:edge:*`.
    pub async fn load(store: Store) -> Result<Self> {
        let keys = store.scan_keys(EDGE_PREFIX).await?;
        // Pre-size all collections to avoid incremental resizes during bulk insert.
        // Each edge connects 2 nodes; upper bound is 2 × edge count unique nodes.
        let n_edges = keys.len();
        let n_nodes = n_edges * 2;
        let mut g = Graph {
            inner: DiGraph::with_capacity(n_nodes, n_edges),
            node_index: HashMap::with_capacity(n_nodes),
            edge_set: HashSet::with_capacity(n_edges),
            store,
        };
        for key in keys {
            if let Some(edge) = Edge::from_key(&key) {
                g.insert_edge_in_memory(&edge);
            }
        }
        Ok(g)
    }

    /// Add an edge and persist it to SurrealKV. Idempotent — skips the store
    /// write entirely if the edge already exists in the in-memory set.
    pub async fn add_edge(&mut self, from: &str, kind: EdgeKind, to: &str) -> Result<()> {
        let edge = Edge::new(from, kind, to);
        // Check before persisting: if both nodes exist and the edge is already
        // in the set, skip the store write. Avoids bumping updated_at on every
        // duplicate call and prevents unnecessary fsync on hot paths.
        if let (Some(&fi), Some(&ti)) = (
            self.node_index.get(&edge.from),
            self.node_index.get(&edge.to),
        ) {
            if self.edge_set.contains(&(fi, ti, edge.kind.clone())) {
                return Ok(());
            }
        }
        persist_edge(&self.store, &edge).await?;
        self.insert_edge_in_memory(&edge);
        Ok(())
    }

    /// Add many edges in a single SurrealKV transaction (1 fsync for the whole
    /// batch). Use this for Layer 0 bulk inserts — never call `add_edge` in a
    /// loop for large graphs.
    ///
    /// Edges already present in `edge_set` are skipped (idempotent).
    /// The batch is applied atomically to the store: either all new edges land
    /// or none do (on write failure).
    pub async fn add_edges_batch(&mut self, edges: &[(String, EdgeKind, String)]) -> Result<()> {
        // Filter to only edges that don't already exist.
        let new_edges: Vec<Edge> = edges
            .iter()
            .filter(|(from, kind, to)| {
                match (self.node_index.get(from), self.node_index.get(to)) {
                    (Some(&fi), Some(&ti)) => !self.edge_set.contains(&(fi, ti, kind.clone())),
                    _ => true, // at least one node is new → edge definitely doesn't exist
                }
            })
            .map(|(from, kind, to)| Edge::new(from.as_str(), kind.clone(), to.as_str()))
            .collect();

        if new_edges.is_empty() {
            return Ok(());
        }

        // Pre-size in-memory collections to absorb the whole batch without resize.
        let n = new_edges.len();
        self.inner.reserve_nodes(n * 2);
        self.inner.reserve_edges(n);
        self.node_index.reserve(n * 2);
        self.edge_set.reserve(n);

        // Pre-compute timestamp once for the whole batch (not per-edge).
        let now = SystemTime::now()
            .duration_since(UNIX_EPOCH)
            .unwrap_or_default()
            .as_secs()
            .to_le_bytes();

        let keys: Vec<String> = new_edges.iter().map(|e| e.to_key()).collect();
        let pairs: Vec<(&str, &[u8])> = keys.iter().map(|k| (k.as_str(), now.as_ref())).collect();
        self.store.put_batch_raw(&pairs).await?;

        // Update in-memory state only after the write succeeds.
        for edge in &new_edges {
            self.insert_edge_in_memory(edge);
        }
        Ok(())
    }

    /// Remove an edge from the in-memory graph and delete it from SurrealKV.
    pub async fn remove_edge(&mut self, from: &str, kind: &EdgeKind, to: &str) -> Result<()> {
        let edge = Edge::new(from, kind.clone(), to);
        self.store.delete(&edge.to_key()).await?;
        let from_idx = match self.node_index.get(from) {
            Some(&i) => i,
            None => return Ok(()),
        };
        let to_idx = match self.node_index.get(to) {
            Some(&i) => i,
            None => return Ok(()),
        };
        self.edge_set.remove(&(from_idx, to_idx, kind.clone()));
        let to_remove: Vec<_> = self
            .inner
            .edges_connecting(from_idx, to_idx)
            .filter(|e| e.weight() == kind)
            .map(|e| e.id())
            .collect();
        for eid in to_remove {
            self.inner.remove_edge(eid);
        }
        Ok(())
    }

    /// BFS traversal from `seed` following `edge_kind` edges up to `depth` hops.
    /// Returns node keys reachable (seed itself excluded).
    pub fn traverse(&self, seed: &str, edge_kind: &EdgeKind, depth: usize) -> Vec<String> {
        if depth == 0 {
            return vec![];
        }
        let Some(&start) = self.node_index.get(seed) else {
            return vec![];
        };
        let mut visited = HashSet::new();
        let mut queue = std::collections::VecDeque::new();
        queue.push_back((start, 0usize));
        visited.insert(start);
        let mut results = vec![];
        while let Some((node, d)) = queue.pop_front() {
            if d >= depth {
                continue;
            }
            for e in self.inner.edges(node) {
                if e.weight() != edge_kind {
                    continue;
                }
                let target = e.target();
                if visited.insert(target) {
                    results.push(self.inner[target].clone());
                    queue.push_back((target, d + 1));
                }
            }
        }
        results
    }

    /// Immediate neighbors via `kind` edges (depth = 1).
    pub fn neighbors(&self, node: &str, kind: &EdgeKind) -> Vec<String> {
        self.traverse(node, kind, 1)
    }

    /// BFS traversal following incoming `edge_kind` edges up to `depth` hops.
    /// Returns node keys that have a path *to* `seed` (i.e. sources, not targets).
    /// Used for queries like "which files import this file?" (reverse Imports).
    pub fn traverse_incoming(&self, seed: &str, edge_kind: &EdgeKind, depth: usize) -> Vec<String> {
        if depth == 0 {
            return vec![];
        }
        let Some(&start) = self.node_index.get(seed) else {
            return vec![];
        };
        let mut visited = HashSet::new();
        let mut queue = std::collections::VecDeque::new();
        queue.push_back((start, 0usize));
        visited.insert(start);
        let mut results = vec![];
        while let Some((node, d)) = queue.pop_front() {
            if d >= depth {
                continue;
            }
            for e in self.inner.edges_directed(node, Direction::Incoming) {
                if e.weight() != edge_kind {
                    continue;
                }
                let source = e.source();
                if visited.insert(source) {
                    results.push(self.inner[source].clone());
                    queue.push_back((source, d + 1));
                }
            }
        }
        results
    }

    /// Immediate incoming neighbors via `kind` edges (depth = 1).
    pub fn neighbors_incoming(&self, node: &str, kind: &EdgeKind) -> Vec<String> {
        self.traverse_incoming(node, kind, 1)
    }

    /// Borrow the underlying store for read-only operations.
    ///
    /// MCP tools need both Store reads and Graph traversal. This accessor
    /// avoids splitting ownership — the Graph owns the Store, and callers
    /// borrow it through this method.
    /// Build a reverse adjacency list for the given edge kind.
    /// Maps target node key → list of source node keys.
    /// Used by `BlastRadius::compute_all` to avoid repeated graph lookups.
    pub fn reverse_adjacency(&self, kind: &EdgeKind) -> HashMap<String, Vec<String>> {
        let mut adj: HashMap<String, Vec<String>> = HashMap::new();
        for edge in self.inner.edge_references() {
            if edge.weight() == kind {
                let source = self.inner[edge.source()].clone();
                let target = self.inner[edge.target()].clone();
                adj.entry(target).or_default().push(source);
            }
        }
        adj
    }

    pub fn store(&self) -> &Store {
        &self.store
    }

    /// Flush pending writes and close the underlying store.
    pub async fn close(self) -> Result<()> {
        self.store.close().await
    }

    /// Number of nodes in the graph.
    pub fn node_count(&self) -> usize {
        self.inner.node_count()
    }

    /// Number of edges in the graph.
    pub fn edge_count(&self) -> usize {
        self.inner.edge_count()
    }

    // ── Private helpers ──────────────────────────────────────────────────────

    fn get_or_insert_node(&mut self, key: &str) -> NodeIndex {
        if let Some(&idx) = self.node_index.get(key) {
            return idx;
        }
        let idx = self.inner.add_node(key.to_owned());
        self.node_index.insert(key.to_owned(), idx);
        idx
    }

    fn insert_edge_in_memory(&mut self, edge: &Edge) {
        let from_idx = self.get_or_insert_node(&edge.from);
        let to_idx = self.get_or_insert_node(&edge.to);
        // O(1) duplicate check via the edge set.
        if self.edge_set.insert((from_idx, to_idx, edge.kind.clone())) {
            self.inner.add_edge(from_idx, to_idx, edge.kind.clone());
        }
    }
}

/// Persist a single edge as an 8-byte creation timestamp.
///
/// The key encodes the full edge (`graph:edge:<from>:<kind>:<to>`), so the
/// stored value only needs to be a non-empty sentinel. An 8-byte LE timestamp
/// is stored for debuggability; `Graph::load` never reads it.
async fn persist_edge(store: &Store, edge: &Edge) -> Result<()> {
    let now = SystemTime::now()
        .duration_since(UNIX_EPOCH)
        .unwrap_or_default()
        .as_secs()
        .to_le_bytes();
    store.put_raw(&edge.to_key(), &now).await
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::store::Record;
    use tempfile::TempDir;

    async fn temp_graph() -> (Graph, TempDir) {
        let dir = TempDir::new().unwrap();
        let store = Store::open(dir.path()).await.unwrap();
        let graph = Graph::load(store).await.unwrap();
        (graph, dir)
    }

    fn make_edge_stub_record(key: &str) -> Record {
        use crate::store::record::*;
        let now = 0u64;
        Record {
            key: key.to_owned(),
            value: String::new(),
            category: Category::Stage,
            priority: Priority::Normal,
            tags: vec![],
            created_at: now,
            updated_at: now,
            ref_url: None,
            staleness: StalenessScore::fresh(),
            lifecycle: RecordLifecycle::Active,
            version: RecordVersion {
                device_id: uuid::Uuid::nil(),
                logical_clock: 0,
                wall_clock: now,
            },
            quality: QualityScore {
                value: 1.0,
                tier: QualityTier::Good,
                signals: vec![],
                computed_at: now,
            },
            access_count: 0,
            last_accessed: 0,
            source: RecordSource::StaticAnalysis,
            confidence: ConfidenceScore {
                value: 1.0,
                confirmation_count: 0,
                contributor_count: 0,
                last_challenged: None,
                challenge_count: 0,
            },
            gap_analysis_score: 0.0,
            payload: None,
        }
    }

    #[tokio::test]
    async fn load_empty_store_gives_empty_graph() {
        let (g, _dir) = temp_graph().await;
        assert_eq!(g.node_count(), 0);
        assert_eq!(g.edge_count(), 0);
    }

    #[tokio::test]
    async fn add_edge_increases_counts() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:src/main.rs", EdgeKind::HasGotcha, "gotcha:write-txn")
            .await
            .unwrap();
        assert_eq!(g.node_count(), 2);
        assert_eq!(g.edge_count(), 1);
    }

    #[tokio::test]
    async fn add_edge_is_idempotent() {
        let (mut g, _dir) = temp_graph().await;
        for _ in 0..3 {
            g.add_edge("file:src/a.rs", EdgeKind::Imports, "file:src/b.rs")
                .await
                .unwrap();
        }
        assert_eq!(g.edge_count(), 1);
    }

    /// Duplicate add_edge must not write to the store a second time.
    /// Verified by scanning the store prefix and checking exactly 1 record exists.
    #[tokio::test]
    async fn add_edge_duplicate_does_not_write_store() {
        let dir = TempDir::new().unwrap();
        let store = Store::open(dir.path()).await.unwrap();
        let mut g = Graph::load(store).await.unwrap();
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        let keys = g.store.scan_keys("graph:edge:").await.unwrap();
        assert_eq!(keys.len(), 1, "store must contain exactly 1 edge record");
    }

    #[tokio::test]
    async fn edges_survive_reload() {
        let dir = TempDir::new().unwrap();
        {
            let store = Store::open(dir.path()).await.unwrap();
            let mut g = Graph::load(store).await.unwrap();
            g.add_edge("file:src/a.rs", EdgeKind::CoChanges, "file:src/b.rs")
                .await
                .unwrap();
            g.close().await.unwrap();
        }
        let store2 = Store::open(dir.path()).await.unwrap();
        let g2 = Graph::load(store2).await.unwrap();
        assert_eq!(g2.edge_count(), 1);
        let neighbors = g2.neighbors("file:src/a.rs", &EdgeKind::CoChanges);
        assert_eq!(neighbors, vec!["file:src/b.rs"]);
    }

    #[tokio::test]
    async fn traverse_two_hops() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        g.add_edge("file:b", EdgeKind::Imports, "file:c")
            .await
            .unwrap();
        g.add_edge("file:c", EdgeKind::Imports, "file:d")
            .await
            .unwrap();
        let two_hop = g.traverse("file:a", &EdgeKind::Imports, 2);
        assert!(two_hop.contains(&"file:b".to_string()));
        assert!(two_hop.contains(&"file:c".to_string()));
        assert!(
            !two_hop.contains(&"file:d".to_string()),
            "depth=2 must not reach d"
        );
    }

    #[tokio::test]
    async fn traverse_unknown_node_returns_empty() {
        let (g, _dir) = temp_graph().await;
        assert!(g
            .traverse("file:nonexistent", &EdgeKind::Imports, 5)
            .is_empty());
    }

    #[tokio::test]
    async fn neighbors_returns_direct_targets_only() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:a", EdgeKind::HasGotcha, "gotcha:x")
            .await
            .unwrap();
        g.add_edge("file:a", EdgeKind::HasGotcha, "gotcha:y")
            .await
            .unwrap();
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        let gotchas = g.neighbors("file:a", &EdgeKind::HasGotcha);
        assert_eq!(gotchas.len(), 2);
        assert!(gotchas.contains(&"gotcha:x".to_string()));
        assert!(gotchas.contains(&"gotcha:y".to_string()));
        let imports = g.neighbors("file:a", &EdgeKind::Imports);
        assert_eq!(imports, vec!["file:b"]);
    }

    #[tokio::test]
    async fn traverse_does_not_cross_edge_kinds() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        g.add_edge("file:b", EdgeKind::HasGotcha, "gotcha:x")
            .await
            .unwrap();
        let result = g.traverse("file:a", &EdgeKind::Imports, 5);
        assert!(result.contains(&"file:b".to_string()));
        assert!(!result.contains(&"gotcha:x".to_string()));
    }

    #[tokio::test]
    async fn remove_edge_works() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        assert_eq!(g.edge_count(), 1);
        g.remove_edge("file:a", &EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        assert_eq!(g.edge_count(), 0);
        assert!(g.neighbors("file:a", &EdgeKind::Imports).is_empty());
    }

    /// remove_edge must work on edges that were loaded from the store (not just
    /// added in the current session). After reload the edge_set is rebuilt from
    /// scan_prefix — this test confirms remove operates on that rebuilt state.
    #[tokio::test]
    async fn remove_edge_after_reload() {
        let dir = TempDir::new().unwrap();
        {
            let store = Store::open(dir.path()).await.unwrap();
            let mut g = Graph::load(store).await.unwrap();
            g.add_edge("file:a", EdgeKind::HasGotcha, "gotcha:x")
                .await
                .unwrap();
            g.add_edge("file:a", EdgeKind::HasGotcha, "gotcha:y")
                .await
                .unwrap();
            g.close().await.unwrap();
        }
        // Reload and remove one of the edges.
        let store2 = Store::open(dir.path()).await.unwrap();
        let mut g2 = Graph::load(store2).await.unwrap();
        assert_eq!(g2.edge_count(), 2);
        g2.remove_edge("file:a", &EdgeKind::HasGotcha, "gotcha:x")
            .await
            .unwrap();
        assert_eq!(g2.edge_count(), 1);
        assert!(g2
            .neighbors("file:a", &EdgeKind::HasGotcha)
            .iter()
            .all(|n| n != "gotcha:x"));
        assert!(g2
            .neighbors("file:a", &EdgeKind::HasGotcha)
            .contains(&"gotcha:y".to_string()));

        // Reload again — the removed edge must not come back.
        g2.close().await.unwrap();
        let store3 = Store::open(dir.path()).await.unwrap();
        let g3 = Graph::load(store3).await.unwrap();
        assert_eq!(g3.edge_count(), 1);
        assert!(g3
            .neighbors("file:a", &EdgeKind::HasGotcha)
            .contains(&"gotcha:y".to_string()));
    }

    #[tokio::test]
    async fn remove_nonexistent_edge_is_noop() {
        let (mut g, _dir) = temp_graph().await;
        g.remove_edge("file:a", &EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        assert_eq!(g.edge_count(), 0);
    }

    #[tokio::test]
    async fn ten_node_chain_correct_traversal() {
        let (mut g, _dir) = temp_graph().await;
        for i in 0..9usize {
            g.add_edge(
                &format!("file:n{i}"),
                EdgeKind::Imports,
                &format!("file:n{}", i + 1),
            )
            .await
            .unwrap();
        }
        assert_eq!(g.node_count(), 10);
        assert_eq!(g.edge_count(), 9);
        let two_hop = g.traverse("file:n0", &EdgeKind::Imports, 2);
        assert_eq!(two_hop.len(), 2);
        assert!(two_hop.contains(&"file:n1".to_string()));
        assert!(two_hop.contains(&"file:n2".to_string()));
        let full = g.traverse("file:n0", &EdgeKind::Imports, 10);
        assert_eq!(full.len(), 9);
    }

    /// Cycle a → b → a must not cause infinite BFS.
    #[tokio::test]
    async fn traverse_cycle_terminates() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        g.add_edge("file:b", EdgeKind::Imports, "file:a")
            .await
            .unwrap();
        let result = g.traverse("file:a", &EdgeKind::Imports, 10);
        // Only one unique non-seed node reachable.
        assert_eq!(result.len(), 1);
        assert!(result.contains(&"file:b".to_string()));
    }

    /// Diamond: a→b, a→c, b→d, c→d — d should appear exactly once.
    #[tokio::test]
    async fn traverse_diamond_no_duplicates() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        g.add_edge("file:a", EdgeKind::Imports, "file:c")
            .await
            .unwrap();
        g.add_edge("file:b", EdgeKind::Imports, "file:d")
            .await
            .unwrap();
        g.add_edge("file:c", EdgeKind::Imports, "file:d")
            .await
            .unwrap();
        let result = g.traverse("file:a", &EdgeKind::Imports, 3);
        assert_eq!(result.len(), 3, "b, c, d — no duplicates");
        assert!(result.contains(&"file:b".to_string()));
        assert!(result.contains(&"file:c".to_string()));
        assert!(result.contains(&"file:d".to_string()));
    }

    /// depth=0 always returns empty, even when the seed has outgoing edges.
    #[tokio::test]
    async fn traverse_depth_zero_returns_empty() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        assert!(g.traverse("file:a", &EdgeKind::Imports, 0).is_empty());
    }

    /// Multiple edge kinds between the same pair are stored independently.
    /// Removing one must not affect the other.
    #[tokio::test]
    async fn multiple_kinds_between_same_pair_are_independent() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        g.add_edge("file:a", EdgeKind::CoChanges, "file:b")
            .await
            .unwrap();
        assert_eq!(g.edge_count(), 2);

        g.remove_edge("file:a", &EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        assert_eq!(g.edge_count(), 1);
        assert!(g.neighbors("file:a", &EdgeKind::Imports).is_empty());
        assert_eq!(g.neighbors("file:a", &EdgeKind::CoChanges), vec!["file:b"]);
    }

    /// remove then add the same edge — edge_set must let the re-add through.
    #[tokio::test]
    async fn remove_then_readd_edge_works() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        g.remove_edge("file:a", &EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        assert_eq!(g.edge_count(), 0);
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        assert_eq!(g.edge_count(), 1);
        assert_eq!(g.neighbors("file:a", &EdgeKind::Imports), vec!["file:b"]);
    }

    /// Removing edges does not shrink node_count — petgraph keeps orphan nodes.
    #[tokio::test]
    async fn node_count_stable_after_edge_removal() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        assert_eq!(g.node_count(), 2);
        g.remove_edge("file:a", &EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        assert_eq!(g.node_count(), 2, "nodes are never removed from the graph");
    }

    /// Two disconnected components must not bleed into each other's traversal.
    /// Graph is directed — traversal from the target of an edge must not
    /// reach the source unless a reverse edge is also present.
    #[tokio::test]
    async fn traverse_incoming_finds_sources() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        g.add_edge("file:c", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        // Two files import b — traverse_incoming from b should find both.
        let sources = g.traverse_incoming("file:b", &EdgeKind::Imports, 1);
        assert_eq!(sources.len(), 2);
        assert!(sources.contains(&"file:a".to_string()));
        assert!(sources.contains(&"file:c".to_string()));
    }

    #[tokio::test]
    async fn traverse_incoming_does_not_return_outgoing() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        // traverse outgoing from a gives b; traverse_incoming from a gives nothing.
        assert!(g
            .traverse_incoming("file:a", &EdgeKind::Imports, 5)
            .is_empty());
    }

    #[tokio::test]
    async fn traverse_incoming_multi_hop() {
        let (mut g, _dir) = temp_graph().await;
        // Chain: c → b → a  (c imports b, b imports a)
        g.add_edge("file:b", EdgeKind::Imports, "file:a")
            .await
            .unwrap();
        g.add_edge("file:c", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        // 1 hop from a: only b
        let one = g.traverse_incoming("file:a", &EdgeKind::Imports, 1);
        assert_eq!(one, vec!["file:b"]);
        // 2 hops from a: b and c
        let two = g.traverse_incoming("file:a", &EdgeKind::Imports, 2);
        assert!(two.contains(&"file:b".to_string()));
        assert!(two.contains(&"file:c".to_string()));
    }

    #[tokio::test]
    async fn neighbors_incoming_returns_direct_sources_only() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:x", EdgeKind::HasGotcha, "gotcha:y")
            .await
            .unwrap();
        g.add_edge("file:z", EdgeKind::HasGotcha, "gotcha:y")
            .await
            .unwrap();
        let sources = g.neighbors_incoming("gotcha:y", &EdgeKind::HasGotcha);
        assert_eq!(sources.len(), 2);
        assert!(sources.contains(&"file:x".to_string()));
        assert!(sources.contains(&"file:z".to_string()));
    }

    #[tokio::test]
    async fn traverse_is_directed() {
        let (mut g, _dir) = temp_graph().await;
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        // Forward: a can reach b.
        assert!(!g.traverse("file:a", &EdgeKind::Imports, 1).is_empty());
        // Reverse: b cannot reach a — no back edge exists.
        assert!(g.traverse("file:b", &EdgeKind::Imports, 5).is_empty());
    }

    /// Adding the same edge in two separate sessions must not duplicate it in
    /// the store. The second session loads it from SurrealKV, detects it in
    /// edge_set, and skips the write.
    #[tokio::test]
    async fn add_edge_idempotent_across_sessions() {
        let dir = TempDir::new().unwrap();
        for _ in 0..2 {
            let store = Store::open(dir.path()).await.unwrap();
            let mut g = Graph::load(store).await.unwrap();
            g.add_edge("file:a", EdgeKind::Imports, "file:b")
                .await
                .unwrap();
            g.close().await.unwrap();
        }
        let store = Store::open(dir.path()).await.unwrap();
        let g = Graph::load(store).await.unwrap();
        assert_eq!(g.edge_count(), 1);
        // Store should also contain exactly one edge record.
        let keys = g.store.scan_keys("graph:edge:").await.unwrap();
        assert_eq!(keys.len(), 1);
    }

    #[tokio::test]
    async fn disconnected_components_do_not_bleed() {
        let (mut g, _dir) = temp_graph().await;
        // Component 1: a → b → c
        g.add_edge("file:a", EdgeKind::Imports, "file:b")
            .await
            .unwrap();
        g.add_edge("file:b", EdgeKind::Imports, "file:c")
            .await
            .unwrap();
        // Component 2: x → y
        g.add_edge("file:x", EdgeKind::Imports, "file:y")
            .await
            .unwrap();

        let from_a = g.traverse("file:a", &EdgeKind::Imports, 10);
        assert!(!from_a.contains(&"file:x".to_string()));
        assert!(!from_a.contains(&"file:y".to_string()));

        let from_x = g.traverse("file:x", &EdgeKind::Imports, 10);
        assert!(!from_x.contains(&"file:a".to_string()));
        assert!(!from_x.contains(&"file:b".to_string()));
    }

    /// graph:edge:* keys that don't parse as valid edges (corrupt or manually
    /// inserted records) must be silently skipped during load — not panic or error.
    #[tokio::test]
    async fn load_skips_unparseable_edge_keys() {
        let dir = TempDir::new().unwrap();
        {
            let store = Store::open(dir.path()).await.unwrap();
            let mut g = Graph::load(store).await.unwrap();

            // Add one legitimate edge.
            g.add_edge("file:a", EdgeKind::Imports, "file:b")
                .await
                .unwrap();

            // Manually insert a record whose key has the graph:edge: prefix
            // but is not a valid edge key (no parseable from/kind/to triple).
            let corrupt_key = "graph:edge:this_is_not_parseable";
            let record = make_edge_stub_record(corrupt_key);
            g.store.put(corrupt_key, &record).await.unwrap();

            g.close().await.unwrap();
        }
        // Reload — must not panic, must skip the corrupt key.
        let store2 = Store::open(dir.path()).await.unwrap();
        let g2 = Graph::load(store2).await.unwrap();
        assert_eq!(g2.edge_count(), 1, "only the valid edge should be loaded");
        assert_eq!(g2.neighbors("file:a", &EdgeKind::Imports), vec!["file:b"]);
    }

    /// Corrupt edge keys whose `to` endpoint is not a valid node key must be
    /// skipped during load instead of creating phantom graph nodes.
    #[tokio::test]
    async fn load_skips_edge_keys_with_invalid_to_endpoint() {
        let dir = TempDir::new().unwrap();
        {
            let store = Store::open(dir.path()).await.unwrap();
            let mut g = Graph::load(store).await.unwrap();

            g.add_edge("file:a", EdgeKind::Imports, "file:b")
                .await
                .unwrap();

            let corrupt_key = "graph:edge:file:a:imports:unknown_ns:target";
            let record = make_edge_stub_record(corrupt_key);
            g.store.put(corrupt_key, &record).await.unwrap();

            g.close().await.unwrap();
        }

        let store2 = Store::open(dir.path()).await.unwrap();
        let g2 = Graph::load(store2).await.unwrap();
        assert_eq!(g2.edge_count(), 1, "corrupt edge key must be skipped");
        assert_eq!(g2.neighbors("file:a", &EdgeKind::Imports), vec!["file:b"]);
        assert!(
            !g2.node_index.contains_key("unknown_ns:target"),
            "invalid to endpoint must not create a phantom node"
        );
    }

    /// Load 100 pre-persisted edges from SurrealKV — validates the bulk load path.
    #[tokio::test]
    async fn load_100_edges_from_store() {
        let dir = TempDir::new().unwrap();
        let n = 100usize;
        {
            let store = Store::open(dir.path()).await.unwrap();
            let mut g = Graph::load(store).await.unwrap();
            for i in 0..n {
                g.add_edge(
                    &format!("file:src/mod{i}.rs"),
                    EdgeKind::Imports,
                    &format!("file:src/dep{i}.rs"),
                )
                .await
                .unwrap();
            }
            g.close().await.unwrap();
        }
        let store2 = Store::open(dir.path()).await.unwrap();
        let g2 = Graph::load(store2).await.unwrap();
        assert_eq!(g2.edge_count(), n);
        assert_eq!(g2.node_count(), n * 2);
        assert_eq!(
            g2.neighbors("file:src/mod0.rs", &EdgeKind::Imports),
            vec!["file:src/dep0.rs"]
        );
        assert_eq!(
            g2.neighbors(&format!("file:src/mod{}.rs", n - 1), &EdgeKind::Imports),
            vec![format!("file:src/dep{}.rs", n - 1)]
        );
    }

    #[tokio::test]
    async fn add_edges_batch_correctness() {
        let (mut g, _dir) = temp_graph().await;
        let batch = vec![
            (
                "file:a".to_string(),
                EdgeKind::Imports,
                "file:b".to_string(),
            ),
            (
                "file:a".to_string(),
                EdgeKind::HasGotcha,
                "gotcha:x".to_string(),
            ),
            (
                "file:b".to_string(),
                EdgeKind::CoChanges,
                "file:c".to_string(),
            ),
        ];
        g.add_edges_batch(&batch).await.unwrap();
        assert_eq!(g.edge_count(), 3);
        assert_eq!(g.neighbors("file:a", &EdgeKind::Imports), vec!["file:b"]);
        assert_eq!(
            g.neighbors("file:a", &EdgeKind::HasGotcha),
            vec!["gotcha:x"]
        );
        assert_eq!(g.neighbors("file:b", &EdgeKind::CoChanges), vec!["file:c"]);
    }

    #[tokio::test]
    async fn add_edges_batch_is_idempotent() {
        let (mut g, _dir) = temp_graph().await;
        let batch = vec![(
            "file:a".to_string(),
            EdgeKind::Imports,
            "file:b".to_string(),
        )];
        g.add_edges_batch(&batch).await.unwrap();
        g.add_edges_batch(&batch).await.unwrap();
        g.add_edges_batch(&batch).await.unwrap();
        assert_eq!(g.edge_count(), 1);
        let keys = g.store.scan_keys("graph:edge:").await.unwrap();
        assert_eq!(
            keys.len(),
            1,
            "store must have exactly 1 record after duplicate batches"
        );
    }

    #[tokio::test]
    async fn add_edges_batch_survives_reload() {
        let dir = TempDir::new().unwrap();
        {
            let store = Store::open(dir.path()).await.unwrap();
            let mut g = Graph::load(store).await.unwrap();
            let batch: Vec<(String, EdgeKind, String)> = (0..50)
                .map(|i| {
                    (
                        format!("file:a{i}"),
                        EdgeKind::Imports,
                        format!("file:b{i}"),
                    )
                })
                .collect();
            g.add_edges_batch(&batch).await.unwrap();
            g.close().await.unwrap();
        }
        let store2 = Store::open(dir.path()).await.unwrap();
        let g2 = Graph::load(store2).await.unwrap();
        assert_eq!(g2.edge_count(), 50);
    }

    /// Perf regression guard — flaky on CI runners with variable load.
    /// Run with: `cargo test --lib add_edges_batch_faster -- --ignored`
    #[tokio::test]
    #[ignore]
    async fn add_edges_batch_faster_than_sequential() {
        use std::time::Instant;
        let edges: Vec<(String, EdgeKind, String)> = (0..500)
            .map(|i| {
                (
                    format!("file:m{i}"),
                    EdgeKind::Imports,
                    format!("file:d{i}"),
                )
            })
            .collect();

        // Sequential baseline.
        let dir_seq = TempDir::new().unwrap();
        let store_seq = Store::open(dir_seq.path()).await.unwrap();
        let mut g_seq = Graph::load(store_seq).await.unwrap();
        let seq_start = Instant::now();
        for (from, kind, to) in &edges {
            g_seq.add_edge(from, kind.clone(), to).await.unwrap();
        }
        let seq_ms = seq_start.elapsed().as_millis();

        // Batch.
        let dir_bat = TempDir::new().unwrap();
        let store_bat = Store::open(dir_bat.path()).await.unwrap();
        let mut g_bat = Graph::load(store_bat).await.unwrap();
        let bat_start = Instant::now();
        g_bat.add_edges_batch(&edges).await.unwrap();
        let bat_ms = bat_start.elapsed().as_millis();

        assert!(
            bat_ms < seq_ms,
            "add_edges_batch ({bat_ms}ms) was not faster than sequential add_edge ({seq_ms}ms)"
        );
        assert_eq!(g_bat.edge_count(), 500);
    }

    /// Stress test: 1,200 edges across all 10 EdgeKind variants — matching the
    /// upper bound of what Layer 0 static analysis produces on a real repo.
    /// Verifies correctness of edge_count, traversal, reverse traversal,
    /// duplicate rejection, and full persist + reload cycle.
    #[tokio::test]
    async fn stress_1200_edges_layer0_scale() {
        use std::time::Instant;

        let dir = TempDir::new().unwrap();
        let n_files = 120usize; // 120 files × 10 kinds = 1,200 edges
        let all_kinds = [
            EdgeKind::HasGotcha,
            EdgeKind::Imports,
            EdgeKind::AffectedBy,
            EdgeKind::HasNote,
            EdgeKind::DiscoveredIn,
            EdgeKind::CausedBy,
            EdgeKind::Supersedes,
            EdgeKind::Touched,
            EdgeKind::DependencyAffects,
            EdgeKind::CoChanges,
        ];

        // ── Session 1: build the graph via add_edges_batch ──────────────────
        let build_start = Instant::now();
        {
            let store = Store::open(dir.path()).await.unwrap();
            let mut g = Graph::load(store).await.unwrap();
            let batch: Vec<(String, EdgeKind, String)> = (0..n_files)
                .flat_map(|i| {
                    all_kinds.iter().map(move |kind| {
                        (
                            format!("file:src/module{i}.rs"),
                            kind.clone(),
                            format!("file:src/target{i}.rs"),
                        )
                    })
                })
                .collect();
            g.add_edges_batch(&batch).await.unwrap();
            assert_eq!(g.edge_count(), 1_200);
            assert_eq!(g.node_count(), n_files * 2);
            g.close().await.unwrap();
        }
        let build_ms = build_start.elapsed().as_millis();

        // ── Session 2: reload and verify ─────────────────────────────────────
        let load_start = Instant::now();
        let store2 = Store::open(dir.path()).await.unwrap();
        let g2 = Graph::load(store2).await.unwrap();
        let load_ms = load_start.elapsed().as_millis();

        assert_eq!(g2.edge_count(), 1_200, "all edges must survive reload");
        assert_eq!(g2.node_count(), n_files * 2);

        // Spot-check every kind on a mid-range file.
        let mid = n_files / 2;
        for kind in &all_kinds {
            let fwd = g2.neighbors(&format!("file:src/module{mid}.rs"), kind);
            assert_eq!(fwd.len(), 1, "forward: {kind:?}");
            assert_eq!(fwd[0], format!("file:src/target{mid}.rs"));

            let rev = g2.neighbors_incoming(&format!("file:src/target{mid}.rs"), kind);
            assert_eq!(rev.len(), 1, "reverse: {kind:?}");
            assert_eq!(rev[0], format!("file:src/module{mid}.rs"));
        }
        g2.close().await.unwrap();

        // ── Duplicate rejection at scale ─────────────────────────────────────
        // Re-adding all 1,200 edges must be a no-op — edge_count stays at 1,200.
        let store3 = Store::open(dir.path()).await.unwrap();
        let mut g3 = Graph::load(store3).await.unwrap();
        for i in 0..n_files {
            for kind in &all_kinds {
                g3.add_edge(
                    &format!("file:src/module{i}.rs"),
                    kind.clone(),
                    &format!("file:src/target{i}.rs"),
                )
                .await
                .unwrap();
            }
        }
        assert_eq!(
            g3.edge_count(),
            1_200,
            "duplicate adds must not grow the graph"
        );
        let store_keys = g3.store.scan_keys("graph:edge:").await.unwrap();
        assert_eq!(
            store_keys.len(),
            1_200,
            "store must not contain duplicate records"
        );

        // ── Traversal correctness on a hub node ──────────────────────────────
        // Connect all 120 source files to a single hub via CoChanges.
        for i in 0..n_files {
            g3.add_edge(
                &format!("file:src/module{i}.rs"),
                EdgeKind::CoChanges,
                "file:src/hub.rs",
            )
            .await
            .unwrap();
        }
        let hub_sources = g3.neighbors_incoming("file:src/hub.rs", &EdgeKind::CoChanges);
        assert_eq!(
            hub_sources.len(),
            n_files,
            "hub must have {n_files} incoming CoChanges"
        );

        // ── Timing assertions ─────────────────────────────────────────────────
        // Build uses add_edges_batch → 1 fsync. Load is sequential reads.
        // Both should be well under 1s in debug, <50ms in release.
        // Bounds are intentionally generous for slow CI machines.
        println!("stress_1200  build={build_ms}ms  load={load_ms}ms");
        assert!(
            load_ms < 500,
            "graph load took {load_ms}ms — expected <500ms for 1,200 edges"
        );
        assert!(
            build_ms < 5_000,
            "graph build took {build_ms}ms — expected <5s for 1,200 edges (1 fsync via batch)"
        );
    }

    /// Stress test: 15,000 edges — realistic medium-large production repo.
    /// 1,500 files × 10 EdgeKind variants; exercises batch write, key-only
    /// scan on reload, and duplicate rejection at production scale.
    #[tokio::test]
    async fn stress_15000_edges_production_scale() {
        use std::time::Instant;

        let dir = TempDir::new().unwrap();
        let n_files = 1_500usize; // 1,500 files × 10 kinds = 15,000 edges
        let all_kinds = [
            EdgeKind::HasGotcha,
            EdgeKind::Imports,
            EdgeKind::AffectedBy,
            EdgeKind::HasNote,
            EdgeKind::DiscoveredIn,
            EdgeKind::CausedBy,
            EdgeKind::Supersedes,
            EdgeKind::Touched,
            EdgeKind::DependencyAffects,
            EdgeKind::CoChanges,
        ];

        // ── Session 1: build the graph via add_edges_batch ──────────────────
        let build_start = Instant::now();
        {
            let store = Store::open(dir.path()).await.unwrap();
            let mut g = Graph::load(store).await.unwrap();
            let batch: Vec<(String, EdgeKind, String)> = (0..n_files)
                .flat_map(|i| {
                    all_kinds.iter().map(move |kind| {
                        (
                            format!("file:src/module{i}.rs"),
                            kind.clone(),
                            format!("file:src/target{i}.rs"),
                        )
                    })
                })
                .collect();
            g.add_edges_batch(&batch).await.unwrap();
            assert_eq!(g.edge_count(), 15_000);
            assert_eq!(g.node_count(), n_files * 2);
            g.close().await.unwrap();
        }
        let build_ms = build_start.elapsed().as_millis();

        // ── Session 2: reload and verify ─────────────────────────────────────
        let load_start = Instant::now();
        let store2 = Store::open(dir.path()).await.unwrap();
        let g2 = Graph::load(store2).await.unwrap();
        let load_ms = load_start.elapsed().as_millis();

        assert_eq!(g2.edge_count(), 15_000, "all edges must survive reload");
        assert_eq!(g2.node_count(), n_files * 2);

        // Spot-check every kind on a mid-range file.
        let mid = n_files / 2;
        for kind in &all_kinds {
            let fwd = g2.neighbors(&format!("file:src/module{mid}.rs"), kind);
            assert_eq!(fwd.len(), 1, "forward: {kind:?}");
            assert_eq!(fwd[0], format!("file:src/target{mid}.rs"));

            let rev = g2.neighbors_incoming(&format!("file:src/target{mid}.rs"), kind);
            assert_eq!(rev.len(), 1, "reverse: {kind:?}");
            assert_eq!(rev[0], format!("file:src/module{mid}.rs"));
        }
        g2.close().await.unwrap();

        // ── Duplicate rejection at scale ─────────────────────────────────────
        // Re-adding the same batch must be a no-op.
        let store3 = Store::open(dir.path()).await.unwrap();
        let mut g3 = Graph::load(store3).await.unwrap();
        let dup_batch: Vec<(String, EdgeKind, String)> = (0..n_files)
            .flat_map(|i| {
                all_kinds.iter().map(move |kind| {
                    (
                        format!("file:src/module{i}.rs"),
                        kind.clone(),
                        format!("file:src/target{i}.rs"),
                    )
                })
            })
            .collect();
        g3.add_edges_batch(&dup_batch).await.unwrap();
        assert_eq!(
            g3.edge_count(),
            15_000,
            "duplicate adds must not grow the graph"
        );
        let store_keys = g3.store.scan_keys("graph:edge:").await.unwrap();
        assert_eq!(
            store_keys.len(),
            15_000,
            "store must not contain duplicate records"
        );

        // ── Traversal correctness on a hub node ──────────────────────────────
        // Connect all 1,500 source files to a single hub via CoChanges.
        let hub_batch: Vec<(String, EdgeKind, String)> = (0..n_files)
            .map(|i| {
                (
                    format!("file:src/module{i}.rs"),
                    EdgeKind::CoChanges,
                    "file:src/hub.rs".to_string(),
                )
            })
            .collect();
        g3.add_edges_batch(&hub_batch).await.unwrap();
        let hub_sources = g3.neighbors_incoming("file:src/hub.rs", &EdgeKind::CoChanges);
        assert_eq!(
            hub_sources.len(),
            n_files,
            "hub must have {n_files} incoming CoChanges"
        );

        // ── Timing assertions ─────────────────────────────────────────────────
        println!("stress_15000  build={build_ms}ms  load={load_ms}ms");
        assert!(
            load_ms < 2_000,
            "graph load took {load_ms}ms — expected <2s for 15,000 edges"
        );
        assert!(
            build_ms < 10_000,
            "graph build took {build_ms}ms — expected <10s for 15,000 edges (1 fsync via batch)"
        );
    }

    /// Stress test: 100,000 edges — monorepo scale ceiling.
    /// 10,000 files × 10 EdgeKind variants; this is the upper bound for any
    /// real-world repo mati will encounter. Validates that batch write, key-only
    /// scan, and in-memory petgraph all hold up without degradation.
    #[tokio::test]
    async fn stress_100000_edges_monorepo_scale() {
        use std::time::Instant;

        let dir = TempDir::new().unwrap();
        let n_files = 10_000usize; // 10,000 files × 10 kinds = 100,000 edges
        let all_kinds = [
            EdgeKind::HasGotcha,
            EdgeKind::Imports,
            EdgeKind::AffectedBy,
            EdgeKind::HasNote,
            EdgeKind::DiscoveredIn,
            EdgeKind::CausedBy,
            EdgeKind::Supersedes,
            EdgeKind::Touched,
            EdgeKind::DependencyAffects,
            EdgeKind::CoChanges,
        ];

        // ── Session 1: build the graph via add_edges_batch ──────────────────
        let build_start = Instant::now();
        {
            let store = Store::open(dir.path()).await.unwrap();
            let mut g = Graph::load(store).await.unwrap();
            let batch: Vec<(String, EdgeKind, String)> = (0..n_files)
                .flat_map(|i| {
                    all_kinds.iter().map(move |kind| {
                        (
                            format!("file:src/module{i}.rs"),
                            kind.clone(),
                            format!("file:src/target{i}.rs"),
                        )
                    })
                })
                .collect();
            g.add_edges_batch(&batch).await.unwrap();
            assert_eq!(g.edge_count(), 100_000);
            assert_eq!(g.node_count(), n_files * 2);
            g.close().await.unwrap();
        }
        let build_ms = build_start.elapsed().as_millis();

        // ── Session 2: reload and verify ─────────────────────────────────────
        let load_start = Instant::now();
        let store2 = Store::open(dir.path()).await.unwrap();
        let g2 = Graph::load(store2).await.unwrap();
        let load_ms = load_start.elapsed().as_millis();

        assert_eq!(g2.edge_count(), 100_000, "all edges must survive reload");
        assert_eq!(g2.node_count(), n_files * 2);

        // Spot-check every kind on a mid-range file.
        let mid = n_files / 2;
        for kind in &all_kinds {
            let fwd = g2.neighbors(&format!("file:src/module{mid}.rs"), kind);
            assert_eq!(fwd.len(), 1, "forward: {kind:?}");
            assert_eq!(fwd[0], format!("file:src/target{mid}.rs"));

            let rev = g2.neighbors_incoming(&format!("file:src/target{mid}.rs"), kind);
            assert_eq!(rev.len(), 1, "reverse: {kind:?}");
            assert_eq!(rev[0], format!("file:src/module{mid}.rs"));
        }
        g2.close().await.unwrap();

        // ── Duplicate rejection at scale ─────────────────────────────────────
        let store3 = Store::open(dir.path()).await.unwrap();
        let mut g3 = Graph::load(store3).await.unwrap();
        let dup_batch: Vec<(String, EdgeKind, String)> = (0..n_files)
            .flat_map(|i| {
                all_kinds.iter().map(move |kind| {
                    (
                        format!("file:src/module{i}.rs"),
                        kind.clone(),
                        format!("file:src/target{i}.rs"),
                    )
                })
            })
            .collect();
        g3.add_edges_batch(&dup_batch).await.unwrap();
        assert_eq!(
            g3.edge_count(),
            100_000,
            "duplicate adds must not grow the graph"
        );
        let store_keys = g3.store.scan_keys("graph:edge:").await.unwrap();
        assert_eq!(
            store_keys.len(),
            100_000,
            "store must not contain duplicate records"
        );

        // ── Hub traversal: 10,000 incoming edges on a single node ─────────────
        let hub_batch: Vec<(String, EdgeKind, String)> = (0..n_files)
            .map(|i| {
                (
                    format!("file:src/module{i}.rs"),
                    EdgeKind::CoChanges,
                    "file:src/hub.rs".to_string(),
                )
            })
            .collect();
        g3.add_edges_batch(&hub_batch).await.unwrap();
        let hub_sources = g3.neighbors_incoming("file:src/hub.rs", &EdgeKind::CoChanges);
        assert_eq!(
            hub_sources.len(),
            n_files,
            "hub must have {n_files} incoming CoChanges"
        );

        // ── Timing assertions ─────────────────────────────────────────────────
        println!("stress_100000  build={build_ms}ms  load={load_ms}ms");
        assert!(
            load_ms < 5_000,
            "graph load took {load_ms}ms — expected <5s for 100,000 edges"
        );
        assert!(
            build_ms < 30_000,
            "graph build took {build_ms}ms — expected <30s for 100,000 edges (1 fsync via batch)"
        );
    }

    /// Stress test: 700,000 edges — Linux kernel scale.
    /// The Linux kernel has ~70,000 source + header files. At 10 EdgeKind
    /// variants each this represents the absolute ceiling of what mati will
    /// ever index. If this passes, mati handles any real-world repo.
    ///
    /// Ignored by default — running alongside the rest of the test suite
    /// saturates APFS fsync + logd firehose on macOS (kernel watchdog
    /// panic). Run explicitly:
    ///   cargo test stress_700000 -- --ignored --test-threads=1 --nocapture
    #[tokio::test]
    #[ignore = "linux-scale stress: run with `cargo test stress_700000 -- --ignored --test-threads=1`"]
    async fn stress_700000_edges_linux_kernel_scale() {
        use std::time::Instant;

        let dir = TempDir::new().unwrap();
        let n_files = 70_000usize; // 70,000 files × 10 kinds = 700,000 edges
        let all_kinds = [
            EdgeKind::HasGotcha,
            EdgeKind::Imports,
            EdgeKind::AffectedBy,
            EdgeKind::HasNote,
            EdgeKind::DiscoveredIn,
            EdgeKind::CausedBy,
            EdgeKind::Supersedes,
            EdgeKind::Touched,
            EdgeKind::DependencyAffects,
            EdgeKind::CoChanges,
        ];

        // ── Step 1: batch Vec construction ──────────────────────────────────
        let t0 = Instant::now();
        let batch: Vec<(String, EdgeKind, String)> = (0..n_files)
            .flat_map(|i| {
                all_kinds.iter().map(move |kind| {
                    (
                        format!("file:src/module{i}.rs"),
                        kind.clone(),
                        format!("file:src/target{i}.rs"),
                    )
                })
            })
            .collect();
        let batch_construct_ms = t0.elapsed().as_millis();

        // ── Step 2: Store::open + Graph::load (empty) ───────────────────────
        let t1 = Instant::now();
        let store = Store::open(dir.path()).await.unwrap();
        let mut g = Graph::load(store).await.unwrap();
        let open_ms = t1.elapsed().as_millis();

        // ── Step 3: add_edges_batch (SurrealKV writes + in-memory insert) ───
        let t2 = Instant::now();
        g.add_edges_batch(&batch).await.unwrap();
        let add_batch_ms = t2.elapsed().as_millis();

        // ── Step 4: g.close() (flush / drop SurrealKV) ──────────────────────
        let t3 = Instant::now();
        assert_eq!(g.edge_count(), 700_000);
        g.close().await.unwrap();
        let close_ms = t3.elapsed().as_millis();

        // ── Step 5: Store::open (cold reopen) ───────────────────────────────
        let t4 = Instant::now();
        let store2 = Store::open(dir.path()).await.unwrap();
        let reopen_ms = t4.elapsed().as_millis();

        // ── Step 6: Graph::load (scan_keys + petgraph rebuild) ───────────────
        let t5 = Instant::now();
        let g2 = Graph::load(store2).await.unwrap();
        let graph_load_ms = t5.elapsed().as_millis();

        assert_eq!(g2.edge_count(), 700_000, "all edges must survive reload");
        assert_eq!(g2.node_count(), n_files * 2);

        // ── Step 7: traversal (neighbors on hub) ─────────────────────────────
        // Simulates a widely-included header (e.g. linux/types.h).
        // Close g2 first — SurrealKV only allows one writer per db path.
        // Spot-check before closing.
        let mid = n_files / 2;
        for kind in &all_kinds {
            let fwd = g2.neighbors(&format!("file:src/module{mid}.rs"), kind);
            assert_eq!(fwd.len(), 1, "forward: {kind:?}");
            let rev = g2.neighbors_incoming(&format!("file:src/target{mid}.rs"), kind);
            assert_eq!(rev.len(), 1, "reverse: {kind:?}");
        }
        g2.close().await.unwrap();

        let store3 = Store::open(dir.path()).await.unwrap();
        let mut g3 = Graph::load(store3).await.unwrap();
        let hub_batch: Vec<(String, EdgeKind, String)> = (0..n_files)
            .map(|i| {
                (
                    format!("file:src/module{i}.rs"),
                    EdgeKind::Imports,
                    "file:include/linux/types.h".to_string(),
                )
            })
            .collect();
        g3.add_edges_batch(&hub_batch).await.unwrap();
        let t6 = Instant::now();
        let hub_sources = g3.neighbors_incoming("file:include/linux/types.h", &EdgeKind::Imports);
        let traversal_us = t6.elapsed().as_micros();
        assert_eq!(hub_sources.len(), n_files);

        // ── Breakdown ─────────────────────────────────────────────────────────
        let build_ms = batch_construct_ms + open_ms + add_batch_ms + close_ms;
        let load_ms = reopen_ms + graph_load_ms;
        println!("\nstress_700000  Linux kernel scale — step breakdown");
        println!("  BUILD  total={build_ms}ms");
        println!("    batch Vec construction : {batch_construct_ms}ms");
        println!("    Store::open (empty)    : {open_ms}ms");
        println!(
            "    add_edges_batch        : {add_batch_ms}ms  ← SurrealKV writes + in-mem insert"
        );
        println!("    g.close / flush        : {close_ms}ms");
        println!("  LOAD   total={load_ms}ms");
        println!("    Store::open (cold)     : {reopen_ms}ms");
        println!(
            "    Graph::load (scan+petgraph): {graph_load_ms}ms  ← scan_keys + DiGraph rebuild"
        );
        println!("  TRAVERSAL");
        println!("    neighbors_incoming (70k edges): {traversal_us}µs  ← pure RAM");

        assert!(build_ms < 60_000, "build took {build_ms}ms");
        assert!(load_ms < 30_000, "load took {load_ms}ms");
    }
}