difflore-cli 0.7.0

Your AI coding agent learned public code, not your team's private decisions. difflore turns past PR reviews into source-backed local rules.
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
use std::collections::HashSet;
use std::time::{Duration, Instant};

use difflore_core::domain::models::RememberRuleInput;
use difflore_core::infra::git::RepoScope;
use difflore_core::review_store::{self, ReviewCommentRecord, ReviewItemWithComments};
use sqlx::SqlitePool;

use crate::agent_exec::{AgentKind, GateResult, dispatch_gate};

use super::local_candidates::{
    CAPTURE_CONFIDENCE_LOW, CaptureRoute, LocalCandidateProgress, ReviewSourceKind,
    clean_review_comment, local_candidate_budget_reached, local_candidate_dedupe_signature,
    local_candidate_input,
};

const LOCAL_AGENT_ATTEMPT_TIMEOUT: Duration = Duration::from_secs(45);
const LOCAL_AGENT_TOTAL_TIMEOUT: Duration = Duration::from_secs(120);
const LOCAL_AGENT_CANDIDATE_CONFIDENCE: f32 = CAPTURE_CONFIDENCE_LOW;
const LOCAL_AGENT_PROMPT_MAX_SEEDS: usize = 24;
const LOCAL_AGENT_THREAD_EVIDENCE_CHAR_LIMIT: usize = 2_400;
const LOCAL_AGENT_THREAD_COMMENT_CHAR_LIMIT: usize = 700;
const LOCAL_AGENT_ACTIVE_CONFIDENCE: f32 = 0.82;
const LOCAL_AGENT_CONFIDENCE_MAX: f32 = 0.90;

#[cfg(windows)]
const LOCAL_AGENT_DISTILL_AGENTS: [AgentKind; 3] = [
    AgentKind::Codex,
    AgentKind::ClaudeCode,
    AgentKind::GeminiCli,
];

#[cfg(not(windows))]
const LOCAL_AGENT_DISTILL_AGENTS: [AgentKind; 3] = [
    AgentKind::ClaudeCode,
    AgentKind::GeminiCli,
    AgentKind::Codex,
];

#[derive(Debug)]
pub(super) struct LocalAgentDistillError {
    message: String,
}

impl std::fmt::Display for LocalAgentDistillError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.write_str(&self.message)
    }
}

impl std::error::Error for LocalAgentDistillError {}

#[derive(Debug, Clone)]
struct DistillSeed {
    index: usize,
    input: RememberRuleInput,
    source_evidence: String,
    source_kind: ReviewSourceKind,
}

#[derive(Debug, serde::Deserialize)]
struct AgentDistillEnvelope {
    #[serde(default)]
    candidates: Vec<AgentDistillCandidate>,
}

#[derive(Debug, serde::Deserialize)]
struct AgentDistillCandidate {
    source_index: Option<usize>,
    title: Option<String>,
    body: Option<String>,
    confidence: Option<f32>,
    #[serde(default)]
    file_patterns: Vec<String>,
}

pub(super) async fn run_local_agent_candidates(
    db: &SqlitePool,
    source: &str,
    repo: &str,
    source_repo: &RepoScope,
    max_candidates: usize,
    pr_numbers: &[i32],
    exclude_prs: &HashSet<i32>,
) -> Result<LocalCandidateProgress, LocalAgentDistillError> {
    let items = review_store::list_by_source_with_comments(
        db,
        review_store::ReviewSourceInput {
            source: source.into(),
        },
    )
    .await
    .map_err(|e| distill_error(format!("failed to load imported reviews: {e}")))?;

    let (seeds, mut progress) = collect_distill_seeds(
        &items,
        repo,
        source_repo,
        max_candidates,
        pr_numbers,
        exclude_prs,
    );
    if seeds.is_empty() {
        return Ok(progress);
    }

    let prompt = build_distill_prompt(&seeds);
    let stdout = dispatch_local_agent_distill(&prompt).await?;
    let candidates = parse_distill_candidates(&stdout)?;
    write_agent_candidates(db, source_repo, &seeds, candidates, &mut progress).await?;
    Ok(progress)
}

fn collect_distill_seeds(
    items: &[ReviewItemWithComments],
    repo: &str,
    source_repo: &RepoScope,
    max_candidates: usize,
    pr_numbers: &[i32],
    exclude_prs: &HashSet<i32>,
) -> (Vec<DistillSeed>, LocalCandidateProgress) {
    let target_pr_numbers = pr_numbers.iter().copied().collect::<HashSet<_>>();
    let mut progress = LocalCandidateProgress {
        budget: max_candidates,
        ..LocalCandidateProgress::default()
    };
    let mut seeds = Vec::new();
    let mut next_index = 1;

    'items: for item in items
        .iter()
        .filter(|item| item.item.repo_full_name.as_deref() == Some(repo))
        .filter(|item| {
            item.item
                .pr_number
                .is_none_or(|n| !exclude_prs.contains(&n))
        })
        .filter(|item| {
            target_pr_numbers.is_empty()
                || item
                    .item
                    .pr_number
                    .is_some_and(|n| target_pr_numbers.contains(&n))
        })
    {
        for comment in &item.comments {
            progress.comments_considered += 1;
            let Some(local_candidate) = local_candidate_input(item, comment, source_repo) else {
                progress.comments_skipped += 1;
                continue;
            };
            let source_evidence = full_source_evidence(&local_candidate.input, item, comment);
            seeds.push(DistillSeed {
                index: next_index,
                input: local_candidate.input,
                source_evidence,
                source_kind: local_candidate.source_kind,
            });
            next_index += 1;
            if seeds.len() >= max_candidates.min(LOCAL_AGENT_PROMPT_MAX_SEEDS) {
                progress.capped = seeds.len() >= max_candidates;
                break 'items;
            }
        }
    }

    (seeds, progress)
}

