terraphim_agent 1.20.3

Terraphim AI Agent CLI - Command-line interface with interactive REPL and ASCII graph visualization
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
//! Shared learning store implementation
//!
//! Provides markdown-backed storage with BM25-based deduplication
//! and trust-gated promotion logic.

use std::collections::HashMap;

use chrono::Utc;
use tokio::sync::RwLock;
use tracing::{debug, info, warn};

use crate::shared_learning::markdown_store::{
    MarkdownLearningStore, MarkdownStoreConfig, MarkdownStoreError,
};
use crate::shared_learning::types::{SharedLearning, TrustLevel};
pub use terraphim_types::shared_learning::StoreError;
use terraphim_types::shared_learning::SuggestionStatus;

impl From<MarkdownStoreError> for StoreError {
    fn from(e: MarkdownStoreError) -> Self {
        StoreError::Persistence(e.to_string())
    }
}

#[derive(Debug, Clone)]
pub struct StoreConfig {
    pub similarity_threshold: f64,
    pub auto_promote_l2: bool,
    pub markdown: MarkdownStoreConfig,
}

impl Default for StoreConfig {
    fn default() -> Self {
        Self {
            similarity_threshold: 0.8,
            auto_promote_l2: true,
            markdown: MarkdownStoreConfig::default(),
        }
    }
}

impl StoreConfig {
    pub fn with_similarity_threshold(mut self, threshold: f64) -> Self {
        self.similarity_threshold = threshold.clamp(0.0, 1.0);
        self
    }

    pub fn with_markdown_config(mut self, config: MarkdownStoreConfig) -> Self {
        self.markdown = config;
        self
    }
}

/// BM25 scoring for text similarity
pub struct Bm25Scorer {
    avg_doc_len: f64,
    total_docs: usize,
    idf_cache: HashMap<String, f64>,
}

impl Bm25Scorer {
    pub fn new(total_docs: usize, avg_doc_len: f64) -> Self {
        Self {
            avg_doc_len,
            total_docs,
            idf_cache: HashMap::new(),
        }
    }

    fn calculate_idf(&mut self, term: &str, doc_freq: usize) -> f64 {
        if let Some(&idf) = self.idf_cache.get(term) {
            return idf;
        }

        let n = doc_freq as f64;
        let n_docs = self.total_docs as f64;

        let idf = if n_docs <= 1.0 || n >= n_docs {
            0.5
        } else {
            ((n_docs - n + 0.5) / (n + 0.5)).ln().max(0.0)
        };

        self.idf_cache.insert(term.to_string(), idf);
        idf
    }

    pub fn score(&mut self, query: &str, doc: &str, doc_freqs: &HashMap<String, usize>) -> f64 {
        const K1: f64 = 1.2;
        const B: f64 = 0.75;

        let query_terms: Vec<String> = query
            .to_lowercase()
            .split_whitespace()
            .map(|s| s.to_string())
            .collect();

        let doc_terms: Vec<String> = doc
            .to_lowercase()
            .split_whitespace()
            .map(|s| s.to_string())
            .collect();

        let doc_len = doc_terms.len() as f64;
        let mut score = 0.0;

        let mut doc_tf: HashMap<String, usize> = HashMap::new();
        for term in &doc_terms {
            *doc_tf.entry(term.clone()).or_insert(0) += 1;
        }

        for term in &query_terms {
            let f = *doc_tf.get(term).unwrap_or(&0) as f64;
            let doc_freq = *doc_freqs.get(term).unwrap_or(&1);
            let idf = self.calculate_idf(term, doc_freq);

            let numerator = f * (K1 + 1.0);
            let denominator = f + K1 * (1.0 - B + B * doc_len / self.avg_doc_len);

            score += idf * numerator / denominator;
        }

        score
    }

    pub fn normalize_score(&self, score: f64, query_len: usize) -> f64 {
        if query_len == 0 {
            return 0.0;
        }
        let normalized = (score / query_len as f64).tanh();
        normalized.clamp(0.0, 1.0)
    }
}

pub struct SharedLearningStore {
    backend: MarkdownLearningStore,
    index: RwLock<HashMap<String, SharedLearning>>,
    config: StoreConfig,
    #[cfg(feature = "shared-learning")]
    role_graph: Option<std::sync::RwLock<terraphim_rolegraph::RoleGraph>>,
}

impl SharedLearningStore {
    pub async fn open(config: StoreConfig) -> Result<Self, StoreError> {
        let backend = MarkdownLearningStore::with_config(config.markdown.clone());
        let store = Self {
            backend,
            index: RwLock::new(HashMap::new()),
            config,
            #[cfg(feature = "shared-learning")]
            role_graph: None,
        };
        store.load_all().await?;
        Ok(store)
    }

    async fn load_all(&self) -> Result<(), StoreError> {
        info!("Loading shared learnings from markdown backend");
        let all_learnings = self.backend.list_all_with_origin().await?;
        let discovered = all_learnings.len();

        let mut selected: HashMap<String, (bool, SharedLearning)> = HashMap::new();
        for (is_shared, learning) in all_learnings {
            match selected.get(&learning.id) {
                None => {
                    selected.insert(learning.id.clone(), (is_shared, learning));
                }
                Some((existing_is_shared, _)) => {
                    if *existing_is_shared && !is_shared {
                        selected.insert(learning.id.clone(), (is_shared, learning));
                    }
                }
            }
        }

        let mut index = self.index.write().await;
        for (_, learning) in selected.into_values() {
            index.insert(learning.id.clone(), learning);
        }
        let loaded = index.len();
        drop(index);

        info!(
            "Loaded {} shared learnings into index ({} discovered)",
            loaded, discovered
        );
        Ok(())
    }

    async fn persist(&self, learning: &SharedLearning) -> Result<(), StoreError> {
        self.backend.save(learning).await?;
        Ok(())
    }

