1 Commits

Author SHA1 Message Date
teernisse
2410f91843 feat(explain): enrich output with state, direction, excerpts, and truncation metadata
Several improvements to the explain command's data richness and correctness:

Entity summary:
- Add project_path field so consumers know which project the entity belongs to
  without needing to cross-reference

Related entities:
- Add state field (open/closed/merged) to RelatedIssue so consumers can
  distinguish live references from resolved ones
- Add direction field (incoming/outgoing) so consumers know the reference
  direction without inferring from position in the array
- Filter self-references: entities no longer appear as related to themselves,
  which previously produced confusing circular references in the output

Open threads:
- Add first_note_excerpt (first 200 chars of the first non-system note body)
  so consumers get a preview of what each thread is about without needing
  to fetch the full discussion
- Human renderer shows first line of excerpt in muted style

Activity summary:
- Floor first_event timestamp at entity created_at — resource label events
  from bulk operations or API imports can predate entity creation, producing
  nonsensical activity spans. The floor ensures the activity window starts
  no earlier than the entity itself
- Updated build_activity_summary signature to accept created_at_ms parameter
- All call sites (including tests) updated to pass the new parameter

Timeline excerpt:
- Replace bare Vec<TimelineEventSummary> with TimelineExcerpt struct containing
  events, total_events count, and truncated boolean
- Request a generous pipeline limit (500) from collect_events, then take the
  most recent MAX_TIMELINE_EVENTS from the tail — previously truncated from
  the front, losing the most recent (and most relevant) events
- Human renderer shows truncation note when applicable: "(showing N of M)"

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-11 10:30:16 -04:00
3 changed files with 150 additions and 30 deletions

2
Cargo.lock generated
View File