fn build_distill_prompt(seeds: &[DistillSeed]) -> String {
    let mut out = String::from(
        "You are distilling imported PR review comments into DiffLore rule candidates.\n\
         Use only the supplied review evidence. Keep reusable, non-obvious coding rules.\n\
         Improve wording and merge away duplicates, but do not invent facts.\n\
         A SOURCE_INDEX may contain a whole review thread; if it contains multiple independent findings, emit multiple candidates with the same source_index.\n\
         Titles must be generalized imperative rules, not copied review comments.\n\
         Never prefix titles with \"Review:\", \"Review rule for\", or \"Rule from review\".\n\
         Prefer tight file_patterns and set confidence from 0.40 to 0.90 based on how directly the thread supports the rule; use 0.82+ only for evidence you would safely activate as local rules.\n\
         Return STRICT JSON only, no markdown:\n\
         {\"candidates\":[{\"source_index\":1,\"title\":\"...\",\"body\":\"Rule:\\n...\\n\\nSource evidence:\\n...\",\"confidence\":0.72,\"file_patterns\":[\"src/**/*.ts\"]}]}\n\
         If nothing is reusable, return {\"candidates\":[]}; the CLI will fall back to deterministic heuristics.\n\n",
    );
    out.push_str("REVIEW CANDIDATE SEEDS:\n");
    for seed in seeds {
        out.push_str(&format!(
            "\nSOURCE_INDEX: {}\nTITLE: {}\nFILE_PATTERNS: {}\nBODY:\n{}\n",
            seed.index,
            truncate_chars(&seed.input.title, 240),
            seed.input
                .file_patterns
                .as_ref()
                .map_or_else(|| "(none)".to_owned(), |patterns| patterns.join(", ")),
            truncate_chars(&seed.input.body, 2_000),
        ));
        out.push_str(&format!("SOURCE_KIND: {}\n", seed.source_kind.wire_label()));
        out.push_str(&format!(
            "THREAD_SOURCE_EVIDENCE:\n{}\n",
            truncate_chars(
                &seed.source_evidence,
                LOCAL_AGENT_THREAD_EVIDENCE_CHAR_LIMIT
            ),
        ));
    }
    out
}

async fn dispatch_local_agent_distill(prompt: &str) -> Result<String, LocalAgentDistillError> {
    let started = Instant::now();
    let mut errors = Vec::new();
    for agent in LOCAL_AGENT_DISTILL_AGENTS {
        let Some(budget) = local_agent_budget(started.elapsed()) else {
            errors.push(format!(
                "time budget exhausted after {}s",
                LOCAL_AGENT_TOTAL_TIMEOUT.as_secs()
            ));
            break;
        };
        let result: GateResult = dispatch_gate(agent, prompt, budget).await;
        if result.errored {
            errors.push(format!(
                "{}: {}",
                agent.label(),
                if result.error_message.is_empty() {
                    "agent CLI reported error with no message"
                } else {
                    result.error_message.as_str()
                }
            ));
            continue;
        }
        return Ok(result.stdout);
    }

    Err(distill_error(format!(
        "all local-agent distillers failed: {}",
        errors.join("; ")
    )))
}

fn local_agent_budget(elapsed: Duration) -> Option<Duration> {
    let remaining = LOCAL_AGENT_TOTAL_TIMEOUT.checked_sub(elapsed)?;
    if remaining.is_zero() {
        return None;
    }
    Some(remaining.min(LOCAL_AGENT_ATTEMPT_TIMEOUT))
}

fn parse_distill_candidates(
    stdout: &str,
) -> Result<Vec<AgentDistillCandidate>, LocalAgentDistillError> {
    let json = extract_json_payload(stdout).ok_or_else(|| {
        distill_error(format!(
            "local-agent distill returned no JSON object: {}",
            truncate_chars(stdout, 300)
        ))
    })?;
    let envelope: AgentDistillEnvelope = serde_json::from_str(&json)
        .map_err(|e| distill_error(format!("local-agent distill JSON parse failed: {e}")))?;
    if envelope.candidates.is_empty() {
        return Err(distill_error(
            "local-agent distill returned no candidates".to_owned(),
        ));
    }
    Ok(envelope.candidates)
}

