difflore-cli 0.1.0

Your AI coding agent, taught by your team's PR reviews — a local-first, open-source MCP server that turns past review comments into rules your agent follows automatically.
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
//! Recall presentation: `--json` payload construction, human/markdown
//! rendering, and diagnostic formatting.
//!
//! This is the "how do we show it" half of `difflore recall`. The data these
//! functions render is gathered by the sibling `retrieval` module; the shared
//! result types and orchestration live in the parent `mod.rs`. These functions
//! must keep `recall --json` and the text output byte-identical.

use difflore_core::context::types::PastVerdictScope;

use crate::style::{self, sym};

use super::{
    CloudRecallResult, DiagnosticStep, LocalRecallResult, LocalRuleHit, RecallDiagnostics,
    recall_subject, source_label, strict_file_pattern_match, truncate_one_line,
};

pub(super) fn render_cross_repo_starter_human(hits: &[LocalRuleHit], file: &str) {
    if hits.is_empty() {
        return;
    }
    println!();
    println!("{}", style::ok("Starter rules from your other repos"));
    println!(
        "  {}",
        style::pewter(&format!(
            "transferable, file-matched to {file}; not yet scoped to this repo"
        )),
    );
    for (index, hit) in hits.iter().enumerate() {
        let source = hit
            .source_repo
            .as_deref()
            .map(str::trim)
            .filter(|repo| !repo.is_empty())
            .map_or_else(|| "another repo".to_owned(), ToOwned::to_owned);
        println!(
            "  {} {}  {}",
            style::pewter(&format!("{}.", index + 1)),
            style::title(&hit.title),
            style::emerald(&format!("\u{21aa} from {source}")),
        );
        // Show the same bad→fix snippets here so a cold-start repo's starter
        // suggestions read as concretely as in-scope recall.
        render_hit_examples(hit, "     ");
    }
    println!();
    println!(
        "  {} Make them this repo's own memory: {}",
        style::pewter(sym::TIP),
        style::cmd("difflore import-reviews"),
    );
}

pub(super) fn cross_repo_starter_json(hits: &[LocalRuleHit]) -> serde_json::Value {
    serde_json::Value::Array(
        hits.iter()
            .map(|hit| {
                serde_json::json!({
                    "id": hit.id,
                    "title": hit.title,
                    "sourceRepo": hit.source_repo,
                    "filePatterns": hit.file_patterns,
                    "rawScore": hit.raw_score,
                    "rankScore": hit.rank_score,
                    "bad": hit.bad,
                    "fix": hit.fix,
                })
            })
            .collect(),
    )
}

pub(super) fn local_rules_json(
    local: &LocalRecallResult,
    queried_file: Option<&str>,
) -> serde_json::Value {
    serde_json::json!({
        "rulesIndexed": local.rules_indexed,
        "repoFullName": local.repo_full_name,
        "fileScopeFallback": local.file_scope_fallback,
        "results": local.matches.iter().map(|hit| local_rule_hit_json(hit, queried_file)).collect::<Vec<_>>(),
    })
}

/// Serialise one recalled rule for `recall --json`. Beyond the headline
/// (title/preview/scores/bad/fix), this emits the FULL rule body when it was
/// hydrated: the rendered code-spec `body`, the structured `examples`
/// (bad/good/description straight from `rule_examples`), and the
/// `check`/`trigger` fields. Before this, an agent consuming recall could only
/// see headlines with the bodies NULL; now it sees the actual team memory.
pub(super) fn local_rule_hit_json(
    hit: &LocalRuleHit,
    queried_file: Option<&str>,
) -> serde_json::Value {
    let mut value = serde_json::json!({
        "skillId": hit.id,
        "title": hit.title,
        "rankScore": hit.rank_score,
        "rawScore": hit.raw_score,
        "confidence": hit.confidence,
        "filePatterns": hit.file_patterns,
        "sourceRepo": hit.source_repo,
        "preview": hit.preview,
        "bad": hit.bad,
        "fix": hit.fix,
        "strictFileMatch": strict_file_pattern_match(&hit.file_patterns, queried_file),
    });
    if let Some(rendered) = hit.body.as_ref()
        && let Some(object) = value.as_object_mut()
    {
        // `body` is the same code-spec markdown the MCP `get_rules` detail path
        // returns, so an agent that recalls a rule gets the full contract /
        // cases / self-check / provenance — not just a one-line preview.
        object.insert(
            "body".to_owned(),
            serde_json::Value::String(rendered.body.clone()),
        );
        object.insert(
            "origin".to_owned(),
            serde_json::Value::String(rendered.origin.clone()),
        );
        object.insert(
            "check".to_owned(),
            rendered
                .check
                .clone()
                .map_or(serde_json::Value::Null, serde_json::Value::String),
        );
        object.insert(
            "trigger".to_owned(),
            rendered
                .trigger
                .clone()
                .map_or(serde_json::Value::Null, serde_json::Value::String),
        );
        object.insert(
            "examples".to_owned(),
            serde_json::Value::Array(
                rendered
                    .examples
                    .iter()
                    .map(|ex| {
                        serde_json::json!({
                            "badCode": ex.bad_code,
                            "goodCode": ex.good_code,
                            "description": ex.description,
                        })
                    })
                    .collect(),
            ),
        );
    }
    value
}