    pub async fn insert(&self, learning: SharedLearning) -> Result<(), StoreError> {
        let id = learning.id.clone();
        self.persist(&learning).await?;
        self.index.write().await.insert(id, learning);
        Ok(())
    }

    pub async fn store_with_dedup(
        &self,
        learning: SharedLearning,
    ) -> Result<StoreResult, StoreError> {
        let search_text = learning.extract_searchable_text();
        let query_lower = search_text.to_lowercase();

        let index = self.index.read().await;
        let all_learnings: Vec<SharedLearning> = index.values().cloned().collect();
        drop(index);

        if !all_learnings.is_empty() {
            let mut doc_freqs: HashMap<String, usize> = HashMap::new();
            let mut total_doc_len = 0;

            for doc in &all_learnings {
                let text = doc.extract_searchable_text();
                let terms: std::collections::HashSet<String> = text
                    .to_lowercase()
                    .split_whitespace()
                    .map(|s| s.to_string())
                    .collect();
                total_doc_len += terms.len();
                for term in &terms {
                    *doc_freqs.entry(term.clone()).or_insert(0) += 1;
                }
            }

            let avg_doc_len = total_doc_len as f64 / all_learnings.len() as f64;
            let mut scorer = Bm25Scorer::new(all_learnings.len(), avg_doc_len);
            let query_len = query_lower.split_whitespace().count();

            let best_match = all_learnings
                .iter()
                .map(|doc| {
                    let doc_text = doc.extract_searchable_text();
                    let raw_score = scorer.score(&query_lower, &doc_text, &doc_freqs);
                    let normalized = scorer.normalize_score(raw_score, query_len);
                    (doc.id.clone(), normalized)
                })
                .max_by(|a, b| a.1.partial_cmp(&b.1).unwrap());

            if let Some((existing_id, score)) = best_match {
                if score >= self.config.similarity_threshold {
                    debug!(
                        "Merging with existing learning {} (score={:.3})",
                        existing_id, score
                    );
                    self.merge_learning(&existing_id, &learning).await?;
                    return Ok(StoreResult::Merged(existing_id));
                }
            }
        }

        let id = learning.id.clone();
        self.insert(learning).await?;
        info!("Created new learning: {}", id);
        Ok(StoreResult::Created)
    }

    async fn merge_learning(
        &self,
        existing_id: &str,
        new_learning: &SharedLearning,
    ) -> Result<(), StoreError> {
        let mut index = self.index.write().await;
        let existing = index
            .get_mut(existing_id)
            .ok_or_else(|| StoreError::NotFound(existing_id.to_string()))?;

        existing.quality.applied_count += new_learning.quality.applied_count;
        existing.quality.effective_count += new_learning.quality.effective_count;

        for agent in &new_learning.quality.agent_names {
            if !existing.quality.agent_names.contains(agent) {
                existing.quality.agent_names.push(agent.clone());
            }
        }

        existing.updated_at = Utc::now();
        let merged = existing.clone();
        drop(index);

        self.persist(&merged).await?;
        Ok(())
    }

    /// Record that a graph query touched this learning
    ///
    /// Increments the applied_count quality metric and persists the update.
    pub async fn record_graph_touch(&self, learning_id: &str) -> Result<(), StoreError> {
        let mut index = self.index.write().await;
        if let Some(learning) = index.get_mut(learning_id) {
            learning.quality.applied_count += 1;
            learning.updated_at = Utc::now();
            let updated = learning.clone();
            drop(index);
            self.persist(&updated).await?;
            Ok(())
        } else {
            Err(StoreError::NotFound(learning_id.to_string()))
        }
    }

    pub async fn get(&self, id: &str) -> Result<SharedLearning, StoreError> {
        let index = self.index.read().await;
        index
            .get(id)
            .cloned()
            .ok_or_else(|| StoreError::NotFound(id.to_string()))
    }

    pub async fn list_all(&self) -> Result<Vec<SharedLearning>, StoreError> {
        let index = self.index.read().await;
        Ok(index.values().cloned().collect())
    }

    pub async fn list_by_trust_level(
        &self,
        level: TrustLevel,
    ) -> Result<Vec<SharedLearning>, StoreError> {
        let index = self.index.read().await;
        Ok(index
            .values()
            .filter(|l| l.trust_level == level)
            .cloned()
            .collect())
    }

    pub async fn promote_to_l1(&self, id: &str) -> Result<(), StoreError> {
        let mut index = self.index.write().await;
        let learning = index
            .get_mut(id)
            .ok_or_else(|| StoreError::NotFound(id.to_string()))?;
        learning.promote_to_l1();
        let updated = learning.clone();
        drop(index);

        self.persist(&updated).await?;
        info!("Promoted learning {} to L1", id);
        Ok(())
    }

    pub async fn promote_to_l2(&self, id: &str) -> Result<(), StoreError> {
        let mut index = self.index.write().await;
        let learning = index
            .get_mut(id)
            .ok_or_else(|| StoreError::NotFound(id.to_string()))?;
        learning.promote_to_l2();
        let updated = learning.clone();
        drop(index);

        self.persist(&updated).await?;
        info!("Promoted learning {} to L2", id);
        Ok(())
    }

    pub async fn promote_to_l3(&self, id: &str) -> Result<(), StoreError> {
        let mut index = self.index.write().await;
        let learning = index
            .get_mut(id)
            .ok_or_else(|| StoreError::NotFound(id.to_string()))?;
        learning.promote_to_l3();
        let updated = learning.clone();
        drop(index);

        self.persist(&updated).await?;
        info!("Promoted learning {} to L3", id);
        Ok(())
    }

    pub async fn list_pending(&self) -> Result<Vec<SharedLearning>, StoreError> {
        self.list_by_status(SuggestionStatus::Pending).await
    }