async fn write_agent_candidates(
    db: &SqlitePool,
    source_repo: &RepoScope,
    seeds: &[DistillSeed],
    candidates: Vec<AgentDistillCandidate>,
    progress: &mut LocalCandidateProgress,
) -> Result<(), LocalAgentDistillError> {
    let mut seen_candidate_signatures = HashSet::new();
    for candidate in candidates {
        if local_candidate_budget_reached(progress) {
            progress.capped = true;
            break;
        }
        let Some(resolution) = seed_for_agent_candidate(&candidate, seeds) else {
            progress.comments_skipped += 1;
            continue;
        };
        let input = input_from_agent_candidate_with_seed(&candidate, resolution.seed);
        let confidence = candidate_confidence(&candidate);
        let (route, source_kind) = agent_candidate_gate(&candidate, &resolution, seeds);
        if route == CaptureRoute::Drop {
            progress.comments_skipped += 1;
            continue;
        }
        match difflore_core::skills::is_rejected_signature(db, &input).await {
            Ok(true) => {
                progress.candidates_suppressed_rejected += 1;
                continue;
            }
            Ok(false) => {}
            Err(e) => {
                return Err(distill_error(format!(
                    "failed to check rejection tombstone: {e}"
                )));
            }
        }

        let signature = local_candidate_dedupe_signature(&input);
        if seen_candidate_signatures.contains(&signature) {
            progress.candidates_duplicate_in_run += 1;
            continue;
        }
        seen_candidate_signatures.insert(signature);

        match difflore_core::skills::remember_as_candidate_with_confidence_for_repo_and_source_kind(
            db,
            input,
            confidence,
            source_repo,
            Some(&source_kind.wire_label()),
        )
        .await
        {
            Ok(outcome) => {
                if outcome.deduped {
                    if outcome.matched_existing_active {
                        progress.candidates_matched_active += 1;
                    } else {
                        progress.candidates_deduped += 1;
                    }
                } else {
                    match route {
                        CaptureRoute::Active => {
                            if let Err(e) =
                                difflore_core::skills::promote_candidate(db, &outcome.skill.id)
                                    .await
                            {
                                return Err(distill_error(format!(
                                    "failed to activate local-agent rules: {e}"
                                )));
                            }
                            progress.candidates_activated += 1;
                        }
                        CaptureRoute::Candidate => {
                            progress.candidates_pending += 1;
                        }
                        CaptureRoute::Drop => {
                            unreachable!("drop routes are filtered before persistence");
                        }
                    }
                    progress.candidates_created += 1;
                }
            }
            Err(e) => return Err(distill_error(format!("failed to create local rules: {e}"))),
        }
    }
    Ok(())
}

#[cfg(test)]
fn input_from_agent_candidate(
    candidate: &AgentDistillCandidate,
    seeds: &[DistillSeed],
) -> Option<RememberRuleInput> {
    let resolution = seed_for_agent_candidate(candidate, seeds)?;
    Some(input_from_agent_candidate_with_seed(
        candidate,
        resolution.seed,
    ))
}

/// A seed matched to an agent candidate, plus whether the agent's
/// `source_index` actually resolved to that seed. Unresolved candidates keep
/// the first seed for display/evidence attribution only — they must never be
/// trusted for auto-activation, because the true source (possibly a bot) is
/// unknown.
struct SeedResolution<'a> {
    seed: &'a DistillSeed,
    resolved: bool,
}

fn seed_for_agent_candidate<'a>(
    candidate: &AgentDistillCandidate,
    seeds: &'a [DistillSeed],
) -> Option<SeedResolution<'a>> {
    if let Some(seed) = candidate
        .source_index
        .and_then(|idx| seeds.iter().find(|seed| seed.index == idx))
    {
        return Some(SeedResolution {
            seed,
            resolved: true,
        });
    }
    seeds.first().map(|seed| SeedResolution {
        seed,
        resolved: false,
    })
}

/// Trust gate for one agent candidate: the capture route plus the
/// `source_kind` to persist. Fail-closed on an unresolved `source_index`:
/// attribution cannot be verified, so the candidate inherits the most
/// conservative source_kind in the batch (any bot seed poisons the fallback)
/// and is never eligible for auto-activation.
fn agent_candidate_gate(
    candidate: &AgentDistillCandidate,
    resolution: &SeedResolution<'_>,
    seeds: &[DistillSeed],
) -> (CaptureRoute, ReviewSourceKind) {
    let source_kind = if resolution.resolved {
        resolution.seed.source_kind.clone()
    } else {
        seeds
            .iter()
            .map(|seed| &seed.source_kind)
            .find(|kind| kind.requires_human_validation())
            .cloned()
            .unwrap_or_else(|| resolution.seed.source_kind.clone())
    };
    let route = candidate_route_for_source(candidate, &source_kind);
    let route = if route == CaptureRoute::Active && !resolution.resolved {
        CaptureRoute::Candidate
    } else {
        route
    };
    (route, source_kind)
}

fn input_from_agent_candidate_with_seed(
    candidate: &AgentDistillCandidate,
    seed: &DistillSeed,
) -> RememberRuleInput {
    let title = candidate
        .title
        .as_deref()
        .map(str::trim)
        .filter(|s| !s.is_empty() && !is_raw_review_title(s))
        .unwrap_or_else(|| fallback_title_for_seed(seed));
    let body = candidate
        .body
        .as_deref()
        .map(str::trim)
        .filter(|s| !s.is_empty())
        .unwrap_or(seed.input.body.as_str());
    let file_patterns = sanitized_file_patterns(&candidate.file_patterns)
        .or_else(|| seed.input.file_patterns.clone());

    RememberRuleInput {
        title: difflore_core::observability::privacy::redact_secrets(&truncate_chars(title, 180)),
        body: difflore_core::observability::privacy::redact_secrets(&body_with_source_evidence(
            body,
            &seed.source_evidence,
        )),
        file_patterns,
        bad_code: None,
        good_code: None,
        severity: Some("medium".to_owned()),
        kind: None,
        category: None,
        origin: Some("pr_review".to_owned()),
        captured_by_client: Some("import-reviews:local-agent".to_owned()),
    }
}