pub(super) fn recall_diagnostics_json(diagnostics: &RecallDiagnostics) -> serde_json::Value {
    serde_json::json!({
        "summary": diagnostics.summary,
        "possibleCauses": diagnostics.possible_causes.iter().map(|cause| serde_json::json!({
            "code": cause.code,
            "message": cause.message,
        })).collect::<Vec<_>>(),
        "nextSteps": diagnostics.next_steps.iter().map(|step| serde_json::json!({
            "command": step.command,
            "message": step.message,
        })).collect::<Vec<_>>(),
    })
}

pub(super) fn render_zero_match_compact_human(diagnostics: &RecallDiagnostics) {
    let repo_scope_missing = diagnostics
        .possible_causes
        .iter()
        .any(|cause| cause.code == "repo_scope_missing");
    let local_corpus_empty = diagnostics
        .possible_causes
        .iter()
        .any(|cause| cause.code == "local_corpus_empty");
    let message = if repo_scope_missing {
        "No review memory matched because this checkout has no GitHub origin/upstream remote."
    } else if local_corpus_empty {
        "No review memory matched because this repo has no local rules yet."
    } else {
        "No review memory matched this query or file scope."
    };
    println!("  {} {message}", style::danger(sym::ERR));

    let next = if repo_scope_missing {
        DiagnosticStep {
            command: Some("git remote -v".to_owned()),
            message: "add or check a GitHub remote so DiffLore can scope memory to this repo"
                .to_owned(),
        }
    } else if local_corpus_empty {
        DiagnosticStep {
            command: Some("difflore import-reviews --max-prs 50".to_owned()),
            message: "seed local review memory from recent PR reviews".to_owned(),
        }
    } else {
        diagnostics
            .next_steps
            .iter()
            .find(|step| step.command.is_some())
            .cloned()
            .unwrap_or(DiagnosticStep {
                command: Some("difflore status".to_owned()),
                message: "inspect memory readiness".to_owned(),
            })
    };
    println!(
        "  next: {}  {}",
        style::cmd(next.command.as_deref().unwrap_or_default()),
        style::pewter(&next.message),
    );
}

pub(super) fn render_local_recall_human(
    local: &LocalRecallResult,
    intent: &str,
    file: Option<&str>,
    verbose: bool,
) {
    if local.matches.is_empty() {
        let subject = recall_subject(intent);
        println!(
            "  {} No local memories matched for {subject}.",
            style::danger(sym::ERR),
        );
        if let Some(file) = file {
            println!(
                "  {} file scope: {}",
                style::pewter(sym::BULLET),
                style::pewter(file)
            );
        }
        if local.repo_full_name.is_none() {
            // No repo scope -> empty by design, not an empty corpus. Steer to the
            // remote rather than import-reviews (which can't help without a scope).
            println!(
                "  {} Local recall needs a GitHub remote for repo-scoped memory: {}",
                style::pewter(sym::TIP),
                style::cmd("git remote -v"),
            );
        } else if local.rules_indexed == 0 {
            println!(
                "  {} This repo has no local rules yet. Import reviews locally first: {}",
                style::pewter(sym::TIP),
                style::cmd("difflore import-reviews"),
            );
        } else {
            println!(
                "  {} Local corpus has {} rule{} for this repo; try a broader query or inspect status: {}",
                style::pewter(sym::TIP),
                local.rules_indexed,
                if local.rules_indexed == 1 { "" } else { "s" },
                style::cmd("difflore status"),
            );
        }
        return;
    }

    println!(
        "{}",
        style::ok(&format!(
            "Top {} local memories for {} · file={} repo={}",
            local.matches.len(),
            recall_subject(intent),
            file.unwrap_or("(none)"),
            local.repo_full_name.as_deref().unwrap_or("(unscoped)"),
        )),
    );
    println!();
    for (index, hit) in local.matches.iter().enumerate() {
        println!(
            "  {} {}  {}  {}",
            style::pewter(&format!("{}.", index + 1)),
            style::title(&hit.title),
            style::emerald(&format!("rank={:.2}", hit.rank_score)),
            style::pewter(&format!("raw={:.3}", hit.raw_score)),
        );
        if strict_file_pattern_match(&hit.file_patterns, file) {
            println!(
                "       {} strict file match via {}",
                style::pewter("why:"),
                hit.file_patterns.join(", "),
            );
        }
        let source = hit
            .source_repo
            .as_deref()
            .filter(|repo| !repo.trim().is_empty())
            .map_or_else(
                || "review evidence".to_owned(),
                |repo| format!("\u{2190} learned from {repo}"),
            );
        println!("       {} {}", style::pewter("source:"), source);
        // The bad→fix pair is the felt value: it makes real recall as sharp as
        // the `difflore try` demo. Show it unconditionally (when the rule body
        // carries examples) — these snippets ARE the memory, not a verbose
        // extra. The full-text preview stays behind --verbose.
        render_hit_examples(hit, "       ");
        if verbose {
            println!(
                "       {} {}",
                style::pewter("preview:"),
                truncate_one_line(&hit.preview, 180),
            );
        }
    }
    println!();
    println!(
        "  {}",
        style::pewter(
            "local SQLite rules/index only; Cloud review memory is appended separately when available"
        ),
    );
}