    pub async fn list_by_status(
        &self,
        status: SuggestionStatus,
    ) -> Result<Vec<SharedLearning>, StoreError> {
        let index = self.index.read().await;
        Ok(index
            .values()
            .filter(|l| l.suggestion_status == status)
            .cloned()
            .collect())
    }

    pub async fn approve(&self, id: &str) -> Result<(), StoreError> {
        let mut index = self.index.write().await;
        let learning = index
            .get_mut(id)
            .ok_or_else(|| StoreError::NotFound(id.to_string()))?;
        learning.suggestion_status = SuggestionStatus::Approved;
        learning.promote_to_l3();
        let updated = learning.clone();
        drop(index);

        self.persist(&updated).await?;
        info!("Approved suggestion {}", id);
        Ok(())
    }

    pub async fn reject(&self, id: &str, reason: Option<&str>) -> Result<(), StoreError> {
        let mut index = self.index.write().await;
        let learning = index
            .get_mut(id)
            .ok_or_else(|| StoreError::NotFound(id.to_string()))?;
        learning.suggestion_status = SuggestionStatus::Rejected;
        learning.rejection_reason = reason.map(|r| r.to_string());
        learning.updated_at = Utc::now();
        let updated = learning.clone();
        drop(index);

        self.persist(&updated).await?;
        info!("Rejected suggestion {}", id);
        Ok(())
    }

    pub async fn record_application(
        &self,
        id: &str,
        agent_name: &str,
        effective: bool,
    ) -> Result<(), StoreError> {
        let mut index = self.index.write().await;
        let learning = index
            .get_mut(id)
            .ok_or_else(|| StoreError::NotFound(id.to_string()))?;

        learning.quality.record_application(agent_name, effective);
        learning.updated_at = Utc::now();

        let should_auto_promote = self.config.auto_promote_l2
            && learning.trust_level == TrustLevel::L1
            && learning.quality.meets_l2_criteria();

        if should_auto_promote {
            learning.promote_to_l2();
            info!("Auto-promoted learning {} to L2", id);
        }

        let updated = learning.clone();
        drop(index);

        self.persist(&updated).await?;
        Ok(())
    }

    pub async fn find_similar(
        &self,
        query: &str,
        limit: usize,
    ) -> Result<Vec<(f64, SharedLearning)>, StoreError> {
        let index = self.index.read().await;
        let all_learnings: Vec<SharedLearning> = index.values().cloned().collect();
        drop(index);

        if all_learnings.is_empty() {
            return Ok(Vec::new());
        }

        let mut doc_freqs: HashMap<String, usize> = HashMap::new();
        let mut total_doc_len = 0;

        for doc in &all_learnings {
            let text = doc.extract_searchable_text();
            let terms: std::collections::HashSet<String> = text
                .to_lowercase()
                .split_whitespace()
                .map(|s| s.to_string())
                .collect();
            total_doc_len += terms.len();
            for term in &terms {
                *doc_freqs.entry(term.clone()).or_insert(0) += 1;
            }
        }

        let avg_doc_len = total_doc_len as f64 / all_learnings.len() as f64;
        let mut scorer = Bm25Scorer::new(all_learnings.len(), avg_doc_len);

        let query_lower = query.to_lowercase();
        let query_len = query_lower.split_whitespace().count();

        let mut scored: Vec<(f64, SharedLearning)> = all_learnings
            .into_iter()
            .map(|doc| {
                let doc_text = doc.extract_searchable_text();
                let raw_score = scorer.score(&query_lower, &doc_text, &doc_freqs);
                let normalized = scorer.normalize_score(raw_score, query_len);
                let weighted = normalized * doc.trust_level.weight() as f64;
                (weighted, doc)
            })
            .filter(|(score, _)| *score > 0.0)
            .collect();

        scored.sort_by(|a, b| b.0.partial_cmp(&a.0).unwrap());

        if scored.len() > limit {
            scored.truncate(limit);
        }

        Ok(scored)
    }

    pub async fn suggest(
        &self,
        context: &str,
        agent_name: &str,
        limit: usize,
    ) -> Result<Vec<SharedLearning>, StoreError> {
        let index = self.index.read().await;
        let applicable: Vec<SharedLearning> = index
            .values()
            .filter(|doc| {
                doc.applicable_agents.is_empty()
                    || doc.applicable_agents.contains(&agent_name.to_string())
            })
            .cloned()
            .collect();
        drop(index);

        if applicable.is_empty() {
            return Ok(Vec::new());
        }

        let mut doc_freqs: HashMap<String, usize> = HashMap::new();
        let mut total_doc_len = 0;

        for doc in &applicable {
            let text = doc.extract_searchable_text();
            let terms: std::collections::HashSet<String> = text
                .to_lowercase()
                .split_whitespace()
                .map(|s| s.to_string())
                .collect();
            total_doc_len += terms.len();
            for term in &terms {
                *doc_freqs.entry(term.clone()).or_insert(0) += 1;
            }
        }

        let avg_doc_len = total_doc_len as f64 / applicable.len() as f64;
        let mut scorer = Bm25Scorer::new(applicable.len(), avg_doc_len);

        let query_lower = context.to_lowercase();
        let query_len = query_lower.split_whitespace().count();

        let mut scored: Vec<SharedLearning> = applicable
            .into_iter()
            .map(|doc| {
                let doc_text = doc.extract_searchable_text();
                let raw_score = scorer.score(&query_lower, &doc_text, &doc_freqs);
                let normalized = scorer.normalize_score(raw_score, query_len);
                let weighted = normalized * doc.trust_level.weight() as f64;
                (doc, weighted)
            })
            .filter(|(_, score)| *score > 0.0)
            .map(|(doc, _)| doc)
            .collect();

        scored.truncate(limit);
        Ok(scored)
    }