fn fallback_title_for_seed(seed: &DistillSeed) -> &str {
    let title = seed.input.title.trim();
    if !title.is_empty() && !is_raw_review_title(title) {
        title
    } else {
        "Imported PR review rule"
    }
}

fn is_raw_review_title(title: &str) -> bool {
    let normalized = title.trim().to_ascii_lowercase();
    normalized.starts_with("review:")
        || normalized.starts_with("review rule for ")
        || normalized.starts_with("review rule from ")
        || normalized.starts_with("rule from review")
        || normalized
            .strip_prefix("source ")
            .and_then(|rest| rest.chars().next())
            .is_some_and(|ch| ch.is_ascii_digit())
}

const fn candidate_confidence(candidate: &AgentDistillCandidate) -> f32 {
    match candidate.confidence {
        Some(value) if value.is_finite() => value.clamp(0.0, LOCAL_AGENT_CONFIDENCE_MAX),
        Some(_) => 0.0,
        None => LOCAL_AGENT_CANDIDATE_CONFIDENCE,
    }
}

#[cfg(test)]
fn candidate_route(candidate: &AgentDistillCandidate) -> CaptureRoute {
    candidate_route_for_source(candidate, &ReviewSourceKind::Human)
}

fn candidate_route_for_source(
    candidate: &AgentDistillCandidate,
    source_kind: &ReviewSourceKind,
) -> CaptureRoute {
    let confidence = candidate_confidence(candidate);
    let route = if confidence >= LOCAL_AGENT_ACTIVE_CONFIDENCE {
        if has_distilled_title(candidate) {
            CaptureRoute::Active
        } else {
            CaptureRoute::Candidate
        }
    } else if confidence >= CAPTURE_CONFIDENCE_LOW {
        CaptureRoute::Candidate
    } else {
        CaptureRoute::Drop
    };
    if source_kind.requires_human_validation() && route == CaptureRoute::Active {
        CaptureRoute::Candidate
    } else {
        route
    }
}

fn has_distilled_title(candidate: &AgentDistillCandidate) -> bool {
    candidate
        .title
        .as_deref()
        .map(str::trim)
        .is_some_and(|title| !title.is_empty() && !is_raw_review_title(title))
}

fn sanitized_file_patterns(patterns: &[String]) -> Option<Vec<String>> {
    let mut out = Vec::new();
    let mut seen = HashSet::new();
    for pattern in patterns {
        let pattern = pattern.trim();
        if pattern.is_empty() || !seen.insert(pattern.to_owned()) {
            continue;
        }
        out.push(pattern.to_owned());
        if out.len() >= difflore_core::skills::REMEMBER_FILE_PATTERN_LIMIT {
            break;
        }
    }
    (!out.is_empty()).then_some(out)
}

fn body_with_source_evidence(body: &str, source_evidence: &str) -> String {
    let source_evidence = source_evidence.trim();
    if body.contains("Source evidence:") {
        if source_evidence.is_empty() {
            return truncate_chars(body, difflore_core::skills::REMEMBER_BODY_CHAR_LIMIT);
        }
        return truncate_chars(
            &format!("{body}\n\nAdditional source evidence:\n{source_evidence}"),
            difflore_core::skills::REMEMBER_BODY_CHAR_LIMIT,
        );
    }
    if source_evidence.is_empty() {
        return truncate_chars(body, difflore_core::skills::REMEMBER_BODY_CHAR_LIMIT);
    }
    truncate_chars(
        &format!("{body}\n\nSource evidence:\n{source_evidence}"),
        difflore_core::skills::REMEMBER_BODY_CHAR_LIMIT,
    )
}

fn full_source_evidence(
    input: &RememberRuleInput,
    item: &ReviewItemWithComments,
    comment: &ReviewCommentRecord,
) -> String {
    let mut parts = Vec::new();
    if let Some(source_evidence) = source_evidence_from_body(&input.body) {
        parts.push(source_evidence);
    }
    if let Some(thread_evidence) = thread_source_evidence(item, comment) {
        parts.push(format!("Thread evidence:\n{thread_evidence}"));
    }
    truncate_chars(
        &parts.join("\n\n"),
        difflore_core::skills::REMEMBER_BODY_CHAR_LIMIT,
    )
}

fn source_evidence_from_body(body: &str) -> Option<String> {
    body.split("\n\nSource evidence:")
        .nth(1)
        .map(str::trim)
        .filter(|s| !s.is_empty())
        .map(ToOwned::to_owned)
}