@@ -1324,7 +1324,7 @@ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
[[package]] [[package]]
name = "lore" name = "lore"
version = "0.9.4" version = "0.9.3"
dependencies = [ dependencies = [
"asupersync", "asupersync",
"async-stream", "async-stream",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "lore" name = "lore"
version = "0.9.4" version = "0.9.3"
edition = "2024" edition = "2024"
description = "Gitlore - Local GitLab data management with semantic search" description = "Gitlore - Local GitLab data management with semantic search"
authors = ["Taylor Eernisse"] authors = ["Taylor Eernisse"]

View File

@@ -36,7 +36,7 @@ pub struct ExplainResult {
#[serde(skip_serializing_if = "Option::is_none")] #[serde(skip_serializing_if = "Option::is_none")]
pub related: Option<RelatedEntities>, pub related: Option<RelatedEntities>,
#[serde(skip_serializing_if = "Option::is_none")] #[serde(skip_serializing_if = "Option::is_none")]
pub timeline_excerpt: Option<Vec<TimelineEventSummary>>, pub timeline_excerpt: Option<TimelineExcerpt>,
} }
#[derive(Debug, Serialize)] #[derive(Debug, Serialize)]
@@ -52,6 +52,7 @@ pub struct EntitySummary {
pub created_at: String, pub created_at: String,
pub updated_at: String, pub updated_at: String,
pub url: Option<String>, pub url: Option<String>,
pub project_path: String,
pub status_name: Option<String>, pub status_name: Option<String>,
} }
@@ -80,6 +81,8 @@ pub struct OpenThread {
pub started_at: String, pub started_at: String,
pub note_count: usize, pub note_count: usize,
pub last_note_at: String, pub last_note_at: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub first_note_excerpt: Option<String>,
} }
#[derive(Debug, Serialize)] #[derive(Debug, Serialize)]
@@ -101,7 +104,16 @@ pub struct RelatedEntityInfo {
pub entity_type: String, pub entity_type: String,
pub iid: i64, pub iid: i64,
pub title: Option<String>, pub title: Option<String>,
pub state: Option<String>,
pub reference_type: String, pub reference_type: String,
pub direction: String,
}
#[derive(Debug, Serialize)]
pub struct TimelineExcerpt {
pub events: Vec<TimelineEventSummary>,
pub total_events: usize,
pub truncated: bool,
} }
#[derive(Debug, Serialize)] #[derive(Debug, Serialize)]
@@ -218,6 +230,7 @@ fn find_explain_issue(
created_at: ms_to_iso(r.created_at), created_at: ms_to_iso(r.created_at),
updated_at: ms_to_iso(r.updated_at), updated_at: ms_to_iso(r.updated_at),
url: r.web_url, url: r.web_url,
project_path: project_path.clone(),
status_name: r.status_name, status_name: r.status_name,
}; };
Ok((summary, local_id, project_path)) Ok((summary, local_id, project_path))
@@ -296,6 +309,7 @@ fn find_explain_mr(
created_at: ms_to_iso(r.created_at), created_at: ms_to_iso(r.created_at),
updated_at: ms_to_iso(r.updated_at), updated_at: ms_to_iso(r.updated_at),
url: r.web_url, url: r.web_url,
project_path: project_path.clone(),
status_name: None, status_name: None,
}; };
Ok((summary, local_id, project_path)) Ok((summary, local_id, project_path))
@@ -385,15 +399,17 @@ fn truncate_description(desc: Option<&str>, max_len: usize) -> String {
pub fn run_explain(conn: &Connection, params: &ExplainParams) -> Result<ExplainResult> { pub fn run_explain(conn: &Connection, params: &ExplainParams) -> Result<ExplainResult> {
let project_filter = params.project.as_deref(); let project_filter = params.project.as_deref();
let (entity_summary, entity_local_id, _project_path, description) = let (entity_summary, entity_local_id, _project_path, description, created_at_ms) =
if params.entity_type == "issues" { if params.entity_type == "issues" {
let (summary, local_id, path) = find_explain_issue(conn, params.iid, project_filter)?; let (summary, local_id, path) = find_explain_issue(conn, params.iid, project_filter)?;
let desc = get_issue_description(conn, local_id)?; let desc = get_issue_description(conn, local_id)?;
(summary, local_id, path, desc) let created_at_ms = get_issue_created_at(conn, local_id)?;
(summary, local_id, path, desc, created_at_ms)
} else { } else {
let (summary, local_id, path) = find_explain_mr(conn, params.iid, project_filter)?; let (summary, local_id, path) = find_explain_mr(conn, params.iid, project_filter)?;
let desc = get_mr_description(conn, local_id)?; let desc = get_mr_description(conn, local_id)?;
(summary, local_id, path, desc) let created_at_ms = get_mr_created_at(conn, local_id)?;
(summary, local_id, path, desc, created_at_ms)
}; };
let description_excerpt = if should_include(&params.sections, "description") { let description_excerpt = if should_include(&params.sections, "description") {
@@ -420,6 +436,7 @@ pub fn run_explain(conn: &Connection, params: &ExplainParams) -> Result<ExplainR
&params.entity_type, &params.entity_type,
entity_local_id, entity_local_id,
params.since, params.since,
created_at_ms,
)?) )?)
} else { } else {
None None
@@ -480,6 +497,24 @@ fn get_mr_description(conn: &Connection, mr_id: i64) -> Result<Option<String>> {
Ok(desc) Ok(desc)
} }
fn get_issue_created_at(conn: &Connection, issue_id: i64) -> Result<i64> {
let ts: i64 = conn.query_row(
"SELECT created_at FROM issues WHERE id = ?",
[issue_id],
|row| row.get(0),
)?;
Ok(ts)
}
fn get_mr_created_at(conn: &Connection, mr_id: i64) -> Result<i64> {
let ts: i64 = conn.query_row(
"SELECT created_at FROM merge_requests WHERE id = ?",
[mr_id],
|row| row.get(0),
)?;
Ok(ts)
}
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// Key-decisions heuristic (Task 2) // Key-decisions heuristic (Task 2)
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
@@ -664,6 +699,7 @@ fn build_activity_summary(
entity_type: &str, entity_type: &str,
entity_id: i64, entity_id: i64,
since: Option<i64>, since: Option<i64>,
created_at_ms: i64,
) -> Result<ActivitySummary> { ) -> Result<ActivitySummary> {
let id_col = id_column_for(entity_type); let id_col = id_column_for(entity_type);
@@ -702,11 +738,14 @@ fn build_activity_summary(
})?; })?;
let notes = notes_count as usize; let notes = notes_count as usize;
// Floor first_event at created_at — label events can predate entity creation
// due to bulk operations or API imports
let first_event = [state_min, label_min, note_min] let first_event = [state_min, label_min, note_min]
.iter() .iter()
.copied() .copied()
.flatten() .flatten()
.min(); .min()
.map(|ts| ts.max(created_at_ms));
let last_event = [state_max, label_max, note_max] let last_event = [state_max, label_max, note_max]
.iter() .iter()
.copied() .copied()
@@ -740,7 +779,10 @@ fn fetch_open_threads(
WHERE n2.discussion_id = d.id AND n2.is_system = 0) AS note_count, \ WHERE n2.discussion_id = d.id AND n2.is_system = 0) AS note_count, \
(SELECT n3.author_username FROM notes n3 \ (SELECT n3.author_username FROM notes n3 \
WHERE n3.discussion_id = d.id \ WHERE n3.discussion_id = d.id \
ORDER BY n3.created_at ASC LIMIT 1) AS started_by \ ORDER BY n3.created_at ASC LIMIT 1) AS started_by, \
(SELECT SUBSTR(n4.body, 1, 200) FROM notes n4 \
WHERE n4.discussion_id = d.id AND n4.is_system = 0 \
ORDER BY n4.created_at ASC LIMIT 1) AS first_note_body \
FROM discussions d \ FROM discussions d \
WHERE d.{id_col} = ?1 \ WHERE d.{id_col} = ?1 \
AND d.resolvable = 1 \ AND d.resolvable = 1 \
@@ -752,12 +794,14 @@ fn fetch_open_threads(
let threads = stmt let threads = stmt
.query_map([entity_id], |row| { .query_map([entity_id], |row| {
let count: i64 = row.get(3)?; let count: i64 = row.get(3)?;
let first_note_body: Option<String> = row.get(5)?;
Ok(OpenThread { Ok(OpenThread {
discussion_id: row.get(0)?, discussion_id: row.get(0)?,
started_at: ms_to_iso(row.get::<_, i64>(1)?), started_at: ms_to_iso(row.get::<_, i64>(1)?),
last_note_at: ms_to_iso(row.get::<_, i64>(2)?), last_note_at: ms_to_iso(row.get::<_, i64>(2)?),
note_count: count as usize, note_count: count as usize,
started_by: row.get(4)?, started_by: row.get(4)?,
first_note_excerpt: first_note_body,
}) })
})? })?
.collect::<std::result::Result<Vec<_>, _>>()?; .collect::<std::result::Result<Vec<_>, _>>()?;
@@ -813,15 +857,18 @@ fn fetch_related_entities(
// Outgoing references (excluding closes, shown above). // Outgoing references (excluding closes, shown above).
// Filter out unresolved refs (NULL target_entity_iid) to avoid rusqlite type errors. // Filter out unresolved refs (NULL target_entity_iid) to avoid rusqlite type errors.
// Excludes self-references (same type + same local ID).
let mut out_stmt = conn.prepare( let mut out_stmt = conn.prepare(
"SELECT er.target_entity_type, er.target_entity_iid, er.reference_type, \ "SELECT er.target_entity_type, er.target_entity_iid, er.reference_type, \
COALESCE(i.title, mr.title) as title \ COALESCE(i.title, mr.title) as title, \
COALESCE(i.state, mr.state) as state \
FROM entity_references er \ FROM entity_references er \
LEFT JOIN issues i ON er.target_entity_type = 'issue' AND i.id = er.target_entity_id \ LEFT JOIN issues i ON er.target_entity_type = 'issue' AND i.id = er.target_entity_id \
LEFT JOIN merge_requests mr ON er.target_entity_type = 'merge_request' AND mr.id = er.target_entity_id \ LEFT JOIN merge_requests mr ON er.target_entity_type = 'merge_request' AND mr.id = er.target_entity_id \
WHERE er.source_entity_type = ?1 AND er.source_entity_id = ?2 \ WHERE er.source_entity_type = ?1 AND er.source_entity_id = ?2 \
AND er.reference_type != 'closes' \ AND er.reference_type != 'closes' \
AND er.target_entity_iid IS NOT NULL \ AND er.target_entity_iid IS NOT NULL \
AND NOT (er.target_entity_type = ?1 AND er.target_entity_id = ?2) \
ORDER BY er.target_entity_type, er.target_entity_iid", ORDER BY er.target_entity_type, er.target_entity_iid",
)?; )?;
@@ -832,21 +879,26 @@ fn fetch_related_entities(
iid: row.get(1)?, iid: row.get(1)?,
reference_type: row.get(2)?, reference_type: row.get(2)?,
title: row.get(3)?, title: row.get(3)?,
state: row.get(4)?,
direction: "outgoing".to_string(),
}) })
})? })?
.collect::<std::result::Result<Vec<_>, _>>()?; .collect::<std::result::Result<Vec<_>, _>>()?;
// Incoming references (excluding closes). // Incoming references (excluding closes).
// COALESCE(i.iid, mr.iid) can be NULL if the source entity was deleted; filter those out. // COALESCE(i.iid, mr.iid) can be NULL if the source entity was deleted; filter those out.
// Excludes self-references (same type + same local ID).
let mut in_stmt = conn.prepare( let mut in_stmt = conn.prepare(
"SELECT er.source_entity_type, COALESCE(i.iid, mr.iid) as iid, er.reference_type, \ "SELECT er.source_entity_type, COALESCE(i.iid, mr.iid) as iid, er.reference_type, \
COALESCE(i.title, mr.title) as title \ COALESCE(i.title, mr.title) as title, \
COALESCE(i.state, mr.state) as state \
FROM entity_references er \ FROM entity_references er \
LEFT JOIN issues i ON er.source_entity_type = 'issue' AND i.id = er.source_entity_id \ LEFT JOIN issues i ON er.source_entity_type = 'issue' AND i.id = er.source_entity_id \
LEFT JOIN merge_requests mr ON er.source_entity_type = 'merge_request' AND mr.id = er.source_entity_id \ LEFT JOIN merge_requests mr ON er.source_entity_type = 'merge_request' AND mr.id = er.source_entity_id \
WHERE er.target_entity_type = ?1 AND er.target_entity_id = ?2 \ WHERE er.target_entity_type = ?1 AND er.target_entity_id = ?2 \
AND er.reference_type != 'closes' \ AND er.reference_type != 'closes' \
AND COALESCE(i.iid, mr.iid) IS NOT NULL \ AND COALESCE(i.iid, mr.iid) IS NOT NULL \
AND NOT (er.source_entity_type = ?1 AND er.source_entity_id = ?2) \
ORDER BY er.source_entity_type, COALESCE(i.iid, mr.iid)", ORDER BY er.source_entity_type, COALESCE(i.iid, mr.iid)",
)?; )?;
@@ -857,6 +909,8 @@ fn fetch_related_entities(
iid: row.get(1)?, iid: row.get(1)?,
reference_type: row.get(2)?, reference_type: row.get(2)?,
title: row.get(3)?, title: row.get(3)?,
state: row.get(4)?,
direction: "incoming".to_string(),
}) })
})? })?
.collect::<std::result::Result<Vec<_>, _>>()?; .collect::<std::result::Result<Vec<_>, _>>()?;
@@ -883,11 +937,17 @@ fn build_timeline_excerpt_from_pipeline(
conn: &Connection, conn: &Connection,
entity: &EntitySummary, entity: &EntitySummary,
params: &ExplainParams, params: &ExplainParams,
) -> Option<Vec<TimelineEventSummary>> { ) -> Option<TimelineExcerpt> {
let timeline_entity_type = match entity.entity_type.as_str() { let timeline_entity_type = match entity.entity_type.as_str() {
"issue" => "issue", "issue" => "issue",
"merge_request" => "merge_request", "merge_request" => "merge_request",
_ => return Some(vec![]), _ => {
return Some(TimelineExcerpt {
events: vec![],
total_events: 0,
truncated: false,
});
}
}; };
let project_id = params let project_id = params
@@ -900,29 +960,43 @@ fn build_timeline_excerpt_from_pipeline(
Ok(result) => result, Ok(result) => result,
Err(e) => { Err(e) => {
tracing::warn!("explain: timeline seed failed: {e}"); tracing::warn!("explain: timeline seed failed: {e}");
return Some(vec![]); return Some(TimelineExcerpt {
events: vec![],
total_events: 0,
truncated: false,
});
} }
}; };
let (mut events, _total) = match collect_events( // Request a generous limit from the pipeline — we'll take the tail (most recent)
let pipeline_limit = 500;
let (events, _total) = match collect_events(
conn, conn,
&seed_result.seed_entities, &seed_result.seed_entities,
&[], &[],
&seed_result.evidence_notes, &seed_result.evidence_notes,
&seed_result.matched_discussions, &seed_result.matched_discussions,
params.since, params.since,
MAX_TIMELINE_EVENTS, pipeline_limit,
) { ) {
Ok(result) => result, Ok(result) => result,
Err(e) => { Err(e) => {
tracing::warn!("explain: timeline collect failed: {e}"); tracing::warn!("explain: timeline collect failed: {e}");
return Some(vec![]); return Some(TimelineExcerpt {
events: vec![],
total_events: 0,
truncated: false,
});
} }
}; };
events.truncate(MAX_TIMELINE_EVENTS); let total_events = events.len();
let truncated = total_events > MAX_TIMELINE_EVENTS;
let summaries = events // Keep the MOST RECENT events — events are sorted ASC by collect_events,
// so we skip from the front to keep the tail
let start = total_events.saturating_sub(MAX_TIMELINE_EVENTS);
let summaries = events[start..]
.iter() .iter()
.map(|e| TimelineEventSummary { .map(|e| TimelineEventSummary {
timestamp: ms_to_iso(e.timestamp), timestamp: ms_to_iso(e.timestamp),
@@ -932,7 +1006,11 @@ fn build_timeline_excerpt_from_pipeline(
}) })
.collect(); .collect();
Some(summaries) Some(TimelineExcerpt {
events: summaries,
total_events,
truncated,
})
} }
fn timeline_event_type_label(event_type: &crate::timeline::TimelineEventType) -> String { fn timeline_event_type_label(event_type: &crate::timeline::TimelineEventType) -> String {
@@ -1065,8 +1143,11 @@ pub fn print_explain(result: &ExplainResult) {
Theme::bold().render(&result.entity.title) Theme::bold().render(&result.entity.title)
); );
println!( println!(
" State: {} Author: {} Created: {}", " Project: {} State: {} Author: {} Created: {}",
result.entity.state, result.entity.author, result.entity.created_at result.entity.project_path,
result.entity.state,
result.entity.author,
result.entity.created_at
); );
if !result.entity.assignees.is_empty() { if !result.entity.assignees.is_empty() {
println!(" Assignees: {}", result.entity.assignees.join(", ")); println!(" Assignees: {}", result.entity.assignees.join(", "));
@@ -1141,6 +1222,18 @@ pub fn print_explain(result: &ExplainResult) {
t.note_count, t.note_count,
t.last_note_at t.last_note_at
); );
if let Some(ref excerpt) = t.first_note_excerpt {
let preview = if excerpt.len() > 100 {
let b = excerpt.floor_char_boundary(100);
format!("{}...", &excerpt[..b])
} else {
excerpt.clone()
};
// Show first line only in human output
if let Some(line) = preview.lines().next() {
println!(" {}", Theme::muted().render(line));
}
}
} }
} }
@@ -1159,8 +1252,17 @@ pub fn print_explain(result: &ExplainResult) {
); );
} }
for ri in &related.related_issues { for ri in &related.related_issues {
let state_str = ri
.state
.as_deref()
.map_or(String::new(), |s| format!(" [{s}]"));
let arrow = if ri.direction == "incoming" {
"<-"
} else {
"->"
};
println!( println!(
" {} {} #{}{} ({})", " {} {arrow} {} #{}{}{state_str} ({})",
Icons::info(), Icons::info(),
ri.entity_type, ri.entity_type,
ri.iid, ri.iid,
@@ -1171,16 +1273,25 @@ pub fn print_explain(result: &ExplainResult) {
} }
// Timeline excerpt // Timeline excerpt
if let Some(ref events) = result.timeline_excerpt if let Some(ref excerpt) = result.timeline_excerpt
&& !events.is_empty() && !excerpt.events.is_empty()
{ {
let truncation_note = if excerpt.truncated {
format!(
" (showing {} of {})",
excerpt.events.len(),
excerpt.total_events
)
} else {
String::new()
};
println!( println!(
"\n{} {} ({} events)", "\n{} {}{}",
Icons::info(), Icons::info(),
Theme::bold().render("Timeline"), Theme::bold().render("Timeline"),
events.len() truncation_note
); );
for e in events { for e in &excerpt.events {
let actor_str = e.actor.as_deref().unwrap_or(""); let actor_str = e.actor.as_deref().unwrap_or("");
println!( println!(
" {} {} {} {}", " {} {} {} {}",
@@ -1869,7 +1980,8 @@ mod tests {
); );
} }
let activity = build_activity_summary(&conn, "issues", issue_id, None).unwrap(); let activity =
build_activity_summary(&conn, "issues", issue_id, None, 1_704_067_200_000).unwrap();
assert_eq!(activity.state_changes, 2); assert_eq!(activity.state_changes, 2);
assert_eq!(activity.label_changes, 1); assert_eq!(activity.label_changes, 1);
@@ -1904,7 +2016,14 @@ mod tests {
5_000_000, 5_000_000,
); );
let activity = build_activity_summary(&conn, "issues", issue_id, Some(3_000_000)).unwrap(); let activity = build_activity_summary(
&conn,
"issues",
issue_id,
Some(3_000_000),
1_704_067_200_000,
)
.unwrap();
assert_eq!(activity.state_changes, 1, "Only the recent event"); assert_eq!(activity.state_changes, 1, "Only the recent event");
} }
@@ -1960,7 +2079,8 @@ mod tests {
let (conn, project_id) = setup_explain_db(); let (conn, project_id) = setup_explain_db();
let issue_id = insert_test_issue(&conn, project_id, 64, None); let issue_id = insert_test_issue(&conn, project_id, 64, None);
let activity = build_activity_summary(&conn, "issues", issue_id, None).unwrap(); let activity =
build_activity_summary(&conn, "issues", issue_id, None, 1_704_067_200_000).unwrap();
assert_eq!(activity.state_changes, 0); assert_eq!(activity.state_changes, 0);
assert_eq!(activity.label_changes, 0); assert_eq!(activity.label_changes, 0);
assert_eq!(activity.notes, 0); assert_eq!(activity.notes, 0);