difflore-core 0.1.0

Core library for the difflore CLI — rule store, retrieval, MCP server, hooks, cloud sync. Not intended for direct use; depend on `difflore-cli` instead.
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
//! Review-depth: LLM rule-applicability judge.
//!
//! After rule recall the review pipeline has a candidate pool of rules
//! matched by lexical/semantic retrieval + intent rerank. Retrieval is
//! recall-oriented: it will happily surface a rule that *mentions* a token
//! from the diff even when the rule's actual lesson has nothing to do with
//! the change. Those off-topic rules then leak into the review prompt and
//! nudge the model toward irrelevant findings.
//!
//! This module adds an OPTIONAL, latency-tolerant step (gated by
//! `review_engine.rule_applicability_judge`, default off) that asks the
//! existing review LLM provider, in a single batched call, "does THIS
//! rule's lesson apply to THIS diff?" for every candidate rule, then drops
//! the rules the model judges non-applicable before they enter the review
//! prompt. The result is higher-precision review with fewer irrelevant
//! injected rules.
//!
//! Graceful degradation is the #1 invariant, mirroring `validate::verify_pass`:
//! on ANY failure (disabled, empty, LLM error, parser error, or a response
//! that would drop every single rule) the caller's candidate rules come back
//! untouched. The judge can only ever *narrow* a pool of relevant rules; it
//! must never silently starve a review of all of them.

use super::super::ReviewLlm;
use crate::context::types::ContextSourceItemRecord;
use std::collections::HashMap;

/// Per-rule verdict parsed from the judge response: whether the rule's
/// lesson applies to the diff, plus a 0..1 relevance score (used only for
/// ordering / telemetry — the keep/drop decision is the boolean).
#[derive(Debug, Clone, Copy, PartialEq)]
pub(super) struct JudgeVerdict {
    pub applies: bool,
    pub relevance: f32,
}

/// System prompt for the applicability judge. Deliberately strict and
/// narrow so a cheap model stays calibrated: it decides relevance only,
/// never invents findings, and is told that when unsure it should keep the
/// rule (false positives in the *review* are recoverable; dropping a rule
/// that did apply is not).
pub(super) const JUDGE_SYSTEM_PROMPT: &str = r#"You are a code-review rule-relevance judge. You are given a diff and a numbered list of candidate review rules. For EACH rule, decide whether that rule's lesson actually applies to THIS diff — i.e. the diff touches the kind of code, pattern, or concern the rule is about.

Return ONLY a JSON array. Each element must be an object:
{"id": <index>, "applies": true|false, "relevance": <float 0..1>, "reason": "<short>"}

Judge relevance only — do NOT report code issues, do NOT invent rules, do NOT rewrite the rule. A rule "applies" when the diff plausibly involves the rule's subject, even if the diff does not necessarily violate it. When you are unsure, set "applies": true (keep the rule). Mark "applies": false only when the rule is clearly about unrelated code or concerns.
Return the raw JSON array only, no markdown, no explanation."#;

/// One candidate rule, flattened for the judge prompt. Borrows from the
/// `ContextSourceItemRecord` so the caller doesn't have to clone the pool.
struct JudgeCandidate<'a> {
    title: &'a str,
    content: &'a str,
}

fn candidate_title(item: &ContextSourceItemRecord) -> &str {
    item.title
        .as_deref()
        .map(str::trim)
        .filter(|t| !t.is_empty())
        .unwrap_or(item.source_id.as_str())
}