fn thread_source_evidence(
    item: &ReviewItemWithComments,
    comment: &ReviewCommentRecord,
) -> Option<String> {
    let mut out = String::new();
    for thread_comment in item
        .comments
        .iter()
        .filter(|candidate| same_review_thread(comment, candidate) || candidate.id == comment.id)
    {
        let clean = clean_review_comment(&thread_comment.content);
        if clean.chars().count() < 8 {
            continue;
        }
        if !out.is_empty() {
            out.push('\n');
        }
        let author = thread_comment
            .author
            .as_deref()
            .map(str::trim)
            .filter(|s| !s.is_empty())
            .unwrap_or("reviewer");
        out.push_str("- ");
        out.push_str(author);
        out.push_str(": ");
        out.push_str(&truncate_chars(
            &clean,
            LOCAL_AGENT_THREAD_COMMENT_CHAR_LIMIT,
        ));
        if out.chars().count() >= LOCAL_AGENT_THREAD_EVIDENCE_CHAR_LIMIT {
            break;
        }
    }
    let out = truncate_chars(&out, LOCAL_AGENT_THREAD_EVIDENCE_CHAR_LIMIT);
    (!out.trim().is_empty()).then_some(out)
}

fn same_review_thread(left: &ReviewCommentRecord, right: &ReviewCommentRecord) -> bool {
    match (left.thread_id.as_deref(), right.thread_id.as_deref()) {
        (Some(left), Some(right)) => left == right,
        _ => false,
    }
}

fn extract_json_payload(stdout: &str) -> Option<String> {
    let trimmed = strip_json_fence(stdout.trim());
    if trimmed.starts_with('{') && trimmed.ends_with('}') {
        return Some(trimmed.to_owned());
    }
    let start = trimmed.find('{')?;
    let mut depth = 0_i32;
    let mut in_string = false;
    let mut escape = false;
    for (offset, ch) in trimmed[start..].char_indices() {
        if in_string {
            if escape {
                escape = false;
            } else if ch == '\\' {
                escape = true;
            } else if ch == '"' {
                in_string = false;
            }
            continue;
        }
        match ch {
            '"' => in_string = true,
            '{' => depth += 1,
            '}' => {
                depth -= 1;
                if depth == 0 {
                    return Some(trimmed[start..=start + offset].to_owned());
                }
            }
            _ => {}
        }
    }
    None
}

fn strip_json_fence(s: &str) -> &str {
    let stripped = s
        .strip_prefix("```json")
        .or_else(|| s.strip_prefix("```"))
        .map_or(s, str::trim_start);
    stripped.strip_suffix("```").map_or(stripped, str::trim_end)
}

fn truncate_chars(s: &str, max_chars: usize) -> String {
    if max_chars == 0 {
        return String::new();
    }
    if s.chars().count() <= max_chars {
        return s.to_owned();
    }
    let mut out: String = s.chars().take(max_chars.saturating_sub(1)).collect();
    out.push('…');
    out
}

const fn distill_error(message: String) -> LocalAgentDistillError {
    LocalAgentDistillError { message }
}

#[cfg(test)]
mod tests {
    use super::super::local_candidates::CAPTURE_CONFIDENCE_HIGH;
    use super::*;

    fn seed(index: usize) -> DistillSeed {
        let source_evidence = "Source: acme/api#42\nComment: https://example.test/c\nFile: src/api/client.ts\nReviewer said:\nPlease validate the response first.".to_owned();
        DistillSeed {
            index,
            source_evidence: source_evidence.clone(),
            source_kind: ReviewSourceKind::Human,
            input: RememberRuleInput {
                title: "Review: validate API responses".to_owned(),
                body: format!(
                    "Rule:\nValidate API responses before deserializing.\n\nSource evidence:\n{source_evidence}"
                ),
                file_patterns: Some(vec!["src/api/**/*.ts".to_owned()]),
                bad_code: None,
                good_code: None,
                severity: Some("medium".to_owned()),
                kind: None,
                category: None,
                origin: Some("pr_review".to_owned()),
                captured_by_client: Some("import-reviews".to_owned()),
            },
        }
    }

    #[test]
    fn parse_distill_candidates_accepts_fenced_json_object() {
        let parsed = parse_distill_candidates(
            "```json\n{\"candidates\":[{\"source_index\":1,\"title\":\"T\",\"body\":\"B\",\"file_patterns\":[\"**/*.rs\"]}]}\n```",
        )
        .expect("parse");

        assert_eq!(parsed.len(), 1);
        assert_eq!(parsed[0].source_index, Some(1));
        assert_eq!(parsed[0].title.as_deref(), Some("T"));
    }

    #[test]
    fn parse_distill_candidates_rejects_empty_result_for_heuristic_fallback() {
        let err =
            parse_distill_candidates("{\"candidates\":[]}").expect_err("empty result falls back");

        assert!(
            err.to_string().contains("returned no candidates"),
            "unexpected error: {err}"
        );
    }