/// Render a hit's bad→fix example pair in the `difflore try` demo style:
/// a `bad` line in danger red and a `fix` line in emerald, each a single
/// concise line. `indent` is the leading whitespace so callers can align the
/// pair under their own list layout. Omits each line that is absent so a rule
/// without examples (or with only one side) degrades cleanly — no empty
/// `bad:`/`fix:` labels.
pub(super) fn render_hit_examples(hit: &LocalRuleHit, indent: &str) {
    if let Some(bad) = hit.bad.as_deref().map(str::trim).filter(|s| !s.is_empty()) {
        println!(
            "{indent}{} {}",
            style::pewter("bad"),
            style::danger(&truncate_one_line(bad, 160)),
        );
    }
    if let Some(fix) = hit.fix.as_deref().map(str::trim).filter(|s| !s.is_empty()) {
        println!(
            "{indent}{} {}",
            style::pewter("fix"),
            style::emerald(&truncate_one_line(fix, 160)),
        );
    }
}

pub(super) fn render_cloud_recall_human(
    recall: &CloudRecallResult,
    intent: &str,
    file: Option<&str>,
    verbose: bool,
) {
    if !recall.logged_in {
        println!(
            "  {} Cloud review memory skipped: not logged in. Local recall above works offline; login only appends imported PR review memory: {}",
            style::pewter(sym::BULLET),
            style::cmd("difflore cloud login"),
        );
        return;
    }
    let Some(repo) = recall.repo_full_name.as_deref() else {
        println!(
            "  {} Cloud review memory skipped: no GitHub repo remote detected. Local recall above is still usable.",
            style::pewter(sym::BULLET),
        );
        return;
    };
    if recall.verdicts.is_empty() {
        let subject = recall_subject(intent);
        println!(
            "  {} No cloud review memories matched for {subject}.",
            style::danger(sym::ERR),
        );
        println!(
            "  {} repo: {} · scope: {}",
            style::pewter(sym::BULLET),
            style::pewter(repo),
            recall.scope,
        );
        if let Some(file) = file {
            println!(
                "  {} file scope: {}",
                style::pewter(sym::BULLET),
                style::pewter(file)
            );
        }
        let seed_hint = if recall.scope == PastVerdictScope::Team.as_str() {
            "Import PR reviews or sync team review memory to seed Cloud team recall"
        } else {
            "Import PR reviews to seed Cloud Free personal recall"
        };
        println!(
            "  {} {}: {}",
            style::pewter(sym::TIP),
            seed_hint,
            style::cmd("difflore import-reviews --max-prs 50 --upload"),
        );
        return;
    }

    println!(
        "{}",
        style::ok(&format!(
            "Top {} cloud review memories for {} · file={} repo={} scope={}",
            recall.verdicts.len(),
            recall_subject(intent),
            file.unwrap_or("(none)"),
            repo,
            recall.scope,
        )),
    );
    println!();
    for (index, verdict) in recall.verdicts.iter().enumerate() {
        let source = source_label(verdict, Some(repo)).unwrap_or_else(|| repo.to_owned());
        println!(
            "  {} {}  {}",
            style::pewter(&format!("{}.", index + 1)),
            style::title(&truncate_one_line(&verdict.issue_text, 96)),
            style::emerald(&format!("similarity={:.2}", verdict.similarity)),
        );
        println!("       {} {}", style::pewter("source:"), source);
        if let Some(reason) = verdict.reason.as_deref().map(str::trim)
            && !reason.is_empty()
        {
            println!(
                "       {} {}",
                style::pewter("reason:"),
                truncate_one_line(reason, 160),
            );
        }
        if verbose {
            println!(
                "       {} {}",
                style::pewter("code:"),
                truncate_one_line(&verdict.code_snippet, 180),
            );
        }
    }
    println!();
    println!(
        "  {}",
        style::pewter(
            "cloud ranked these memories; the CLI only supplied intent, file, and repo context",
        ),
    );
}