    pub async fn close(&self) {
        info!("Shared learning store closed");
    }

    #[cfg(feature = "shared-learning")]
    pub fn set_role_graph(&mut self, graph: terraphim_rolegraph::RoleGraph) {
        self.role_graph = Some(std::sync::RwLock::new(graph));
    }

    #[cfg(feature = "shared-learning")]
    pub fn role_graph(&self) -> Option<&std::sync::RwLock<terraphim_rolegraph::RoleGraph>> {
        self.role_graph.as_ref()
    }
}

#[cfg(feature = "shared-learning")]
impl terraphim_middleware::feedback_loop::GraphTouchStore for SharedLearningStore {
    fn record_graph_touch<'a>(
        &'a self,
        learning_id: &'a str,
    ) -> std::pin::Pin<Box<dyn std::future::Future<Output = Result<(), StoreError>> + Send + 'a>>
    {
        Box::pin(async move {
            let mut index = self.index.write().await;
            if let Some(learning) = index.get_mut(learning_id) {
                learning.quality.applied_count += 1;
                learning.updated_at = chrono::Utc::now();
                let updated = learning.clone();
                drop(index);
                self.persist(&updated).await?;
                Ok(())
            } else {
                Err(StoreError::NotFound(learning_id.to_string()))
            }
        })
    }
}

#[cfg(feature = "shared-learning")]
fn block_on<F: std::future::Future>(fut: F) -> F::Output {
    tokio::task::block_in_place(|| {
        let rt = tokio::runtime::Handle::current();
        rt.block_on(fut)
    })
}

#[cfg(feature = "shared-learning")]
impl terraphim_types::shared_learning::LearningStore for SharedLearningStore {
    fn insert(
        &self,
        learning: terraphim_types::shared_learning::SharedLearning,
    ) -> Result<String, terraphim_types::shared_learning::StoreError> {
        let id = learning.id.clone();
        block_on(Self::insert(self, learning))?;
        Ok(id)
    }

    fn get(
        &self,
        id: &str,
    ) -> Result<
        terraphim_types::shared_learning::SharedLearning,
        terraphim_types::shared_learning::StoreError,
    > {
        block_on(Self::get(self, id))
    }

    fn query_relevant(
        &self,
        agent: &str,
        context: &str,
        min_trust: terraphim_types::shared_learning::TrustLevel,
        limit: usize,
    ) -> Result<
        Vec<terraphim_types::shared_learning::SharedLearning>,
        terraphim_types::shared_learning::StoreError,
    > {
        let index = block_on(self.index.read());
        let mut candidates: Vec<terraphim_types::shared_learning::SharedLearning> = index
            .values()
            .filter(|l| l.trust_level >= min_trust)
            .filter(|l| {
                l.applicable_agents.is_empty()
                    || l.applicable_agents
                        .iter()
                        .any(|a| a.eq_ignore_ascii_case(agent))
            })
            .cloned()
            .collect();
        drop(index);

        if candidates.is_empty() {
            return Ok(Vec::new());
        }

        if !context.is_empty() {
            let context_lower = context.to_lowercase();
            if let Some(ref graph_lock) = self.role_graph {
                if let Ok(graph) = graph_lock.read() {
                    if let Ok(graph_results) = graph.query_graph(context, None, None) {
                        if !graph_results.is_empty() {
                            let graph_id_rank: std::collections::HashMap<String, u64> =
                                graph_results
                                    .into_iter()
                                    .map(|(id, doc)| (id, doc.rank))
                                    .collect();
                            candidates.retain(|l| {
                                graph_id_rank.contains_key(&l.id)
                                    || l.extract_searchable_text().contains(&context_lower)
                            });
                            candidates.sort_by(|a, b| {
                                let a_rank = graph_id_rank.get(&a.id).copied().unwrap_or(0);
                                let b_rank = graph_id_rank.get(&b.id).copied().unwrap_or(0);
                                b_rank.cmp(&a_rank)
                            });
                            candidates.truncate(limit);
                            return Ok(candidates);
                        }
                    }
                }
            }

            candidates.retain(|l| l.extract_searchable_text().contains(&context_lower));
        }

        candidates.sort_by_key(|l| std::cmp::Reverse(l.trust_level.weight()));
        candidates.truncate(limit);
        Ok(candidates)
    }

    fn record_applied(
        &self,
        id: &str,
        applied_by: &str,
    ) -> Result<(), terraphim_types::shared_learning::StoreError> {
        block_on(self.record_application(id, applied_by, false))
    }

    fn record_effective(
        &self,
        id: &str,
        applied_by: &str,
    ) -> Result<(), terraphim_types::shared_learning::StoreError> {
        block_on(self.record_application(id, applied_by, true))
    }

    fn list_by_trust(
        &self,
        min_trust: terraphim_types::shared_learning::TrustLevel,
    ) -> Result<
        Vec<terraphim_types::shared_learning::SharedLearning>,
        terraphim_types::shared_learning::StoreError,
    > {
        let all = block_on(self.list_all())?;
        Ok(all
            .into_iter()
            .filter(|l| l.trust_level >= min_trust)
            .collect())
    }