    #[test]
    fn input_from_agent_candidate_keeps_pending_import_origin_and_source_evidence() {
        let seeds = vec![seed(1)];
        let input = input_from_agent_candidate(
            &AgentDistillCandidate {
                source_index: Some(1),
                title: Some("Validate API responses".to_owned()),
                body: Some("Rule:\nValidate API responses before deserializing.".to_owned()),
                confidence: None,
                file_patterns: vec!["src/**/*.ts".to_owned()],
            },
            &seeds,
        )
        .expect("input");

        assert_eq!(input.origin.as_deref(), Some("pr_review"));
        assert_eq!(
            input.captured_by_client.as_deref(),
            Some("import-reviews:local-agent")
        );
        assert!(input.body.contains("Source evidence:"));
        assert_eq!(input.file_patterns, Some(vec!["src/**/*.ts".to_owned()]));
    }

    #[test]
    fn input_from_agent_candidate_appends_cli_evidence_to_agent_evidence() {
        let mut seed = seed(1);
        seed.source_evidence.push_str(
            "\n\nThread evidence:\n- author: I updated the response validation in this thread.",
        );
        let input = input_from_agent_candidate(
            &AgentDistillCandidate {
                source_index: Some(1),
                title: Some("Validate API responses".to_owned()),
                body: Some(
                    "Rule:\nValidate API responses before deserializing.\n\nSource evidence:\nReviewer said:\nPlease validate responses."
                        .to_owned(),
                ),
                confidence: None,
                file_patterns: vec!["src/**/*.ts".to_owned()],
            },
            &[seed],
        )
        .expect("input");

        assert!(input.body.contains("Source evidence:"));
        assert!(input.body.contains("Additional source evidence:"));
        assert!(input.body.contains("updated the response validation"));
    }

    #[test]
    fn input_from_agent_candidate_uses_neutral_title_when_agent_title_is_empty() {
        let seeds = vec![seed(1)];
        let input = input_from_agent_candidate(
            &AgentDistillCandidate {
                source_index: Some(1),
                title: Some("   ".to_owned()),
                body: Some("Rule:\nValidate API responses before deserializing.".to_owned()),
                confidence: Some(LOCAL_AGENT_ACTIVE_CONFIDENCE),
                file_patterns: vec!["src/**/*.ts".to_owned()],
            },
            &seeds,
        )
        .expect("input");

        assert_eq!(input.title, "Imported PR review rule");
    }

    #[test]
    fn raw_review_title_is_not_treated_as_distilled_rule() {
        let seeds = vec![seed(1)];
        let candidate = AgentDistillCandidate {
            source_index: Some(1),
            title: Some("Review: validate API responses".to_owned()),
            body: Some("Rule:\nValidate API responses before deserializing.".to_owned()),
            confidence: Some(LOCAL_AGENT_ACTIVE_CONFIDENCE),
            file_patterns: vec!["src/**/*.ts".to_owned()],
        };
        let input = input_from_agent_candidate(&candidate, &seeds).expect("input");

        assert_eq!(input.title, "Imported PR review rule");
        assert_eq!(candidate_route(&candidate), CaptureRoute::Candidate);
        assert!(is_raw_review_title("Review rule for src/api/client.ts"));
        assert!(is_raw_review_title("Rule from review 7"));
        assert!(is_raw_review_title("Source 3: Validate response payloads"));
        assert!(!is_raw_review_title("Source maps should remain inline"));
    }

    #[test]
    fn candidate_confidence_defaults_and_rejects_weak_or_excessive_scores() {
        assert!(
            (candidate_confidence(&AgentDistillCandidate {
                source_index: Some(1),
                title: None,
                body: None,
                confidence: None,
                file_patterns: Vec::new(),
            }) - LOCAL_AGENT_CANDIDATE_CONFIDENCE)
                .abs()
                < f32::EPSILON
        );
        assert!(
            (candidate_confidence(&AgentDistillCandidate {
                source_index: Some(1),
                title: None,
                body: None,
                confidence: Some(0.01),
                file_patterns: Vec::new(),
            }) - 0.01)
                .abs()
                < f32::EPSILON
        );
        assert!(
            (candidate_confidence(&AgentDistillCandidate {
                source_index: Some(1),
                title: None,
                body: None,
                confidence: Some(0.99),
                file_patterns: Vec::new(),
            }) - LOCAL_AGENT_CONFIDENCE_MAX)
                .abs()
                < f32::EPSILON
        );
    }

    #[test]
    fn high_confidence_agent_candidate_routes_to_active_gate() {
        assert_eq!(
            candidate_route(&AgentDistillCandidate {
                source_index: Some(1),
                title: Some("Validate API responses".to_owned()),
                body: None,
                confidence: Some(LOCAL_AGENT_ACTIVE_CONFIDENCE),
                file_patterns: Vec::new(),
            }),
            CaptureRoute::Active
        );
        assert_eq!(
            candidate_route(&AgentDistillCandidate {
                source_index: Some(1),
                title: None,
                body: None,
                confidence: Some(LOCAL_AGENT_ACTIVE_CONFIDENCE),
                file_patterns: Vec::new(),
            }),
            CaptureRoute::Candidate
        );
        assert_eq!(
            candidate_route(&AgentDistillCandidate {
                source_index: Some(1),
                title: Some(" ".to_owned()),
                body: None,
                confidence: Some(LOCAL_AGENT_ACTIVE_CONFIDENCE - 0.01),
                file_patterns: Vec::new(),
            }),
            CaptureRoute::Candidate
        );
        assert_eq!(
            candidate_route(&AgentDistillCandidate {
                source_index: Some(1),
                title: None,
                body: None,
                confidence: Some(CAPTURE_CONFIDENCE_HIGH),
                file_patterns: Vec::new(),
            }),
            CaptureRoute::Candidate
        );
        assert_eq!(
            candidate_route(&AgentDistillCandidate {
                source_index: Some(1),
                title: None,
                body: None,
                confidence: Some(CAPTURE_CONFIDENCE_LOW - 0.01),
                file_patterns: Vec::new(),
            }),
            CaptureRoute::Drop
        );
    }