/// Build the judge user-prompt: the diff (trimmed) + the candidate rules
/// enumerated with stable `id` indices so the response can be matched back
/// deterministically. Rule bodies are length-capped so a handful of verbose
/// rules can't blow the prompt budget.
fn build_judge_user_prompt(diff: &str, candidates: &[JudgeCandidate<'_>]) -> String {
    const DIFF_LIMIT: usize = 8_000;
    const RULE_BODY_LIMIT: usize = 600;

    let trimmed = if diff.len() > DIFF_LIMIT {
        &diff[..DIFF_LIMIT]
    } else {
        diff
    };

    let mut s = String::new();
    s.push_str("## Diff\n```diff\n");
    s.push_str(trimmed);
    s.push_str("\n```\n\n## Candidate rules\n");
    for (i, c) in candidates.iter().enumerate() {
        let body: String = c.content.trim().chars().take(RULE_BODY_LIMIT).collect();
        s.push_str(&format!(
            "- id: {i}\n  title: {}\n  rule: {body}\n",
            c.title
        ));
    }
    s
}

/// Parse a judge response into `{index → JudgeVerdict}`. Uses the exact
/// three-tier extraction (`direct` → fenced code block → bracket scan) as
/// `parse::parse_verify_response`, so it tolerates the same model-output
/// noise. Returns `None` on any structural failure; an empty-but-valid
/// array yields `Some(empty_map)`.
pub(super) fn parse_judge_response(text: &str) -> Option<HashMap<usize, JudgeVerdict>> {
    let arr: Vec<serde_json::Value> =
        if let Ok(v) = serde_json::from_str::<Vec<serde_json::Value>>(text.trim()) {
            v
        } else if let Some(start) = text.find("```") {
            let after = &text[start + 3..];
            let content_start = after.find('\n').map_or(0, |i| i + 1);
            let end = after[content_start..].find("```")?;
            let block = &after[content_start..content_start + end];
            serde_json::from_str::<Vec<serde_json::Value>>(block.trim()).ok()?
        } else if let (Some(start), Some(end)) = (text.find('['), text.rfind(']')) {
            if end <= start {
                return None;
            }
            serde_json::from_str::<Vec<serde_json::Value>>(&text[start..=end]).ok()?
        } else {
            return None;
        };

    let mut out = HashMap::new();
    for item in arr {
        let Some(obj) = item.as_object() else {
            continue;
        };
        let Some(id) = obj
            .get("id")
            .and_then(serde_json::Value::as_u64)
            .map(|n| n as usize)
        else {
            continue;
        };
        // Default to keep when the field is missing/garbled — the system
        // prompt's "when unsure, keep" contract, enforced at parse time.
        let applies = obj
            .get("applies")
            .and_then(serde_json::Value::as_bool)
            .unwrap_or(true);
        let relevance = obj
            .get("relevance")
            .and_then(serde_json::Value::as_f64)
            .unwrap_or(if applies { 1.0 } else { 0.0 }) as f32;
        out.insert(
            id,
            JudgeVerdict {
                applies,
                relevance: relevance.clamp(0.0, 1.0),
            },
        );
    }
    Some(out)
}

/// Pure filter step: given the candidate `rules` (in pool order) and the
/// parsed `verdicts` keyed by pool index, return only the rules the judge
/// kept, preserving order.
///
/// Backward-safety contract (verified by unit tests):
/// * A rule the judge did NOT score is KEPT (the model skipped it; we never
///   drop on silence).
/// * If applying the verdicts would drop EVERY rule, the original pool is
///   returned unchanged — a review must never lose all its rules because a
///   single judge call was over-eager or malformed.
pub(super) fn judge_filter_rules(
    rules: Vec<ContextSourceItemRecord>,
    verdicts: &HashMap<usize, JudgeVerdict>,
) -> Vec<ContextSourceItemRecord> {
    if rules.is_empty() {
        return rules;
    }
    let kept: Vec<ContextSourceItemRecord> = rules
        .iter()
        .enumerate()
        .filter(|(idx, _)| verdicts.get(idx).is_none_or(|v| v.applies))
        .map(|(_, item)| item.clone())
        .collect();

    if kept.is_empty() {
        // Every candidate was judged non-applicable. Refuse to strip the
        // review of all rules — fall back to the full pool.
        return rules;
    }
    kept
}

/// Run the applicability judge over a recalled rule pool.
///
/// Returns the (possibly narrowed) pool. On `enabled == false`, an empty
/// pool, an LLM error, or an unparseable response, the input pool is
/// returned untouched. Only ever drops rules the judge explicitly marked
/// non-applicable, and never drops the entire pool (see
/// [`judge_filter_rules`]).
pub(super) async fn run_applicability_judge(
    llm: &dyn ReviewLlm,
    enabled: bool,
    diff: &str,
    rules: Vec<ContextSourceItemRecord>,
) -> Vec<ContextSourceItemRecord> {
    if !enabled {
        return rules;
    }
    // A single rule (or none) isn't worth an extra round-trip: there is no
    // precision to gain from filtering a one-element pool, and dropping it
    // would just hit the "never empty" fallback anyway.
    if rules.len() < 2 {
        return rules;
    }
    if diff.is_empty() {
        return rules;
    }

    let candidates: Vec<JudgeCandidate<'_>> = rules
        .iter()
        .map(|item| JudgeCandidate {
            title: candidate_title(item),
            content: item.content.as_str(),
        })
        .collect();

    let user_prompt = build_judge_user_prompt(diff, &candidates);
    let response = match llm.chat(JUDGE_SYSTEM_PROMPT, &user_prompt).await {
        Ok(r) => r,
        Err(e) => {
            eprintln!("[applicability_judge] judge call failed: {e:?}; keeping all rules");
            return rules;
        }
    };

    let verdicts = match parse_judge_response(&response) {
        Some(map) if !map.is_empty() => map,
        _ => {
            eprintln!(
                "[applicability_judge] could not parse judge response; keeping all rules unchanged"
            );
            return rules;
        }
    };

    let before = rules.len();
    let filtered = judge_filter_rules(rules, &verdicts);
    if crate::env::fix_debug() {
        eprintln!(
            "[applicability_judge] pool {before} -> {} after judge filter",
            filtered.len(),
        );
    }
    filtered
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::review::ReviewLlm;
    use std::sync::Mutex;

    fn rule(source_id: &str, title: &str, content: &str, score: f64) -> ContextSourceItemRecord {
        ContextSourceItemRecord {
            source_type: "rule".into(),
            source_id: source_id.into(),
            relative_path: None,
            start_line: None,
            end_line: None,
            title: Some(title.into()),
            content: content.into(),
            score,
        }
    }

    fn v(applies: bool, relevance: f32) -> JudgeVerdict {
        JudgeVerdict { applies, relevance }
    }

    // ── Mock provider (NEVER calls a real LLM) ──────────────────────────

    /// A `ReviewLlm` that returns a fixed canned response and records the
    /// prompts it was handed, so tests can both drive the filter and assert
    /// the judge actually invoked the provider with the expected payload.
    struct MockReviewLlm {
        response: Result<String, ()>,
        calls: Mutex<Vec<(String, String)>>,
    }

    impl MockReviewLlm {
        fn ok(body: &str) -> Self {
            Self {
                response: Ok(body.to_owned()),
                calls: Mutex::new(Vec::new()),
            }
        }
        fn erroring() -> Self {
            Self {
                response: Err(()),
                calls: Mutex::new(Vec::new()),
            }
        }
        fn call_count(&self) -> usize {
            self.calls.lock().unwrap().len()
        }
        fn last_user_prompt(&self) -> Option<String> {
            self.calls.lock().unwrap().last().map(|(_, u)| u.clone())
        }
    }

    #[async_trait::async_trait]
    impl ReviewLlm for MockReviewLlm {
        async fn chat(&self, system: &str, user: &str) -> crate::Result<String> {
            self.calls
                .lock()
                .unwrap()
                .push((system.to_owned(), user.to_owned()));
            self.response
                .clone()
                .map_err(|()| crate::errors::CoreError::Internal("mock failure".into()))
        }
    }

    // ── parse_judge_response ────────────────────────────────────────────

    #[test]
    fn parse_direct_json_array() {
        let map = parse_judge_response(
            r#"[{"id":0,"applies":true,"relevance":0.9},{"id":1,"applies":false,"relevance":0.1}]"#,
        )
        .unwrap();
        assert_eq!(map.get(&0).copied(), Some(v(true, 0.9)));
        assert_eq!(map.get(&1).copied(), Some(v(false, 0.1)));
    }

    #[test]
    fn parse_fenced_code_block() {
        let text = "Here you go:\n```json\n[{\"id\":0,\"applies\":false,\"relevance\":0.2}]\n```\n";
        let map = parse_judge_response(text).unwrap();
        assert_eq!(map.get(&0).copied(), Some(v(false, 0.2)));
    }

    #[test]
    fn parse_bracket_scan_with_prose_around() {
        let text = "I think the answer is [{\"id\":2,\"applies\":true,\"relevance\":0.7}] overall.";
        let map = parse_judge_response(text).unwrap();
        assert_eq!(map.get(&2).copied(), Some(v(true, 0.7)));
    }

    #[test]
    fn parse_missing_applies_defaults_to_keep() {
        // "when unsure, keep" contract enforced at parse time.
        let map = parse_judge_response(r#"[{"id":0,"relevance":0.5}]"#).unwrap();
        assert_eq!(map.get(&0).copied(), Some(v(true, 0.5)));
    }

    #[test]
    fn parse_missing_relevance_derives_from_applies() {
        let map =
            parse_judge_response(r#"[{"id":0,"applies":false},{"id":1,"applies":true}]"#).unwrap();
        assert_eq!(map.get(&0).copied(), Some(v(false, 0.0)));
        assert_eq!(map.get(&1).copied(), Some(v(true, 1.0)));
    }

    #[test]
    fn parse_clamps_out_of_range_relevance() {
        let map = parse_judge_response(r#"[{"id":0,"applies":true,"relevance":4.2}]"#).unwrap();
        assert!((map.get(&0).unwrap().relevance - 1.0).abs() < f32::EPSILON);
    }

    #[test]
    fn parse_garbage_returns_none() {
        assert!(parse_judge_response("not json at all").is_none());
        assert!(parse_judge_response("").is_none());
    }

    #[test]
    fn parse_empty_array_is_some_empty_map() {
        let map = parse_judge_response("[]").unwrap();
        assert!(map.is_empty());
    }

    #[test]
    fn parse_skips_entries_without_id() {
        let map = parse_judge_response(r#"[{"applies":false},{"id":1,"applies":true}]"#).unwrap();
        assert!(!map.contains_key(&0));
        assert_eq!(map.get(&1).copied(), Some(v(true, 1.0)));
    }

    // ── judge_filter_rules (pure core) ──────────────────────────────────

    #[test]
    fn filter_drops_only_non_applicable_rules() {
        let rules = vec![
            rule("a", "Rule A", "body a", 0.9),
            rule("b", "Rule B", "body b", 0.8),
            rule("c", "Rule C", "body c", 0.7),
        ];
        let mut verdicts = HashMap::new();
        verdicts.insert(0, v(true, 0.9)); // keep
        verdicts.insert(1, v(false, 0.1)); // drop
        verdicts.insert(2, v(true, 0.6)); // keep

        let out = judge_filter_rules(rules, &verdicts);
        let ids: Vec<&str> = out.iter().map(|r| r.source_id.as_str()).collect();
        assert_eq!(ids, vec!["a", "c"], "only the non-applicable rule b drops");
    }

    #[test]
    fn filter_keeps_rules_the_judge_did_not_score() {
        // Model returned a verdict for index 0 only; indices 1,2 are silent
        // and must be kept (never drop on silence).
        let rules = vec![
            rule("a", "Rule A", "body a", 0.9),
            rule("b", "Rule B", "body b", 0.8),
            rule("c", "Rule C", "body c", 0.7),
        ];
        let mut verdicts = HashMap::new();
        verdicts.insert(0, v(false, 0.0)); // explicit drop

        let out = judge_filter_rules(rules, &verdicts);
        let ids: Vec<&str> = out.iter().map(|r| r.source_id.as_str()).collect();
        assert_eq!(
            ids,
            vec!["b", "c"],
            "unscored rules survive, scored drop applies"
        );
    }

    #[test]
    fn filter_preserves_pool_order() {
        let rules = vec![
            rule("a", "A", "x", 0.5),
            rule("b", "B", "y", 0.5),
            rule("c", "C", "z", 0.5),
            rule("d", "D", "w", 0.5),
        ];
        let mut verdicts = HashMap::new();
        verdicts.insert(1, v(false, 0.0)); // drop b
        let out = judge_filter_rules(rules, &verdicts);
        let ids: Vec<&str> = out.iter().map(|r| r.source_id.as_str()).collect();
        assert_eq!(ids, vec!["a", "c", "d"]);
    }

    #[test]
    fn filter_never_returns_empty_pool_when_all_dropped() {
        // Backward-safety: a verdict set that drops every rule must yield the
        // ORIGINAL pool, not an empty review context.
        let rules = vec![rule("a", "A", "x", 0.5), rule("b", "B", "y", 0.5)];
        let mut verdicts = HashMap::new();
        verdicts.insert(0, v(false, 0.0));
        verdicts.insert(1, v(false, 0.0));
        let out = judge_filter_rules(rules, &verdicts);
        let ids: Vec<&str> = out.iter().map(|r| r.source_id.as_str()).collect();
        assert_eq!(ids, vec!["a", "b"], "all-dropped falls back to full pool");
    }

    #[test]
    fn filter_empty_input_is_empty() {
        let out = judge_filter_rules(Vec::new(), &HashMap::new());
        assert!(out.is_empty());
    }

    // ── run_applicability_judge (end-to-end with mock) ──────────────────

    #[tokio::test]
    async fn judge_disabled_is_noop_and_makes_no_call() {
        let llm = MockReviewLlm::ok("[]");
        let rules = vec![rule("a", "A", "x", 0.5), rule("b", "B", "y", 0.5)];
        let out = run_applicability_judge(&llm, false, "some diff", rules.clone()).await;
        assert_eq!(out.len(), rules.len());
        assert_eq!(llm.call_count(), 0, "disabled must not hit the provider");
    }

    #[tokio::test]
    async fn judge_filters_pool_on_valid_response() {
        let llm = MockReviewLlm::ok(
            r#"[{"id":0,"applies":true,"relevance":0.9},{"id":1,"applies":false,"relevance":0.1},{"id":2,"applies":true,"relevance":0.8}]"#,
        );
        let rules = vec![
            rule("keep1", "Keep 1", "relevant body", 0.9),
            rule("drop", "Drop", "irrelevant body", 0.8),
            rule("keep2", "Keep 2", "relevant body 2", 0.7),
        ];
        let out = run_applicability_judge(&llm, true, "diff body", rules).await;
        let ids: Vec<&str> = out.iter().map(|r| r.source_id.as_str()).collect();
        assert_eq!(ids, vec!["keep1", "keep2"]);
        assert_eq!(llm.call_count(), 1);
    }

    #[tokio::test]
    async fn judge_keeps_all_on_llm_error() {
        let llm = MockReviewLlm::erroring();
        let rules = vec![
            rule("a", "A", "x", 0.5),
            rule("b", "B", "y", 0.5),
            rule("c", "C", "z", 0.5),
        ];
        let out = run_applicability_judge(&llm, true, "diff", rules.clone()).await;
        assert_eq!(out.len(), rules.len(), "LLM error => untouched pool");
    }

    #[tokio::test]
    async fn judge_keeps_all_on_unparseable_response() {
        let llm = MockReviewLlm::ok("the model rambled and returned no json");
        let rules = vec![rule("a", "A", "x", 0.5), rule("b", "B", "y", 0.5)];
        let out = run_applicability_judge(&llm, true, "diff", rules.clone()).await;
        assert_eq!(out.len(), rules.len(), "parse failure => untouched pool");
    }

    #[tokio::test]
    async fn judge_skips_single_rule_pool() {
        // One rule => nothing to filter; skip the round-trip entirely.
        let llm = MockReviewLlm::ok(r#"[{"id":0,"applies":false}]"#);
        let rules = vec![rule("only", "Only", "x", 0.9)];
        let out = run_applicability_judge(&llm, true, "diff", rules).await;
        assert_eq!(out.len(), 1);
        assert_eq!(
            llm.call_count(),
            0,
            "single-rule pool must not call provider"
        );
    }

    #[tokio::test]
    async fn judge_skips_empty_diff() {
        let llm = MockReviewLlm::ok(r#"[{"id":0,"applies":false}]"#);
        let rules = vec![rule("a", "A", "x", 0.5), rule("b", "B", "y", 0.5)];
        let out = run_applicability_judge(&llm, true, "", rules).await;
        assert_eq!(out.len(), 2);
        assert_eq!(llm.call_count(), 0, "empty diff must not call provider");
    }

    #[tokio::test]
    async fn judge_all_dropped_falls_back_to_full_pool() {
        let llm = MockReviewLlm::ok(
            r#"[{"id":0,"applies":false,"relevance":0.0},{"id":1,"applies":false,"relevance":0.0}]"#,
        );
        let rules = vec![rule("a", "A", "x", 0.5), rule("b", "B", "y", 0.5)];
        let out = run_applicability_judge(&llm, true, "diff", rules).await;
        let ids: Vec<&str> = out.iter().map(|r| r.source_id.as_str()).collect();
        assert_eq!(ids, vec!["a", "b"], "all-dropped => full pool, never empty");
    }

    #[tokio::test]
    async fn judge_prompt_enumerates_rules_with_indices() {
        let llm = MockReviewLlm::ok("[]"); // empty -> unparseable-ish (empty map) -> noop
        let rules = vec![
            rule(
                "a",
                "Pin Actions to SHAs",
                "Always pin GitHub Actions.",
                0.9,
            ),
            rule("b", "Avoid unwrap", "Do not unwrap in library code.", 0.8),
        ];
        // Empty array parses to an empty map -> treated as "could not use" ->
        // pool returned untouched, but the CALL still happened with our prompt.
        let _ = run_applicability_judge(&llm, true, "diff text here", rules).await;
        assert_eq!(llm.call_count(), 1);
        let prompt = llm.last_user_prompt().unwrap();
        assert!(prompt.contains("- id: 0"), "rule 0 enumerated");
        assert!(prompt.contains("- id: 1"), "rule 1 enumerated");
        assert!(
            prompt.contains("Pin Actions to SHAs"),
            "title carried into prompt"
        );
        assert!(
            prompt.contains("diff text here"),
            "diff carried into prompt"
        );
    }
}