    fn archive_stale(
        &self,
        max_age_days: u32,
    ) -> Result<usize, terraphim_types::shared_learning::StoreError> {
        let cutoff = chrono::Utc::now() - chrono::Duration::days(max_age_days as i64);
        let mut index = block_on(self.index.write());
        let before = index.len();
        let stale: Vec<(String, String)> = index
            .iter()
            .filter(|(_, l)| {
                l.trust_level <= terraphim_types::shared_learning::TrustLevel::L0
                    && l.updated_at <= cutoff
            })
            .map(|(id, l)| (id.clone(), l.source_agent.clone()))
            .collect();
        for (id, _) in &stale {
            index.remove(id.as_str());
        }
        drop(index);
        for (id, agent) in &stale {
            if let Err(e) = block_on(self.backend.delete(agent, id)) {
                warn!("Failed to delete markdown for stale learning {}: {e}", id);
            }
        }
        let removed = before - stale.len();
        Ok(removed)
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum StoreResult {
    Created,
    Merged(String),
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::shared_learning::types::LearningSource;
    use tempfile::TempDir;

    async fn create_test_store() -> SharedLearningStore {
        let temp_dir = TempDir::new().unwrap();
        let markdown_config = MarkdownStoreConfig {
            learnings_dir: temp_dir.path().to_path_buf(),
            shared_dir_name: "shared".to_string(),
        };
        let config = StoreConfig::default()
            .with_similarity_threshold(0.3)
            .with_markdown_config(markdown_config);
        SharedLearningStore::open(config).await.unwrap()
    }

    #[tokio::test]
    async fn test_store_open() {
        let store = create_test_store().await;
        let learnings = store.list_all().await.unwrap();
        assert!(learnings.is_empty());
    }

    #[tokio::test]
    async fn test_insert_and_get() {
        let store = create_test_store().await;

        let learning = SharedLearning::new(
            "Test Learning".to_string(),
            "Test content".to_string(),
            LearningSource::Manual,
            "test-agent".to_string(),
        );

        let id = learning.id.clone();
        store.insert(learning).await.unwrap();

        let retrieved = store.get(&id).await.unwrap();
        assert_eq!(retrieved.id, id);
        assert_eq!(retrieved.title, "Test Learning");
        assert_eq!(retrieved.trust_level, TrustLevel::L0);
    }

    #[tokio::test]
    async fn test_list_by_trust_level() {
        let store = create_test_store().await;

        let mut learning = SharedLearning::new(
            "L2 Learning".to_string(),
            "Content".to_string(),
            LearningSource::Manual,
            "agent".to_string(),
        );
        learning.promote_to_l1();
        learning.promote_to_l2();

        store.insert(learning).await.unwrap();

        let l2_learnings = store.list_by_trust_level(TrustLevel::L2).await.unwrap();
        assert_eq!(l2_learnings.len(), 1);

        let l1_learnings = store.list_by_trust_level(TrustLevel::L1).await.unwrap();
        assert!(l1_learnings.is_empty());
    }

    #[tokio::test]
    async fn test_record_application() {
        let store = create_test_store().await;

        let learning = SharedLearning::new(
            "Test".to_string(),
            "Content".to_string(),
            LearningSource::Manual,
            "agent1".to_string(),
        );
        let id = learning.id.clone();
        store.insert(learning).await.unwrap();

        store.record_application(&id, "agent1", true).await.unwrap();
        store.record_application(&id, "agent2", true).await.unwrap();
        store.record_application(&id, "agent2", true).await.unwrap();

        let retrieved = store.get(&id).await.unwrap();
        assert_eq!(retrieved.quality.applied_count, 3);
        assert_eq!(retrieved.quality.effective_count, 3);
        assert_eq!(retrieved.quality.agent_count, 2);
    }

    #[tokio::test]
    async fn test_promote_to_l2() {
        let store = create_test_store().await;

        let learning = SharedLearning::new(
            "Test".to_string(),
            "Content".to_string(),
            LearningSource::Manual,
            "agent".to_string(),
        );
        let id = learning.id.clone();
        store.insert(learning).await.unwrap();

        store.promote_to_l1(&id).await.unwrap();
        store.promote_to_l2(&id).await.unwrap();

        let retrieved = store.get(&id).await.unwrap();
        assert_eq!(retrieved.trust_level, TrustLevel::L2);
        assert!(retrieved.promoted_at.is_some());
    }

    #[tokio::test]
    async fn test_suggest() {
        let store = create_test_store().await;

        let learning = SharedLearning::new(
            "Git Push Error".to_string(),
            "How to fix git push errors".to_string(),
            LearningSource::Manual,
            "agent".to_string(),
        )
        .with_keywords(vec!["git".to_string(), "push".to_string()]);

        let mut learning = learning;
        learning.promote_to_l1();
        store.insert(learning).await.unwrap();

        let suggestions = store
            .suggest("git push problems", "test-agent", 5)
            .await
            .unwrap();
        assert!(!suggestions.is_empty());
        assert_eq!(suggestions[0].title, "Git Push Error");
    }

    #[tokio::test]
    async fn test_store_with_dedup() {
        let store = create_test_store().await;

        let learning1 = SharedLearning::new(
            "Git Push Error".to_string(),
            "How to fix git push errors".to_string(),
            LearningSource::Manual,
            "agent1".to_string(),
        );

        let result1 = store.store_with_dedup(learning1).await.unwrap();
        assert_eq!(result1, StoreResult::Created);

        let learning2 = SharedLearning::new(
            "Git Push Issues".to_string(),
            "How to fix git push errors and issues".to_string(),
            LearningSource::Manual,
            "agent2".to_string(),
        );

        let result2 = store.store_with_dedup(learning2).await.unwrap();
        assert!(matches!(result2, StoreResult::Merged(_)));
    }

    #[tokio::test]
    async fn test_auto_promotion() {
        let store = create_test_store().await;

        let learning = SharedLearning::new(
            "Test".to_string(),
            "Content".to_string(),
            LearningSource::Manual,
            "agent1".to_string(),
        );
        let id = learning.id.clone();
        store.insert(learning).await.unwrap();

        store.promote_to_l1(&id).await.unwrap();
        store.record_application(&id, "agent1", true).await.unwrap();
        store.record_application(&id, "agent1", true).await.unwrap();
        store.record_application(&id, "agent2", true).await.unwrap();

        let retrieved = store.get(&id).await.unwrap();
        assert_eq!(retrieved.trust_level, TrustLevel::L2);
    }

    #[tokio::test]
    async fn test_open_loads_existing_markdown_learnings() {
        // Create a temp dir and directly save learnings via the markdown backend
        let temp_dir = TempDir::new().unwrap();
        let markdown_config = MarkdownStoreConfig {
            learnings_dir: temp_dir.path().to_path_buf(),
            shared_dir_name: "shared".to_string(),
        };
        let backend = MarkdownLearningStore::with_config(markdown_config.clone());

        let learning1 = SharedLearning::new(
            "Pre-existing Learning".to_string(),
            "This learning was saved before the store opened.".to_string(),
            LearningSource::AutoExtract,
            "test-agent".to_string(),
        );
        let id1 = learning1.id.clone();
        backend.save(&learning1).await.unwrap();

        let learning2 = SharedLearning::new(
            "Another Pre-existing".to_string(),
            "Also saved before open.".to_string(),
            LearningSource::Manual,
            "other-agent".to_string(),
        );
        let id2 = learning2.id.clone();
        backend.save(&learning2).await.unwrap();

        // Now open the store - it should load existing learnings
        let config = StoreConfig::default()
            .with_similarity_threshold(0.3)
            .with_markdown_config(markdown_config);
        let store = SharedLearningStore::open(config).await.unwrap();

        let all = store.list_all().await.unwrap();
        assert_eq!(all.len(), 2);

        let retrieved1 = store.get(&id1).await.unwrap();
        assert_eq!(retrieved1.title, "Pre-existing Learning");

        let retrieved2 = store.get(&id2).await.unwrap();
        assert_eq!(retrieved2.title, "Another Pre-existing");
    }

    #[tokio::test]
    async fn test_open_dedups_shared_and_canonical_copies() {
        // Create a temp dir and save the same learning to both agent dir and shared dir
        let temp_dir = TempDir::new().unwrap();
        let markdown_config = MarkdownStoreConfig {
            learnings_dir: temp_dir.path().to_path_buf(),
            shared_dir_name: "shared".to_string(),
        };
        let backend = MarkdownLearningStore::with_config(markdown_config.clone());

        let mut learning = SharedLearning::new(
            "Shared Dedup Test".to_string(),
            "Testing deduplication.".to_string(),
            LearningSource::AutoExtract,
            "agent-x".to_string(),
        );
        learning.id = "dedup-test-id".to_string();

        // Save to agent directory (canonical)
        backend.save(&learning).await.unwrap();

        // Save a stale variant to shared directory with same ID.
        // Canonical should win after hydration.
        let mut stale_shared_copy = learning.clone();
        stale_shared_copy.title = "Stale Shared Copy".to_string();
        stale_shared_copy.trust_level = TrustLevel::L1;
        backend.save_to_shared(&stale_shared_copy).await.unwrap();

        // Now open the store - it should deduplicate
        let config = StoreConfig::default()
            .with_similarity_threshold(0.3)
            .with_markdown_config(markdown_config);
        let store = SharedLearningStore::open(config).await.unwrap();

        let all = store.list_all().await.unwrap();
        // Should only have 1 entry despite 2 files on disk
        assert_eq!(all.len(), 1);
        assert_eq!(all[0].id, "dedup-test-id");
        assert_eq!(all[0].title, "Shared Dedup Test");
    }

    #[tokio::test]
    async fn test_persist_after_promotion_and_application() {
        let temp_dir = TempDir::new().unwrap();
        let markdown_config = MarkdownStoreConfig {
            learnings_dir: temp_dir.path().to_path_buf(),
            shared_dir_name: "shared".to_string(),
        };
        let config = StoreConfig::default()
            .with_similarity_threshold(0.3)
            .with_markdown_config(markdown_config.clone());

        let store = SharedLearningStore::open(config).await.unwrap();

        let learning = SharedLearning::new(
            "Persist Test".to_string(),
            "Testing persistence.".to_string(),
            LearningSource::Manual,
            "test-agent".to_string(),
        );
        let id = learning.id.clone();
        store.insert(learning).await.unwrap();

        // Promote to L2
        store.promote_to_l1(&id).await.unwrap();
        store.promote_to_l2(&id).await.unwrap();

        // Record applications
        store.record_application(&id, "agent1", true).await.unwrap();
        store.record_application(&id, "agent2", true).await.unwrap();

        // Close and reopen the store
        store.close().await;

        let config2 = StoreConfig::default()
            .with_similarity_threshold(0.3)
            .with_markdown_config(markdown_config);
        let reopened = SharedLearningStore::open(config2).await.unwrap();

        let retrieved = reopened.get(&id).await.unwrap();
        assert_eq!(retrieved.trust_level, TrustLevel::L2);
        assert_eq!(retrieved.quality.applied_count, 2);
        assert_eq!(retrieved.quality.effective_count, 2);
        assert_eq!(retrieved.quality.agent_count, 2);
        assert!(retrieved.promoted_at.is_some());
    }

    #[tokio::test]
    async fn test_approve_promotes_to_l3() {
        let store = create_test_store().await;
        let learning = SharedLearning::new(
            "Approve Test".to_string(),
            "Content".to_string(),
            LearningSource::Manual,
            "agent".to_string(),
        );
        let id = learning.id.clone();
        store.insert(learning).await.unwrap();

        store.approve(&id).await.unwrap();

        let retrieved = store.get(&id).await.unwrap();
        assert_eq!(retrieved.trust_level, TrustLevel::L3);
        assert_eq!(retrieved.suggestion_status, SuggestionStatus::Approved);
    }

    #[tokio::test]
    async fn test_reject_sets_status() {
        let store = create_test_store().await;
        let learning = SharedLearning::new(
            "Reject Test".to_string(),
            "Content".to_string(),
            LearningSource::Manual,
            "agent".to_string(),
        );
        let id = learning.id.clone();
        store.insert(learning).await.unwrap();

        store.reject(&id, Some("not applicable")).await.unwrap();

        let retrieved = store.get(&id).await.unwrap();
        assert_eq!(retrieved.suggestion_status, SuggestionStatus::Rejected);
        assert_eq!(
            retrieved.rejection_reason.as_deref(),
            Some("not applicable")
        );
        assert_eq!(retrieved.trust_level, TrustLevel::L0);
    }

    #[tokio::test]
    async fn test_list_pending_filters() {
        let store = create_test_store().await;

        let pending = SharedLearning::new(
            "Pending".to_string(),
            "Content".to_string(),
            LearningSource::Manual,
            "agent".to_string(),
        );
        let pending_id = pending.id.clone();
        store.insert(pending).await.unwrap();

        let mut approved = SharedLearning::new(
            "Approved".to_string(),
            "Content".to_string(),
            LearningSource::Manual,
            "agent".to_string(),
        );
        approved.suggestion_status = SuggestionStatus::Approved;
        store.insert(approved).await.unwrap();

        let result = store.list_pending().await.unwrap();
        assert_eq!(result.len(), 1);
        assert_eq!(result[0].id, pending_id);
    }

    #[tokio::test]
    async fn test_list_by_status() {
        let store = create_test_store().await;

        let mut rejected = SharedLearning::new(
            "Rejected".to_string(),
            "Content".to_string(),
            LearningSource::Manual,
            "agent".to_string(),
        );
        rejected.suggestion_status = SuggestionStatus::Rejected;
        let rejected_id = rejected.id.clone();
        store.insert(rejected).await.unwrap();

        let result = store
            .list_by_status(SuggestionStatus::Rejected)
            .await
            .unwrap();
        assert_eq!(result.len(), 1);
        assert_eq!(result[0].id, rejected_id);
    }

    #[cfg(feature = "shared-learning")]
    mod learning_store_trait_tests {
        use super::*;
        use terraphim_types::shared_learning::{LearningStore, TrustLevel as Tl};

        async fn create_trait_test_store() -> SharedLearningStore {
            create_test_store().await
        }

        #[tokio::test(flavor = "multi_thread")]
        async fn test_trait_insert_and_get() {
            let store = create_trait_test_store().await;
            let dyn_store: &dyn LearningStore = &store;

            let learning = SharedLearning::new(
                "Trait Test".to_string(),
                "Testing trait insert and get".to_string(),
                LearningSource::Manual,
                "test-agent".to_string(),
            );
            let id = dyn_store.insert(learning).unwrap();
            assert!(!id.is_empty());

            let retrieved = dyn_store.get(&id).unwrap();
            assert_eq!(retrieved.title, "Trait Test");
            assert_eq!(retrieved.source_agent, "test-agent");
        }

        #[tokio::test(flavor = "multi_thread")]
        async fn test_trait_get_not_found() {
            let store = create_trait_test_store().await;
            let dyn_store: &dyn LearningStore = &store;
            assert!(dyn_store.get("nonexistent-id").is_err());
        }

        #[tokio::test(flavor = "multi_thread")]
        async fn test_trait_record_applied_and_effective() {
            let store = create_trait_test_store().await;
            let dyn_store: &dyn LearningStore = &store;

            let learning = SharedLearning::new(
                "App Test".to_string(),
                "Content".to_string(),
                LearningSource::Manual,
                "agent".to_string(),
            );
            let id = dyn_store.insert(learning).unwrap();

            dyn_store.record_applied(&id, "agent-a").unwrap();
            let l = dyn_store.get(&id).unwrap();
            assert_eq!(l.quality.applied_count, 1);

            dyn_store.record_effective(&id, "agent-b").unwrap();
            let l = dyn_store.get(&id).unwrap();
            assert_eq!(l.quality.applied_count, 2);
            assert_eq!(l.quality.effective_count, 1);
        }

        #[tokio::test(flavor = "multi_thread")]
        async fn test_trait_auto_promote_on_effective() {
            let store = create_trait_test_store().await;
            let dyn_store: &dyn LearningStore = &store;

            let learning = SharedLearning::new(
                "Promote Test".to_string(),
                "Content".to_string(),
                LearningSource::Manual,
                "agent".to_string(),
            );
            let id = dyn_store.insert(learning).unwrap();

            assert_eq!(dyn_store.get(&id).unwrap().trust_level, Tl::L0);

            dyn_store.record_effective(&id, "agent-a").unwrap();
            dyn_store.record_effective(&id, "agent-b").unwrap();
            dyn_store.record_effective(&id, "agent-a").unwrap();
            dyn_store.record_effective(&id, "agent-b").unwrap();

            let l = dyn_store.get(&id).unwrap();
            assert_eq!(l.quality.effective_count, 4);
        }

        #[tokio::test(flavor = "multi_thread")]
        async fn test_trait_list_by_trust() {
            let store = create_trait_test_store().await;
            let dyn_store: &dyn LearningStore = &store;

            let mut l1 = SharedLearning::new(
                "L1".to_string(),
                "c".to_string(),
                LearningSource::Manual,
                "a".to_string(),
            );
            l1.promote_to_l1();
            let mut l2 = SharedLearning::new(
                "L2".to_string(),
                "c".to_string(),
                LearningSource::Manual,
                "a".to_string(),
            );
            l2.promote_to_l1();
            l2.promote_to_l2();
            dyn_store.insert(l1).unwrap();
            dyn_store.insert(l2).unwrap();

            let l1_plus = dyn_store.list_by_trust(Tl::L1).unwrap();
            assert_eq!(l1_plus.len(), 2);

            let l2_only = dyn_store.list_by_trust(Tl::L2).unwrap();
            assert_eq!(l2_only.len(), 1);
            assert_eq!(l2_only[0].title, "L2");
        }

        #[tokio::test(flavor = "multi_thread")]
        async fn test_trait_query_relevant_respects_trust() {
            let store = create_trait_test_store().await;
            let dyn_store: &dyn LearningStore = &store;

            let mut l0 = SharedLearning::new(
                "L0 Test".to_string(),
                "l0 content".to_string(),
                LearningSource::Manual,
                "agent".to_string(),
            );
            l0.trust_level = Tl::L0;
            dyn_store.insert(l0).unwrap();

            let results = dyn_store
                .query_relevant("agent", "l0 content", Tl::L1, 10)
                .unwrap();
            assert!(results.is_empty(), "L0 should be filtered out at L1 min");
        }

        #[tokio::test(flavor = "multi_thread")]
        async fn test_trait_query_relevant_respects_agents() {
            let store = create_trait_test_store().await;
            let dyn_store: &dyn LearningStore = &store;

            let mut learning = SharedLearning::new(
                "Agent Specific".to_string(),
                "Only for security".to_string(),
                LearningSource::Manual,
                "sec".to_string(),
            )
            .with_applicable_agents(vec!["security-audit".to_string()]);
            learning.promote_to_l1();
            dyn_store.insert(learning).unwrap();

            let for_sec = dyn_store
                .query_relevant("security-audit", "security", Tl::L1, 10)
                .unwrap();
            assert_eq!(for_sec.len(), 1);

            let for_other = dyn_store
                .query_relevant("other-agent", "security", Tl::L1, 10)
                .unwrap();
            assert!(for_other.is_empty());
        }

        #[tokio::test(flavor = "multi_thread")]
        async fn test_trait_archive_stale() {
            let temp_dir = TempDir::new().unwrap();
            let markdown_config = MarkdownStoreConfig {
                learnings_dir: temp_dir.path().to_path_buf(),
                shared_dir_name: "shared".to_string(),
            };
            let config = StoreConfig::default().with_markdown_config(markdown_config);
            let store = SharedLearningStore::open(config).await.unwrap();

            let mut l0_stale = SharedLearning::new(
                "stale".to_string(),
                "c".to_string(),
                LearningSource::Manual,
                "a".to_string(),
            );
            l0_stale.trust_level = Tl::L0;
            l0_stale.updated_at = chrono::Utc::now() - chrono::Duration::days(60);
            let mut l1_old = SharedLearning::new(
                "old but L1".to_string(),
                "c".to_string(),
                LearningSource::Manual,
                "a".to_string(),
            );
            l1_old.trust_level = Tl::L1;
            l1_old.updated_at = chrono::Utc::now() - chrono::Duration::days(60);

            let dyn_store: &dyn LearningStore = &store;
            dyn_store.insert(l0_stale).unwrap();
            dyn_store.insert(l1_old).unwrap();

            let archived = dyn_store.archive_stale(30).unwrap();
            assert_eq!(archived, 1);

            let remaining = dyn_store.list_by_trust(Tl::L0).unwrap();
            assert_eq!(remaining.len(), 1);
            assert_eq!(remaining[0].trust_level, Tl::L1);
        }

        #[tokio::test(flavor = "multi_thread")]
        async fn test_trait_query_relevant_with_role_graph() {
            use terraphim_rolegraph::RoleGraph;
            use terraphim_types::{Document, NormalizedTerm, NormalizedTermValue, Thesaurus};

            let mut store = create_test_store().await;

            let mut thesaurus = Thesaurus::new("test".to_string());
            thesaurus.insert(
                NormalizedTermValue::from("git"),
                NormalizedTerm::new(1, NormalizedTermValue::from("git")),
            );
            thesaurus.insert(
                NormalizedTermValue::from("push"),
                NormalizedTerm::new(2, NormalizedTermValue::from("push")),
            );

            let mut graph =
                RoleGraph::new_sync(terraphim_types::RoleName::new("test-role"), thesaurus)
                    .unwrap();

            let doc = Document {
                id: "doc-1".to_string(),
                url: String::new(),
                title: "Git Push".to_string(),
                body: "Git push force error fix".to_string(),
                description: None,
                summarization: None,
                stub: None,
                tags: None,
                rank: None,
                source_haystack: None,
                doc_type: terraphim_types::DocumentType::default(),
                synonyms: None,
                route: None,
                priority: None,
                quality_score: None,
            };
            let learning_id = "learning-graph-test";
            graph.insert_document(learning_id, doc);

            store.set_role_graph(graph);

            let learning = SharedLearning::new(
                "Graph Test Learning".to_string(),
                "Git push force error fix".to_string(),
                LearningSource::Manual,
                "agent".to_string(),
            );
            let mut l = learning;
            l.id = learning_id.to_string();
            l.trust_level = Tl::L2;
            let dyn_store: &dyn LearningStore = &store;
            dyn_store.insert(l).unwrap();

            let results = dyn_store
                .query_relevant("agent", "git push", Tl::L1, 10)
                .unwrap();
            assert!(!results.is_empty());
            assert_eq!(results[0].id, learning_id);
        }

        #[tokio::test(flavor = "multi_thread")]
        async fn test_trait_query_relevant_without_graph() {
            let store = create_trait_test_store().await;
            let dyn_store: &dyn LearningStore = &store;

            let mut learning = SharedLearning::new(
                "Rust Error".to_string(),
                "Use cargo clippy for rust errors".to_string(),
                LearningSource::Manual,
                "agent".to_string(),
            )
            .with_keywords(vec!["rust".to_string(), "clippy".to_string()]);
            learning.promote_to_l1();
            dyn_store.insert(learning).unwrap();

            let results = dyn_store
                .query_relevant("agent", "rust clippy", Tl::L1, 10)
                .unwrap();
            assert!(!results.is_empty());
        }
    }
}