    #[test]
    fn high_confidence_agent_candidate_from_bot_source_stays_pending() {
        let candidate = AgentDistillCandidate {
            source_index: Some(1),
            title: Some("Respect Jest lodash-es aliasing".to_owned()),
            body: None,
            confidence: Some(LOCAL_AGENT_ACTIVE_CONFIDENCE),
            file_patterns: Vec::new(),
        };
        let bot_source = ReviewSourceKind::from_comment_author(Some("bito-code-review[bot]"));

        assert_eq!(bot_source.wire_label(), "bot:bito-code-review[bot]");
        assert_eq!(
            candidate_route_for_source(&candidate, &bot_source),
            CaptureRoute::Candidate
        );
        assert_eq!(
            candidate_route_for_source(&candidate, &ReviewSourceKind::Human),
            CaptureRoute::Active
        );
    }

    fn bot_seed(index: usize) -> DistillSeed {
        let mut seed = seed(index);
        seed.source_kind = ReviewSourceKind::Bot("bito-code-review[bot]".to_owned());
        seed
    }

    fn human_override_seed(index: usize) -> DistillSeed {
        let mut seed = seed(index);
        seed.source_kind = ReviewSourceKind::HumanOverrideBot;
        seed
    }

    fn activation_level_candidate(source_index: Option<usize>) -> AgentDistillCandidate {
        AgentDistillCandidate {
            source_index,
            title: Some("Validate API responses".to_owned()),
            body: Some("Rule:\nValidate API responses before deserializing.".to_owned()),
            confidence: Some(LOCAL_AGENT_ACTIVE_CONFIDENCE),
            file_patterns: vec!["src/**/*.ts".to_owned()],
        }
    }

    #[test]
    fn unresolved_source_index_candidate_never_activates() {
        // All seeds are human, so the old fail-open fallback would have
        // inherited Human from seed #1 and auto-activated. Fail-closed: an
        // unverifiable attribution must stay pending.
        let seeds = vec![seed(1), seed(2)];
        for source_index in [Some(99), None] {
            let candidate = activation_level_candidate(source_index);
            let resolution = seed_for_agent_candidate(&candidate, &seeds).expect("fallback seed");
            assert!(!resolution.resolved);
            let (route, source_kind) = agent_candidate_gate(&candidate, &resolution, &seeds);
            assert_eq!(
                route,
                CaptureRoute::Candidate,
                "unresolved source_index ({source_index:?}) must not auto-activate"
            );
            assert_eq!(source_kind, ReviewSourceKind::Human);
        }

        // Sanity: the same candidate with a resolving source_index still
        // reaches the active gate, so the fail-closed path is not over-broad.
        let candidate = activation_level_candidate(Some(1));
        let resolution = seed_for_agent_candidate(&candidate, &seeds).expect("resolved seed");
        assert!(resolution.resolved);
        let (route, source_kind) = agent_candidate_gate(&candidate, &resolution, &seeds);
        assert_eq!(route, CaptureRoute::Active);
        assert_eq!(source_kind, ReviewSourceKind::Human);
    }

    #[test]
    fn unresolved_source_index_inherits_most_conservative_batch_source_kind() {
        // With any bot seed in the batch, an unresolvable candidate must be
        // labelled as bot-sourced (the safest available attribution), not
        // laundered as human via seeds.first().
        let seeds = vec![seed(1), bot_seed(2)];
        let candidate = activation_level_candidate(Some(99));
        let resolution = seed_for_agent_candidate(&candidate, &seeds).expect("fallback seed");
        assert!(!resolution.resolved);
        let (route, source_kind) = agent_candidate_gate(&candidate, &resolution, &seeds);
        assert_eq!(route, CaptureRoute::Candidate);
        assert_eq!(source_kind.wire_label(), "bot:bito-code-review[bot]");
    }

    #[test]
    fn high_confidence_agent_candidate_from_human_override_bot_stays_pending() {
        let seeds = vec![human_override_seed(1)];
        let candidate = activation_level_candidate(Some(1));
        let resolution = seed_for_agent_candidate(&candidate, &seeds).expect("resolved seed");

        let (route, source_kind) = agent_candidate_gate(&candidate, &resolution, &seeds);

        assert_eq!(route, CaptureRoute::Candidate);
        assert_eq!(source_kind, ReviewSourceKind::HumanOverrideBot);
        assert_eq!(source_kind.wire_label(), "human_override_bot");
    }

    #[test]
    fn unresolved_source_index_inherits_human_override_bot_source_kind() {
        let seeds = vec![seed(1), human_override_seed(2)];
        let candidate = activation_level_candidate(Some(99));
        let resolution = seed_for_agent_candidate(&candidate, &seeds).expect("fallback seed");

        let (route, source_kind) = agent_candidate_gate(&candidate, &resolution, &seeds);

        assert_eq!(route, CaptureRoute::Candidate);
        assert_eq!(source_kind, ReviewSourceKind::HumanOverrideBot);
    }

    #[tokio::test]
    async fn write_agent_candidates_keeps_bot_sourced_activation_confidence_pending() {
        // End-to-end over the local-agent persistence path (mirrors the
        // heuristic-path regression test in mod.rs): a bot-sourced seed at
        // activation-level confidence must persist as a pending draft carrying
        // the bot source_kind, never as an active rule.
        let db = super::super::fixtures::fresh_import_pool().await;
        let source_repo = RepoScope::canonical("acme/api").expect("scope");
        let seeds = vec![bot_seed(1)];
        let candidates = vec![activation_level_candidate(Some(1))];
        let mut progress = LocalCandidateProgress {
            budget: 5,
            ..LocalCandidateProgress::default()
        };

        write_agent_candidates(&db, &source_repo, &seeds, candidates, &mut progress)
            .await
            .expect("write agent candidates");

        assert_eq!(progress.candidates_created, 1);
        assert_eq!(
            progress.candidates_activated, 0,
            "bot-sourced distilled rules must never auto-activate"
        );
        assert_eq!(progress.candidates_pending, 1);
        let status: String = sqlx::query_scalar("SELECT status FROM skills")
            .fetch_one(&db)
            .await
            .expect("persisted skill status");
        assert_eq!(status, "pending");
        let memories = difflore_core::skills::list_candidates(&db, None, None)
            .await
            .expect("list pending memories");
        assert_eq!(memories.len(), 1);
        assert_eq!(memories[0].source_kind, "bot:bito-code-review[bot]");
    }

    #[test]
    fn collect_distill_seeds_keeps_whole_thread_as_source_evidence() {
        let item = ReviewItemWithComments {
            item: review_store::ReviewItemRecord {
                id: "item-1".to_owned(),
                session_id: None,
                project_id: Some("project-1".to_owned()),
                file_path: "src/api/client.ts".to_owned(),
                diff_content: String::new(),
                status: "imported".to_owned(),
                source: "github".to_owned(),
                source_kind: "github_import".to_owned(),
                external_review_id: Some("item-1".to_owned()),
                repo_full_name: Some("acme/api".to_owned()),
                pr_number: Some(42),
                author: Some("alice".to_owned()),
                synced_at: None,
                metadata: None,
                created_at: "2026-05-01 00:00:00".to_owned(),
                reviewed_at: None,
            },
            comments: vec![
                ReviewCommentRecord {
                    id: "comment-1".to_owned(),
                    review_item_id: "item-1".to_owned(),
                    external_comment_id: Some("comment-1".to_owned()),
                    line_number: Some(10),
                    content: "Please validate API responses before deserializing because malformed responses can panic.".to_owned(),
                    author: Some("reviewer".to_owned()),
                    comment_url: Some("https://example.test/comment-1".to_owned()),
                    thread_id: Some("thread-1".to_owned()),
                    metadata: Some(
                        serde_json::json!({
                            "filePath": "src/api/client.ts",
                            "resolved": true,
                        })
                        .to_string(),
                    ),
                    created_at: "2026-05-01 00:00:01".to_owned(),
                },
                ReviewCommentRecord {
                    id: "comment-2".to_owned(),
                    review_item_id: "item-1".to_owned(),
                    external_comment_id: Some("comment-2".to_owned()),
                    line_number: Some(11),
                    content: "I added the validation and left no-content responses alone.".to_owned(),
                    author: Some("alice".to_owned()),
                    comment_url: Some("https://example.test/comment-2".to_owned()),
                    thread_id: Some("thread-1".to_owned()),
                    metadata: None,
                    created_at: "2026-05-01 00:00:02".to_owned(),
                },
            ],
        };
        let repo_scope = RepoScope::canonical("acme/api").expect("scope");
        let (seeds, progress) =
            collect_distill_seeds(&[item], "acme/api", &repo_scope, 5, &[], &HashSet::new());

        assert_eq!(progress.comments_considered, 2);
        assert_eq!(seeds.len(), 1);
        assert!(seeds[0].source_evidence.contains("Thread evidence:"));
        assert!(
            seeds[0]
                .source_evidence
                .contains("left no-content responses")
        );

        let prompt = build_distill_prompt(&seeds);
        assert!(prompt.contains("THREAD_SOURCE_EVIDENCE:"));
        assert!(prompt.contains("SOURCE_KIND: human"));
        assert!(prompt.contains("left no-content responses"));
        assert!(prompt.contains("Never prefix titles with \"Review:\""));
    }

    #[test]
    fn local_agent_budget_caps_attempt_and_total_windows() {
        assert_eq!(
            local_agent_budget(Duration::ZERO),
            Some(LOCAL_AGENT_ATTEMPT_TIMEOUT)
        );
        assert_eq!(
            local_agent_budget(Duration::from_secs(119)),
            Some(Duration::from_secs(1))
        );
        assert_eq!(local_agent_budget(LOCAL_AGENT_TOTAL_TIMEOUT), None);
    }
}