29 Commits

Author SHA1 Message Date
teernisse
6b18df11b1 chore(beads): update issue tracking state
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 13:18:20 -04:00
teernisse
b456a879bb fix(timeline): use total_notes for discussion summary instead of post-filter count
The discussion summary format string used `note_count` (derived from
`notes.len()` after truncation/filtering) rather than `total_notes`
which captures the full count before any processing. This made the
"Discussion (N notes)" label undercount when notes were filtered.

Removes the now-unused `note_count` binding.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 13:18:16 -04:00
teernisse
09c467a2d8 fix(cli): replace newlines with spaces in note body and preview text
Three sites were rendering multi-line text in single-line contexts:

1. `list notes` passed note bodies through `to_owned` which preserved
   embedded newlines, breaking table row alignment. Now uses
   `.replace('\n', " ")` to collapse to a single line.

2. `me` activity/inbox body previews were passed directly to
   `render::truncate()` with newlines intact, causing broken output
   when previews contained line breaks. Now normalizes to a `clean`
   variable before truncation.

Also corrects the `title_width` doc comment: flex_width is
terminal-aware with a floor, not clamped to [20, 80].

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 13:18:09 -04:00
teernisse
6c6389aaf6 chore(beads): update issue tracking state 2026-03-13 11:14:12 -04:00
teernisse
e4cf4e872d chore: suppress dead_code warning on truncate_to_chars, fix test formatting
- types.rs: add #[allow(dead_code)] to truncate_to_chars now that
  data-layer truncation was removed in favor of flex-width rendering
- timeline_seed_tests.rs: reformat multi-line assert_eq for clarity
- ollama_mgmt.rs: collapse method chain formatting
2026-03-13 11:13:44 -04:00
teernisse
20753608e8 fix(cli): flex-col min-width clamping and formatting consistency
- render.rs: clamp flex column width to min(min_flex, natural) instead
  of a hardcoded 20, preventing layout overflow when natural width is
  small; rewrites flex_width test to be terminal-independent
- list/issues.rs: adopt .flex_col() builder on table construction
- list/mrs.rs, list/notes.rs: consolidate multi-line StyledCell::styled
  calls to single-line format
- explain.rs: adopt flex_width() for related-issue title truncation,
  consolidate multi-line formatting
2026-03-13 11:13:40 -04:00
teernisse
cebafe0213 fix(logging): reduce file log level to info and cut retention to 7 days
File logging was set to DEBUG level unconditionally, causing log files to
grow to 25-32GB each (200GB total across 8 files). The primary volume
came from per-HTTP-request, per-entity, and per-chunk debug!() calls in
the ingestion orchestrator, GitLab client, and embedding pipeline — all
of which wrote JSON events to daily-rotated log files regardless of CLI
verbosity flags.

Two changes:
- File filter: lore=debug,warn -> lore=info (eliminates ~90% of volume)
- Default retention: 30 days -> 7 days (caps total disk usage)

The info level still captures operational events (sync start/complete,
rate limits, errors, embedding progress) while per-request instrumentation
stays silent unless explicitly enabled via -vv/-vvv on stderr.
2026-03-13 11:13:33 -04:00
teernisse
6d85474052 refactor(cli): adopt flex-width rendering, remove data-layer truncation
Replace hardcoded truncation widths across CLI commands with
render::flex_width() calls that adapt to terminal size. Remove
server-side truncate_to_chars() in timeline collect/seed stages so
full text is preserved through the pipeline — truncation now happens
only at the presentation layer where terminal width is known.

Affected commands: explain, file-history, list (issues/mrs/notes),
me, timeline, who (active/expert/workload).
2026-03-13 11:03:04 -04:00
teernisse
ef8a316372 feat(render): add flex-column support to TableBuilder
Add flex_width() helper and flex_col() builder method so a designated
column can absorb remaining terminal width after fixed columns are sized.
The flex column's width is clamped between 20 chars and its natural
(content-driven) width, and max_width constraints are skipped for it.
2026-03-13 11:01:17 -04:00
teernisse
3fed5a3048 fix(ollama): resolve 3 bugs preventing cron-triggered Ollama auto-start
1. PATH blindness in cron: find_ollama_binary() used `which ollama` which
   fails in cron's minimal PATH (/usr/bin:/bin). Added well-known install
   locations (/opt/homebrew/bin, /usr/local/bin, /usr/bin, /snap/bin) as
   fallback. ensure_ollama() now spawns using the discovered absolute path
   instead of bare "ollama".

2. IPv6-first DNS resolution: is_ollama_reachable() only tried the first
   address from to_socket_addrs(), which on macOS is ::1 (IPv6). Ollama
   only listens on 127.0.0.1 (IPv4), so the check always failed.
   Now iterates all resolved addresses — "Connection refused" on ::1 is
   instant so there's no performance cost.

3. Excessive blocking on cold start: ensure_ollama() blocked for 30s
   waiting for readiness, then reported failure even though ollama serve
   was successfully spawned and still booting. Reduced wait to 5s (catches
   hot restarts), and reports started=true on timeout since the ~90s
   ingestion phase gives Ollama plenty of time to cold-start before the
   embed stage needs it.
2026-03-13 11:01:12 -04:00
teernisse
1bbdcb70ef fix(explain): align human output with render module conventions
The explain command's human-mode output was hand-rolled with raw
println! formatting that didn't use any of the shared render.rs
infrastructure. This made it visually inconsistent with every other
command (me, who, search, timeline).

Changes to print_explain():
- Section headers now use render::section_divider() with counts,
  producing the same box-drawing divider lines as the me command
- Entity refs use Theme::issue_ref()/mr_ref() color styling
- Entity state uses Theme::state_opened/closed/merged() styling
- Authors/usernames use Theme::username() with @ prefix
- Project paths use Theme::muted()
- Timestamps use format_relative_time() for recency fields (created,
  first/last event, last note) and format_date() for point-in-time
  fields (key decisions, timeline events), matching the conventions
  in me, who, and timeline respectively
- Note excerpts use render::truncate() instead of manual byte slicing
- Related entity titles are truncated via render::truncate()
- Indentation aligned to 4-space content under section dividers

Robot JSON output is unchanged -- it continues to use ms_to_iso() for
all timestamp fields, consistent with the rest of the robot API.
2026-03-13 09:59:19 -04:00
teernisse
796b6b7289 fix(core): reduce ollama startup blocking and handle cold starts gracefully
The ensure_ollama() function previously blocked for up to 10 seconds
waiting for Ollama to become reachable after spawning. Cold starts can
take 30-60s, so this often timed out and reported a misleading error.

Now waits only 5 seconds (enough for hot restarts), and if Ollama is
still starting, reports started=true with no error instead of treating
it as a failure. The embed stage runs 60-90s later (after ingestion),
by which time Ollama is ready. The handler log message is updated to
distinguish hot restarts from cold starts still in progress.
2026-03-13 09:59:08 -04:00
teernisse
347ea91bea release: v0.9.5 2026-03-13 08:52:08 -04:00
teernisse
a943358f67 chore(agents): update CEO agent heartbeat log
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 17:07:28 -04:00
teernisse
fe7d210988 feat(embedding): strip GitLab boilerplate from titles before embedding
GitLab auto-generates MR titles like "Draft: Resolve \"Issue Title\""
when creating MRs from issues. This 4-token boilerplate prefix dominated
the embedding vectors, causing unrelated MRs with the same title structure
to appear as highly similar in "lore related" results (0.667 similarity
vs 0.674 for the actual parent issue — a difference of only 0.007).

Add normalize_title_for_embedding() which deterministically strips:
- "Draft: " prefix (case-insensitive)
- "WIP: " prefix (case-insensitive)
- "Resolve \"...\"" wrapper (extracts inner title)
- Combinations: "Draft: Resolve \"...\""

The normalization is applied in all four document extractors (issues, MRs,
discussions, notes) to the content_text field only. DocumentData.title
preserves the original title for human-readable display in CLI output.

Since content_text changes, content_hash will differ from stored values,
triggering automatic re-embedding on the next "lore embed" run.

Uses str::get() for all byte-offset slicing to prevent panics on titles
containing emoji or other multi-byte UTF-8 characters.

15 new tests covering: all boilerplate patterns, case insensitivity,
edge cases (empty inner text, no-op for normal titles), UTF-8 safety,
and end-to-end document extraction with boilerplate titles.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 17:07:23 -04:00
teernisse
8ab65a3401 fix(search): broaden whitespace collapse to all Unicode whitespace
Change collapse_whitespace() from is_ascii_whitespace() to is_whitespace()
so non-breaking spaces, em-spaces, and other Unicode whitespace characters
in search snippets are also collapsed into single spaces. Additionally
fix serde_json::to_value() call site to handle serialization errors
gracefully instead of unwrapping.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 17:07:10 -04:00
teernisse
16bd33e8c0 feat(core): add ollama lifecycle management for cron sync
Add src/core/ollama_mgmt.rs module that handles Ollama detection, startup,
and health checking. This enables cron-based sync to automatically start
Ollama when it's installed but not running, ensuring embeddings are always
available during unattended sync runs.

Integration points:
- sync handler (--lock mode): calls ensure_ollama() before embedding phase
- cron status: displays Ollama health (installed/running/not-installed)
- robot JSON: includes OllamaStatusBrief in cron status response

The module handles local vs remote Ollama URLs, IPv6, process detection
via lsof, and graceful startup with configurable wait timeouts.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 17:07:05 -04:00
teernisse
75469af514 chore(build): share target directory across agent worktrees
Add .cargo/config.toml to force all builds (including worktrees created
by Claude Code agents) to share a single target/ directory. Without this,
each worktree creates its own ~3GB target/ directory which fills the disk
when multiple agents are working in parallel.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 17:06:57 -04:00
teernisse
fa7c44d88c fix(search): collapse newlines in snippets to prevent unindented metadata (GIT-5)
Document content_text includes multi-line metadata (Project:, URL:, Labels:,
State:) separated by newlines. FTS5 snippet() preserves these newlines, causing
subsequent lines to render at column 0 with no indent. collapse_newlines()
flattens all whitespace runs into single spaces before truncation and rendering.

Includes 3 unit tests.
2026-03-12 10:25:39 -04:00
teernisse
d11ea3030c chore(beads): update issue tracking data 2026-03-12 10:08:33 -04:00
teernisse
a57bff0646 docs(specs): add discussion analysis spec for LLM-powered discourse enrichment
SPEC_discussion_analysis.md defines a pre-computed enrichment pipeline that
replaces the current key_decisions heuristic in explain with actual
LLM-extracted discourse analysis (decisions, questions, consensus).

Key design choices:
- Dual LLM backend: Claude Haiku via AWS Bedrock (primary) or Anthropic API
- Pre-computed batch enrichment (lore enrich), never runtime LLM calls
- Staleness detection via notes_hash to skip unchanged threads
- New discussion_analysis SQLite table with structured JSON results
- Configurable via config.json enrichment section

Status: DRAFT — open questions on Bedrock model ID, auth mechanism, rate
limits, cost ceiling, and confidence thresholds.
2026-03-12 10:08:22 -04:00
teernisse
e46a2fe590 test(core): add lookup-by-gitlab_project_id test for projects table
Validates that the projects table schema uses gitlab_project_id (not
gitlab_id) and that queries filtering by this column return the correct
project. Uses the test helper convention where insert_project sets
gitlab_project_id = id * 100.
2026-03-12 10:08:22 -04:00
teernisse
4ab04a0a1c test(me): add integration tests for gitlab_base_url in robot JSON envelope
Guards against regression in the wiring chain run_me -> print_me_json ->
MeJsonEnvelope where the gitlab_base_url meta field could silently
disappear.

- me_envelope_includes_gitlab_base_url_in_meta: verifies full envelope
  serialization preserves the base URL in meta
- activity_event_carries_url_construction_fields: verifies activity events
  contain entity_type + entity_iid + project fields, then demonstrates
  URL construction by combining with meta.gitlab_base_url
2026-03-12 10:08:22 -04:00
teernisse
9c909df6b2 feat(me): add 30-day mention age cutoff to filter stale @-mentions
Previously, query_mentioned_in returned mentions from any time in the
entity's history as long as the entity was still open (or recently closed).
This caused noise: a mention from 6 months ago on a still-open issue would
appear in the dashboard indefinitely.

Now the SQL filters notes by created_at > mention_cutoff_ms, defaulting to
30 days. The recency_cutoff (7 days) still governs closed/merged entity
visibility — this new cutoff governs mention note age on open entities.

Signature change: query_mentioned_in gains a mention_cutoff_ms parameter.
All existing test call sites updated. Two new tests verify the boundary:
- mentioned_in_excludes_old_mention_on_open_issue (45-day mention filtered)
- mentioned_in_includes_recent_mention_on_open_issue (5-day mention kept)
2026-03-12 10:08:22 -04:00
teernisse
7e5ffe35d3 feat(explain): enrich output with project path, thread excerpts, entity state, and timeline metadata
Multiple improvements to the explain command's data richness:

- Add project_path to EntitySummary so consumers can construct URLs from
  project + entity_type + iid without extra lookups
- Include first_note_excerpt (first 200 chars) in open threads so agents
  and humans get thread context without a separate query
- Add state and direction fields to RelatedIssue — consumers now see
  whether referenced entities are open/closed/merged and whether the
  reference is incoming or outgoing
- Filter out self-references in both outgoing and incoming related entity
  queries (entity referencing itself via cross-reference extraction)
- Wrap timeline excerpt in TimelineExcerpt struct with total_events and
  truncated fields — consumers know when events were omitted
- Keep most recent events (tail) instead of oldest (head) when truncating
  timeline — recent activity is more actionable
- Floor activity summary first_event at entity created_at — label events
  from bulk operations can predate entity creation
- Human output: show project path in header, thread excerpt preview,
  state badges on related entities, directional arrows, truncation counts
2026-03-12 10:08:22 -04:00
teernisse
da576cb276 chore(agents): add CEO daily notes and rewrite founding-engineer/plan-reviewer configs
CEO memory notes for 2026-03-11 and 2026-03-12 capture the full timeline of
GIT-2 (founding engineer evaluation), GIT-3 (calibration task), and GIT-6
(plan reviewer hire).

Founding Engineer: AGENTS.md rewritten from 25-line boilerplate to 3-layer
progressive disclosure model (AGENTS.md core -> DOMAIN.md reference ->
SOUL.md persona). Adds HEARTBEAT.md checklist, TOOLS.md placeholder. Key
changes: memory system reference, async runtime warning, schema gotchas,
UTF-8 boundary safety, search import privacy.

Plan Reviewer: new agent created with AGENTS.md (review workflow, severity
levels, codebase context), HEARTBEAT.md, SOUL.md. Reviews implementation
plans in Paperclip issues before code is written.
2026-03-12 10:08:22 -04:00
teernisse
36b361a50a fix(search): tag-aware snippet truncation prevents cutting inside <mark> pairs (GIT-5)
The old truncation counted <mark></mark> HTML tags (~13 chars per keyword)
as visible characters, causing over-aggressive truncation. When a cut
landed inside a tag pair, render_snippet would render highlighted text
as muted gray instead of bold yellow.

New truncate_snippet() walks through markup counting only visible
characters, respects tag boundaries, and always closes an open <mark>
before appending ellipsis. Includes 6 unit tests.
2026-03-12 09:28:55 -04:00
teernisse
44431667e8 feat(search): overhaul search output formatting (GIT-5)
Phase 1: Add source_entity_iid to search results via CASE subquery on
hydrate_results() for all 4 source types (issue, MR, discussion, note).
Phase 2: Fix visual alignment - compute indent from prefix visible width.
Phase 3: Show compact relative time on title line.
Phase 4: Add drill-down hint footer (lore issues <iid>).
Phase 5: Move labels to --explain mode, limit snippets to 2 terminal lines.
Phase 6: Use section_divider() for results header.

Also: promote strip_ansi/visible_width to public render utils, update
robot mode --fields minimal search preset with source_entity_iid.
2026-03-12 09:15:34 -04:00
teernisse
60075cd400 release: v0.9.4 2026-03-11 10:37:38 -04:00
52 changed files with 2928 additions and 295 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1 +1 @@
bd-9lbr bd-1n5q

5
.cargo/config.toml Normal file
View File

@@ -0,0 +1,5 @@
# Force all builds (including worktrees) to share one target directory.
# This prevents each Claude Code agent worktree from creating its own
# ~3GB target/ directory, which was filling the disk.
[build]
target-dir = "/Users/tayloreernisse/projects/gitlore/target"

2
Cargo.lock generated
View File

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

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "lore" name = "lore"
version = "0.9.3" version = "0.9.5"
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

@@ -0,0 +1,44 @@
# 2026-03-11 -- CEO Daily Notes
## Timeline
- **10:32** Heartbeat timer wake. No PAPERCLIP_TASK_ID, no mention context.
- **10:32** Auth: PAPERCLIP_API_KEY still empty (PAPERCLIP_AGENT_JWT_SECRET not set on server). Board-level fallback works.
- **10:32** Inbox: 0 assignments (todo/in_progress/blocked). Dashboard: 0 open, 0 in_progress, 0 blocked, 1 done.
- **10:32** Clean exit -- nothing to work on.
- **10:57** Wake: GIT-2 assigned (issue_assigned). Evaluated FE agent: zero commits, generic instructions.
- **11:01** Wake: GIT-2 reopened. Board chose Option B (rewrite instructions).
- **11:03** Rewrote FE AGENTS.md (25 -> 200+ lines), created HEARTBEAT.md, SOUL.md, TOOLS.md, memory dir.
- **11:04** GIT-2 closed. FE agent ready for calibration task.
- **11:07** Wake: GIT-2 reopened (issue_reopened_via_comment). Board asked to evaluate instructions against best practices.
- **11:08** Self-evaluation: AGENTS.md was too verbose (230 lines), duplicated CLAUDE.md, no progressive disclosure. Rewrote to 50-line core + 120-line DOMAIN.md reference. 3-layer progressive disclosure model.
- **11:13** Wake: GIT-2 reopened. Board asked about testing/validating context loading. Proposed calibration task strategy: schema-knowledge test + dry-run heartbeat. Awaiting board go-ahead.
- **11:28** Wake: Board approved calibration. Created GIT-3 (calibration: project lookup test) assigned to FE. Subtask of GIT-2.
- **11:33** Wake: GIT-2 reopened. Board asked to evaluate FE calibration output. Reviewed code + session logs. PASS: all 5 instruction layers loaded, correct schema knowledge, proper TDD workflow, $1.12 calibration cost. FE ready for production work.
- **12:34** Heartbeat timer wake. No assignments, no mentions. Dashboard: 1 open (GIT-4), 0 in_progress, 0 blocked, 3 done. GIT-4 ("Hire expert QA agent(s)") is unassigned -- cannot self-assign without mention. Clean exit.
- **13:36** Heartbeat timer wake. No assignments, no mentions. Dashboard: 1 open, 0 in_progress, 0 blocked, 3 done. Spend: $19.22. Clean exit.
- **14:37** Heartbeat timer wake. No assignments, no mentions. Dashboard: 1 open (GIT-4), 0 in_progress, 0 blocked, 3 done. Spend: $20.46. Clean exit.
- **15:39** Heartbeat timer wake. No assignments, no mentions. Dashboard: 1 open (GIT-4), 0 in_progress, 0 blocked, 3 done. Spend: $22.61. Clean exit.
- **16:40** Heartbeat timer wake. No assignments, no mentions. Dashboard: 1 open (GIT-4), 0 in_progress, 0 blocked, 3 done. Spend: $23.99. Clean exit.
- **18:21** Heartbeat timer wake. No assignments, no mentions. Dashboard: 1 open (GIT-4), 0 in_progress, 0 blocked, 3 done. Spend: $25.30. Clean exit.
- **21:40** Heartbeat timer wake. No assignments, no mentions. Dashboard: 1 open (GIT-4), 0 in_progress, 0 blocked, 3 done. Spend: $26.41. Clean exit.
## Observations
- JWT auth now working (/agents/me returns 200).
- Company: 1 active agent (CEO), 3 done tasks, 1 open (GIT-4 unassigned).
- Monthly spend: $17.74, no budget cap set.
- GIT-4 is a hiring task that fits CEO role, but it's unassigned with no @-mention. Board needs to assign it to me or mention me on it.
## Today's Plan
1. ~~Await board assignments or issue creation.~~ GIT-2 arrived.
2. ~~Evaluate Founding Engineer credentials (GIT-2).~~ Done.
3. ~~Rewrite FE instructions (Option B per board).~~ Done.
4. Await calibration task assignment for FE, or next board task.
## GIT-2: Founding Engineer Evaluation (DONE)
- **Finding:** Zero commits, $0.32 spend, 25-line boilerplate AGENTS.md. Not production-ready.
- **Recommendation:** Replace or rewrite instructions. Board decides.
- **Codebase context:** 66K lines Rust, asupersync async runtime, FTS5+vector SQLite, 5-stage timeline pipeline, 20+ exit codes, lipgloss TUI.

View File

@@ -0,0 +1,33 @@
# 2026-03-12 -- CEO Daily Notes
## Timeline
- **02:59** Heartbeat timer wake. No PAPERCLIP_TASK_ID, no mention context.
- **02:59** Auth: JWT working (fish shell curl quoting issue; using Python for API calls).
- **02:59** Inbox: 0 assignments (todo/in_progress/blocked). Dashboard: 1 open, 0 in_progress, 0 blocked, 3 done.
- **02:59** Spend: $27.50. Clean exit -- nothing to work on.
- **08:41** Heartbeat: assignment wake for GIT-6 (Create Plan Reviewer agent).
- **08:42** Checked out GIT-6. Reviewed existing agent configs and adapter docs.
- **08:44** Created `agents/plan-reviewer/` with AGENTS.md, HEARTBEAT.md, SOUL.md.
- **08:45** Submitted hire request: PlanReviewer (codex_local / chatgpt-5.4, role=qa, reports to CEO).
- **08:46** Approval 75c1bef4 pending. GIT-6 set to blocked awaiting board approval.
- **09:02** Heartbeat: approval 75c1bef4 approved. PlanReviewer active (idle). Set instructions path. GIT-6 closed.
- **10:03** Heartbeat timer wake. 0 assignments. Spend: $24.39. Clean exit.
- **11:05** Heartbeat timer wake. 0 assignments. Spend: $25.04. Clean exit.
- **12:06** Heartbeat timer wake. 0 assignments. Dashboard: 2 open, 0 in_progress, 4 done. 2 active agents. Spend: $25.80. Clean exit.
- **13:08** Heartbeat timer wake. 0 assignments. Dashboard: 2 open, 0 in_progress, 4 done. 2 active agents. Spend: $50.89. Clean exit.
- **14:15** Heartbeat timer wake. 0 assignments. Dashboard: 2 open, 0 in_progress, 4 done. 2 active agents. Spend: $52.30. Clean exit.
- **15:17** Heartbeat timer wake. 0 assignments. Dashboard: 2 open, 0 in_progress, 4 done. 2 active agents. Spend: $54.36. Clean exit.
## Observations
- GIT-4 (hire QA agents) still open and unassigned. Board needs to assign it or mention me.
- Fish shell variable expansion breaks curl Authorization header. Python urllib works fine. Consider noting this in TOOLS.md.
- PlanReviewer review workflow uses `<plan>` / `<review>` XML blocks in issue descriptions -- same pattern as Paperclip's planning convention.
## Today's Plan
1. ~~Await board assignments or mentions.~~
2. ~~GIT-6: Agent files created, hire submitted. Blocked on board approval.~~
3. ~~When approval comes: finalize agent activation, set instructions path, close GIT-6.~~
4. ~~Await next board assignments or mentions.~~ (continuing)

View File

@@ -1,24 +1,53 @@
You are the Founding Engineer. You are the Founding Engineer.
Your home directory is $AGENT_HOME. Everything personal to you -- life, memory, knowledge -- lives there. Your home directory is $AGENT_HOME. Everything personal to you -- life, memory, knowledge -- lives there. Other agents may have their own folders and you may update them when necessary.
Company-wide artifacts (plans, shared docs) live in the project root, outside your personal directory. Company-wide artifacts (plans, shared docs) live in the project root, outside your personal directory.
## Project Context ## Memory and Planning
This is a Rust CLI tool called `lore` for local GitLab data management with SQLite. The codebase uses Cargo, pedantic clippy lints, and forbids unsafe code. See the project CLAUDE.md for full toolchain and workflow details. You MUST use the `para-memory-files` skill for all memory operations: storing facts, writing daily notes, creating entities, running weekly synthesis, recalling past context, and managing plans. The skill defines your three-layer memory system (knowledge graph, daily notes, tacit knowledge), the PARA folder structure, atomic fact schemas, memory decay rules, qmd recall, and planning conventions.
## Your Role Invoke it whenever you need to remember, retrieve, or organize anything.
You are the primary individual contributor. You write code, fix bugs, add features, and ship. You report to the CEO.
## Safety Considerations ## Safety Considerations
- Never exfiltrate secrets or private data. - Never exfiltrate secrets or private data.
- Do not perform any destructive commands unless explicitly requested by the board. - Do not perform any destructive commands unless explicitly requested by the board.
- Always run `cargo check`, `cargo clippy`, and `cargo fmt --check` after code changes. - NEVER run `lore` CLI to fetch output -- the GitLab data is sensitive. Read source code instead.
## References ## References
- `$AGENT_HOME/HEARTBEAT.md` -- execution checklist. Run every heartbeat. Read these before every heartbeat:
- Project `CLAUDE.md` -- toolchain, workflow, and project conventions.
- `$AGENT_HOME/HEARTBEAT.md` -- execution checklist
- `$AGENT_HOME/SOUL.md` -- persona and engineering posture
- Project `CLAUDE.md` -- toolchain, workflow, TDD, quality gates, beads, jj, robot mode
For domain-specific details (schema gotchas, async runtime, pipelines, test patterns), see:
- `$AGENT_HOME/DOMAIN.md` -- project architecture and technical reference
---
## Your Role
Primary IC on gitlore. You write code, fix bugs, add features, and ship. You report to the CEO.
Domain: **Rust CLI** -- 66K-line SQLite-backed GitLab data tool. Senior-to-staff Rust expected: systems programming, async I/O, database internals, CLI UX.
---
## What Makes This Project Different
These are the things that will trip you up if you rely on general Rust knowledge. Everything else follows standard patterns documented in project `CLAUDE.md`.
**Async runtime is NOT tokio.** Production code uses `asupersync` 0.2. tokio is dev-only (wiremock tests). Entry: `RuntimeBuilder::new().build()?.block_on(async { ... })`.
**Robot mode on every command.** `--robot`/`-J` -> `{"ok":true,"data":{...},"meta":{"elapsed_ms":N}}`. Errors to stderr. New commands MUST support this from day one.
**SQLite schema has sharp edges.** `projects` uses `gitlab_project_id` (not `gitlab_id`). `LIMIT` without `ORDER BY` is a bug. Resource event tables have CHECK constraints. See `$AGENT_HOME/DOMAIN.md` for the full list.
**UTF-8 boundary safety.** The embedding pipeline slices strings by byte offset. ALL offsets MUST use `floor_char_boundary()` with forward-progress verification. Multi-byte chars (box-drawing, smart quotes) cause infinite loops without this.
**Search imports are private.** Use `crate::search::{FtsQueryMode, to_fts_query}`, not `crate::search::fts::{...}`.

View File

@@ -0,0 +1,113 @@
# DOMAIN.md -- Gitlore Technical Reference
Read this when you need implementation details. AGENTS.md has the summary; this has the depth.
## Architecture Map
```
src/
main.rs # Entry: RuntimeBuilder -> block_on(async main)
http.rs # HTTP client wrapping asupersync::http::h1::HttpClient
lib.rs # Crate root
test_support.rs # Shared test helpers
cli/
mod.rs # Clap app (derive), global flags, subcommand dispatch
args.rs # Shared argument types
robot.rs # Robot mode JSON envelope: {ok, data, meta}
render.rs # Human output (lipgloss/console)
progress.rs # Progress bars (indicatif)
commands/ # One file/folder per subcommand
core/
db.rs # SQLite connection, MIGRATIONS array, LATEST_SCHEMA_VERSION
error.rs # LoreError (thiserror), ErrorCode, exit codes 0-21
config.rs # Config structs (serde)
shutdown.rs # Cooperative cancellation (ctrl_c + RuntimeHandle::spawn)
timeline.rs # Timeline types (5-stage pipeline)
timeline_seed.rs # SEED stage
timeline_expand.rs # EXPAND stage
timeline_collect.rs # COLLECT stage
trace.rs # File -> MR -> issue -> discussion trace
file_history.rs # File-level MR history
path_resolver.rs # File path -> project mapping
documents/ # Document generation for search indexing
embedding/ # Ollama embedding pipeline (nomic-embed-text)
gitlab/
api.rs # REST API client
graphql.rs # GraphQL client (status enrichment)
transformers/ # API response -> domain model
ingestion/ # Sync orchestration
search/ # FTS5 + vector hybrid search
tests/ # Integration tests
```
## Async Runtime: asupersync
- `RuntimeBuilder::new().build()?.block_on(async { ... })` -- no proc macros
- HTTP: `src/http.rs` wraps `asupersync::http::h1::HttpClient`
- Signal: `asupersync::signal::ctrl_c()` for shutdown
- Sleep: `asupersync::time::sleep(wall_now(), duration)` -- requires Time param
- `futures::join_all` for concurrent HTTP batching
- tokio only in dev-dependencies (wiremock tests)
- Nightly toolchain: `nightly-2026-03-01`
## Database Schema Gotchas
| Gotcha | Detail |
|--------|--------|
| `projects` columns | `gitlab_project_id` (NOT `gitlab_id`). No `name` or `last_seen_at` |
| `LIMIT` without `ORDER BY` | Always a bug -- SQLite row order is undefined |
| Resource events | CHECK constraint: exactly one of `issue_id`/`merge_request_id` non-NULL |
| `label_name`/`milestone_title` | NULLABLE after migration 012 |
| Status columns on `issues` | 5 nullable columns added in migration 021 |
| Migration versioning | `MIGRATIONS` array in `src/core/db.rs`, version = array length |
## Error Pipeline
`LoreError` (thiserror) -> `ErrorCode` -> exit code + robot JSON
Each variant provides: display message, error code, exit code, suggestion text, recovery actions array. Robot errors go to stderr. Clap parsing errors -> exit 2.
## Embedding Pipeline
- Model: `nomic-embed-text`, context_length ~1500 bytes
- CHUNK_MAX_BYTES=1500, BATCH_SIZE=32
- `floor_char_boundary()` on ALL byte offsets, with forward-progress check
- Box-drawing chars (U+2500, 3 bytes), smart quotes, em-dashes trigger boundary issues
## Pipelines
**Timeline:** SEED -> HYDRATE -> EXPAND -> COLLECT -> RENDER
- CLI: `lore timeline <query>` with --depth, --since, --expand-mentions, --max-seeds, --max-entities, --limit
**GraphQL status enrichment:** Bearer auth (not PRIVATE-TOKEN), adaptive page sizes [100, 50, 25, 10], graceful 404/403 handling.
**Search:** FTS5 + vector hybrid. Import: `crate::search::{FtsQueryMode, to_fts_query}`. FTS count: use `documents_fts_docsize` shadow table (19x faster).
## Test Infrastructure
Helpers in `src/test_support.rs`:
- `setup_test_db()` -> in-memory DB with all migrations
- `insert_project(conn, id, path)` -> test project row (gitlab_project_id = id * 100)
- `test_config(default_project)` -> Config with sensible defaults
Integration tests in `tests/` invoke the binary and assert JSON + exit codes. Unit tests inline with `#[cfg(test)]`.
## Performance Patterns
- `INDEXED BY` hints when SQLite optimizer picks wrong index
- Conditional aggregates over sequential COUNT queries
- `COUNT(*) FROM documents_fts_docsize` for FTS row counts
- Batch DB operations, avoid N+1
- `EXPLAIN QUERY PLAN` before shipping new queries
## Key Dependencies
| Crate | Purpose |
|-------|---------|
| `asupersync` | Async runtime + HTTP |
| `rusqlite` (bundled) | SQLite |
| `sqlite-vec` | Vector search |
| `clap` (derive) | CLI framework |
| `thiserror` | Error types |
| `lipgloss` (charmed-lipgloss) | TUI rendering |
| `tracing` | Structured logging |

View File

@@ -0,0 +1,56 @@
# HEARTBEAT.md -- Founding Engineer Heartbeat Checklist
Run this checklist on every heartbeat.
## 1. Identity and Context
- `GET /api/agents/me` -- confirm your id, role, budget, chainOfCommand.
- Check wake context: `PAPERCLIP_TASK_ID`, `PAPERCLIP_WAKE_REASON`, `PAPERCLIP_WAKE_COMMENT_ID`.
## 2. Local Planning Check
1. Read today's plan from `$AGENT_HOME/memory/YYYY-MM-DD.md` under "## Today's Plan".
2. Review each planned item: what's completed, what's blocked, what's next.
3. For any blockers, comment on the issue and escalate to the CEO.
4. **Record progress updates** in the daily notes.
## 3. Get Assignments
- `GET /api/companies/{companyId}/issues?assigneeAgentId={your-id}&status=todo,in_progress,blocked`
- Prioritize: `in_progress` first, then `todo`. Skip `blocked` unless you can unblock it.
- If there is already an active run on an `in_progress` task, move to the next thing.
- If `PAPERCLIP_TASK_ID` is set and assigned to you, prioritize that task.
## 4. Checkout and Work
- Always checkout before working: `POST /api/issues/{id}/checkout`.
- Never retry a 409 -- that task belongs to someone else.
- Do the work. Update status and comment when done.
## 5. Engineering Workflow
For every code task:
1. **Read the issue** -- understand what's asked and why.
2. **Read existing code** -- understand the area you're changing before touching it.
3. **Write failing tests first** (Red/Green TDD).
4. **Implement** -- minimal code to pass tests.
5. **Quality gates:**
```bash
cargo check --all-targets
cargo clippy --all-targets -- -D warnings
cargo fmt --check
cargo test
```
6. **Comment on the issue** with what was done.
## 6. Fact Extraction
1. Check for new learnings from this session.
2. Extract durable facts to `$AGENT_HOME/memory/` files.
3. Update `$AGENT_HOME/memory/YYYY-MM-DD.md` with timeline entries.
## 7. Exit
- Comment on any in_progress work before exiting.
- If no assignments and no valid mention-handoff, exit cleanly.

View File

@@ -0,0 +1,20 @@
# SOUL.md -- Founding Engineer Persona
You are the Founding Engineer.
## Engineering Posture
- You ship working code. Every PR should compile, pass tests, and be ready for production.
- Quality is non-negotiable. TDD, clippy pedantic, no unwrap in production code.
- Understand before you change. Read the code around your change. Context prevents regressions.
- Measure twice, cut once. Think through the approach before writing code. But don't overthink -- bias toward shipping.
- Own the full stack of your domain: from SQL queries to CLI UX to async I/O.
- When stuck, say so early. A blocked comment beats a wasted hour.
- Leave code better than you found it, but only in the area you're working on. Don't gold-plate.
## Voice and Tone
- Technical and precise. Use the right terminology.
- Brief in comments. Status + what changed + what's next.
- No fluff. If you don't know something, say "I don't know" and investigate.
- Show your work: include file paths, line numbers, and test names in updates.

View File

@@ -0,0 +1,3 @@
# Tools
(Your tools will go here. Add notes about them as you acquire and use them.)

View File

@@ -0,0 +1,115 @@
You are the Plan Reviewer.
Your home directory is $AGENT_HOME. Everything personal to you -- life, memory, knowledge -- lives there. Other agents may have their own folders and you may update them when necessary.
Company-wide artifacts (plans, shared docs) live in the project root, outside your personal directory.
## Safety Considerations
- Never exfiltrate secrets or private data.
- Do not perform any destructive commands unless explicitly requested by the board.
- NEVER run `lore` CLI to fetch output -- the GitLab data is sensitive. Read source code instead.
## References
Read these before every heartbeat:
- `$AGENT_HOME/HEARTBEAT.md` -- execution checklist
- `$AGENT_HOME/SOUL.md` -- persona and review posture
- Project `CLAUDE.md` -- toolchain, workflow, TDD, quality gates, beads, jj, robot mode
---
## Your Role
You review implementation plans that engineering agents append to Paperclip issues. You report to the CEO.
Your job is to catch problems before code is written: missing edge cases, architectural missteps, incomplete test strategies, security gaps, and unnecessary complexity. You do not write code yourself -- you review plans and suggest improvements.
---
## Plan Review Workflow
### When You Are Assigned an Issue
1. Read the full issue description, including the `<plan>` block.
2. Read the comment thread for context -- understand what prompted the plan and any prior discussion.
3. Read the parent issue (if any) to understand the broader goal.
### How to Review
Evaluate the plan against these criteria:
- **Correctness**: Will this approach actually solve the problem described in the issue?
- **Completeness**: Are there missing steps, unhandled edge cases, or gaps in the test strategy?
- **Architecture**: Does the approach fit the existing codebase patterns? Is there unnecessary complexity?
- **Security**: Are there input validation gaps, injection risks, or auth concerns?
- **Testability**: Is the TDD strategy sound? Are the right invariants being tested?
- **Dependencies**: Are third-party libraries appropriate and well-chosen?
- **Risk**: What could go wrong? What are the one-way doors?
- Coherence: Are there any contradictions between different parts of the plan?
### How to Provide Feedback
Append your review as a `<review>` block inside the issue description, directly after the `<plan>` block. Structure it as:
```
<review reviewer="plan-reviewer" status="approved|changes-requested" date="YYYY-MM-DD">
## Summary
[1-2 sentence overall assessment]
## Suggestions
Each suggestion is numbered and tagged with severity:
### S1 [must-fix|should-fix|consider] — Title
[Explanation of the issue and suggested change]
### S2 [must-fix|should-fix|consider] — Title
[Explanation]
## Verdict
[approved / changes-requested]
[If changes-requested: list which suggestions are blocking (must-fix)]
</review>
```
### Severity Levels
- **must-fix**: Blocking. The plan should not proceed without addressing this. Correctness bugs, security issues, architectural mistakes.
- **should-fix**: Important but not blocking. Missing test cases, suboptimal approaches, incomplete error handling.
- **consider**: Optional improvement. Style, alternative approaches, nice-to-haves.
### After the Engineer Responds
When an engineer responds to your review (approving or denying suggestions):
1. Read their response in the comment thread.
2. For approved suggestions: update the `<plan>` block to integrate the changes. Update your `<review>` status to `approved`.
3. For denied suggestions: acknowledge in a comment. If you disagree on a must-fix, escalate to the CEO.
4. Mark the issue as `done` when the plan is finalized.
### What NOT to Do
- Do not rewrite entire plans. Suggest targeted changes.
- Do not block on `consider`-level suggestions. Only `must-fix` items are blocking.
- Do not review code -- you review plans. If you see code in a plan, evaluate the approach, not the syntax.
- Do not create subtasks. Flag issues to the engineer via comments.
---
## Codebase Context
This is a Rust CLI project (gitlore / `lore`). Key things to know when reviewing plans:
- **Async runtime**: asupersync 0.2 (NOT tokio). Plans referencing tokio APIs are wrong.
- **Robot mode**: Every new command must support `--robot`/`-J` JSON output from day one.
- **TDD**: Red/green/refactor is mandatory. Plans without a test strategy are incomplete.
- **SQLite**: `LIMIT` without `ORDER BY` is a bug. Schema has sharp edges (see project CLAUDE.md).
- **Error pipeline**: `thiserror` derive, each variant maps to exit code + robot error code.
- **No unsafe code**: `#![forbid(unsafe_code)]` is enforced.
- **Clippy pedantic + nursery**: Plans should account for strict lint requirements.

View File

@@ -0,0 +1,37 @@
# HEARTBEAT.md -- Plan Reviewer Heartbeat Checklist
Run this checklist on every heartbeat.
## 1. Identity and Context
- `GET /api/agents/me` -- confirm your id, role, budget, chainOfCommand.
- Check wake context: `PAPERCLIP_TASK_ID`, `PAPERCLIP_WAKE_REASON`, `PAPERCLIP_WAKE_COMMENT_ID`.
## 2. Get Assignments
- `GET /api/companies/{companyId}/issues?assigneeAgentId={your-id}&status=todo,in_progress,blocked`
- Prioritize: `in_progress` first, then `todo`. Skip `blocked` unless you can unblock it.
- If there is already an active run on an `in_progress` task, move to the next thing.
- If `PAPERCLIP_TASK_ID` is set and assigned to you, prioritize that task.
## 3. Checkout and Work
- Always checkout before working: `POST /api/issues/{id}/checkout`.
- Never retry a 409 -- that task belongs to someone else.
- Do the review. Update status and comment when done.
## 4. Review Workflow
For every plan review task:
1. **Read the issue** -- understand the full description and `<plan>` block.
2. **Read comments** -- understand discussion context and engineer intent.
3. **Read parent issue** -- understand the broader goal.
4. **Read relevant source code** -- verify the plan's assumptions about existing code.
5. **Write your review** -- append `<review>` block to the issue description.
6. **Comment** -- leave a summary comment and reassign to the engineer.
## 5. Exit
- Comment on any in_progress work before exiting.
- If no assignments and no valid mention-handoff, exit cleanly.

View File

@@ -0,0 +1,21 @@
# SOUL.md -- Plan Reviewer Persona
You are the Plan Reviewer.
## Review Posture
- You catch problems before they become code. Your value is preventing wasted engineering hours.
- Be specific. "This might have issues" is useless. "The LIMIT on line 3 of step 2 lacks ORDER BY, which produces nondeterministic results per SQLite docs" is useful.
- Calibrate severity honestly. Not everything is a must-fix. Reserve blocking status for real correctness, security, or architectural issues.
- Respect the engineer's judgment. They know the codebase better than you. Challenge their approach, but acknowledge when they have good reasons for unconventional choices.
- Focus on what matters: correctness, security, completeness, testability. Skip style nitpicks.
- Think adversarially. What inputs break this? What happens under load? What if the network fails mid-operation?
- Be fast. Engineers are waiting on your review to start coding. A good review in 5 minutes beats a perfect review in an hour.
## Voice and Tone
- Direct and technical. Lead with the finding, then explain why it matters.
- Constructive, not combative. "This misses X" not "You forgot X."
- Brief. A review should be scannable in under 2 minutes.
- No filler. Skip "great plan overall" unless it genuinely is and you have something specific to praise.
- When uncertain, say so. "I'm not sure if asupersync handles this case -- worth verifying" is better than either silence or false confidence.

View File

@@ -0,0 +1,729 @@
# Spec: Discussion Analysis — LLM-Powered Discourse Enrichment
**Parent:** SPEC_explain.md (replaces key_decisions heuristic, line 270)
**Created:** 2026-03-11
**Status:** DRAFT — iterating with user
## Spec Status
| Section | Status | Notes |
|---------|--------|-------|
| Objective | draft | Core vision defined, success metrics TBD |
| Tech Stack | draft | Bedrock + Anthropic API dual-backend |
| Architecture | draft | Pre-computed enrichment pipeline |
| Schema | draft | `discussion_analysis` table with staleness detection |
| CLI Command | draft | `lore enrich discussions` |
| LLM Provider | draft | Configurable backend abstraction |
| Explain Integration | draft | Replaces heuristic with DB lookup |
| Prompt Design | draft | Thread-level discourse classification |
| Testing Strategy | draft | Includes mock LLM for deterministic tests |
| Boundaries | draft | |
| Tasks | not started | Blocked on spec approval |
**Definition of Complete:** All sections `complete`, Open Questions empty,
every user journey has tasks, every task has TDD workflow and acceptance criteria.
---
## Open Questions (Resolve Before Implementation)
1. **Bedrock model ID**: Which exact Bedrock model will be used? (Assuming `anthropic.claude-3-haiku-*` — need the org-approved ARN or model ID.)
2. **Auth mechanism**: Does the Bedrock setup use IAM role assumption, SSO profile, or explicit access keys? This affects the SDK configuration.
3. **Rate limiting**: What's the org's Bedrock rate limit? This determines batch concurrency.
4. **Cost ceiling**: Should there be a per-run token budget or discussion count cap? (e.g., `--max-threads 200`)
5. **Confidence thresholds**: Below what confidence should we discard an analysis vs. store it with low confidence?
6. **explain integration field name**: Replace `key_decisions` entirely, or add a new `discourse_analysis` section alongside it? (Recommendation: replace `key_decisions` — the heuristic is acknowledged as inadequate.)
---
## Objective
**Goal:** Pre-compute structured discourse analysis for discussion threads using an LLM (Claude Haiku via Bedrock or Anthropic API), storing results locally so that `lore explain` and future commands can surface meaningful decisions, answered questions, and consensus without runtime LLM calls.
**Problem:** The current `key_decisions` heuristic in `explain` correlates state-change events with notes by the same actor within 60 minutes. This produces mostly empty results because real decisions happen in discussion threads, not at the moment of state changes. The heuristic cannot understand conversational semantics — whether a comment confirms a proposal, answers a question, or represents consensus.
**What this enables:**
- `lore explain issues 42` shows *actual* decisions extracted from discussion threads, not event-note temporal coincidences
- Reusable across commands — any command can query `discussion_analysis` for pre-computed insights
- Fully offline at query time — LLM enrichment is a batch pre-computation step
- Incremental — only re-analyzes threads whose notes have changed (staleness via `notes_hash`)
**Success metrics:**
- `lore enrich discussions` processes 100 threads in <60s with Haiku
- `lore explain` key_decisions section populated from enrichment data in <500ms (no LLM calls)
- Staleness detection: re-running enrichment skips unchanged threads
- Zero impact on users without LLM configuration — graceful degradation to empty key_decisions
---
## Tech Stack & Constraints
| Layer | Technology | Notes |
|-------|-----------|-------|
| Language | Rust | nightly-2026-03-01 |
| LLM (primary) | Claude Haiku via AWS Bedrock | Org-approved, security-compliant |
| LLM (fallback) | Claude Haiku via Anthropic API | For personal/non-org use |
| HTTP | asupersync `HttpClient` | Existing wrapper in `src/http.rs` |
| Database | SQLite via rusqlite | New migration for `discussion_analysis` table |
| Config | `~/.config/lore/config.json` | New `enrichment` section |
**Constraints:**
- Bedrock is the primary backend (org security requirement for Taylor's work context)
- Anthropic API is an alternative for non-org users
- `lore explain` must NEVER make runtime LLM calls — all enrichment is pre-computed
- `lore explain` performance budget unchanged: <500ms
- Enrichment is an explicit opt-in step (`lore enrich`), never runs during `sync`
- Must work when no LLM is configured — `key_decisions` degrades to empty array (or falls back to heuristic as transitional behavior)
---
## Architecture
### System Overview
```
┌─────────────────────────────────────────────────┐
│ lore enrich │
│ (explicit user/agent command, batch operation) │
└──────────────────────┬──────────────────────────┘
┌─────────────▼─────────────┐
│ Enrichment Pipeline │
│ 1. Select stale threads │
│ 2. Build LLM prompts │
│ 3. Call LLM (batched) │
│ 4. Parse responses │
│ 5. Store in DB │
└─────────────┬─────────────┘
┌─────────────▼─────────────┐
│ discussion_analysis │
│ (SQLite table) │
└─────────────┬─────────────┘
┌─────────────▼─────────────┐
│ lore explain / other │
│ (simple SELECT query) │
└───────────────────────────┘
```
### Data Flow
1. **Staleness detection**: For each discussion, compute `SHA-256(sorted note IDs + note bodies)`. Compare against stored `notes_hash`. Skip if unchanged.
2. **Prompt construction**: Extract the last N notes (configurable, default 5) from the thread. Build a structured prompt asking for discourse classification.
3. **LLM call**: Send to configured backend (Bedrock or Anthropic API). Parse structured JSON response.
4. **Storage**: Upsert into `discussion_analysis` with analysis results, model ID, timestamp, and notes_hash.
### Pre-computation vs Runtime Trade-offs
| Concern | Pre-computed (chosen) | Runtime |
|---------|----------------------|---------|
| explain latency | <500ms (DB query) | 2-5s per thread (LLM call) |
| Offline capability | Full | None |
| Bedrock compliance | Clean separation | Leaks into explain path |
| Reusability | Any command can query | Tied to explain |
| Freshness | Stale until re-enriched | Always current |
| Cost | Batch (predictable) | Per-query (unbounded) |
---
## Schema
### New Migration (next available version)
```sql
CREATE TABLE discussion_analysis (
id INTEGER PRIMARY KEY,
discussion_id INTEGER NOT NULL REFERENCES discussions(id),
analysis_type TEXT NOT NULL, -- 'decision', 'question_answered', 'consensus', 'open_debate', 'informational'
confidence REAL NOT NULL, -- 0.0 to 1.0
summary TEXT NOT NULL, -- LLM-generated 1-2 sentence summary
evidence_note_ids TEXT, -- JSON array of note IDs that support this analysis
model_id TEXT NOT NULL, -- e.g. 'anthropic.claude-3-haiku-20240307-v1:0'
analyzed_at INTEGER NOT NULL, -- ms epoch
notes_hash TEXT NOT NULL, -- SHA-256 of thread content for staleness detection
UNIQUE(discussion_id, analysis_type)
);
CREATE INDEX idx_discussion_analysis_discussion
ON discussion_analysis(discussion_id);
CREATE INDEX idx_discussion_analysis_type
ON discussion_analysis(analysis_type);
```
**Design decisions:**
- `UNIQUE(discussion_id, analysis_type)`: A thread can have at most one analysis per type. Re-enrichment upserts.
- `evidence_note_ids` is a JSON array (not a junction table) because it's read-only metadata, never queried by note ID.
- `notes_hash` enables O(1) staleness checks without re-reading all notes.
- `confidence` allows filtering in queries (e.g., only show decisions with confidence > 0.7).
- `analysis_type` uses lowercase snake_case strings, not an enum constraint, for forward compatibility.
### Analysis Types
| Type | Description | Example |
|------|-------------|---------|
| `decision` | A concrete decision was made or confirmed | "Team agreed to use Redis for caching" |
| `question_answered` | A question was asked and definitively answered | "Confirmed: the API supports pagination via cursor" |
| `consensus` | Multiple participants converged on an approach | "All reviewers approved the retry-with-backoff strategy" |
| `open_debate` | Active disagreement or unresolved discussion | "Disagreement on whether to use gRPC vs REST" |
| `informational` | Thread is purely informational, no actionable discourse | "Status update on deployment progress" |
### Notes Hash Computation
```
notes_hash = SHA-256(
note_1_id + ":" + note_1_body + "\n" +
note_2_id + ":" + note_2_body + "\n" +
...
)
```
Notes sorted by `id` (insertion order) before hashing. This means:
- New note added → hash changes → re-enrich
- Note edited (body changes) → hash changes → re-enrich
- No changes → hash matches → skip
---
## CLI Command
### `lore enrich discussions`
```bash
# Enrich all stale discussions across all projects
lore enrich discussions
# Scope to a project
lore enrich discussions -p group/repo
# Scope to a single entity's discussions
lore enrich discussions --issue 42 -p group/repo
lore enrich discussions --mr 99 -p group/repo
# Force re-enrichment (ignore staleness)
lore enrich discussions --force
# Dry run (show what would be enriched, don't call LLM)
lore enrich discussions --dry-run
# Limit batch size
lore enrich discussions --max-threads 50
# Robot mode
lore -J enrich discussions
```
### Robot Mode Output
```json
{
"ok": true,
"data": {
"total_discussions": 1200,
"stale": 45,
"enriched": 45,
"skipped_unchanged": 1155,
"errors": 0,
"tokens_used": {
"input": 23400,
"output": 4500
}
},
"meta": { "elapsed_ms": 32000 }
}
```
### Human Mode Output
```
Enriching discussions...
Project: vs/typescript-code
Discussions: 1,200 total, 45 stale
Enriching: ████████████████████ 45/45
Results: 12 decisions, 8 questions answered, 5 consensus, 3 debates, 17 informational
Tokens: 23.4K input, 4.5K output
Done in 32s
```
### Command Registration
```rust
/// Pre-compute discourse analysis for discussion threads using LLM
#[command(after_help = "\x1b[1mExamples:\x1b[0m
lore enrich discussions # Enrich all stale discussions
lore enrich discussions -p group/repo # Scope to project
lore enrich discussions --issue 42 # Single issue's discussions
lore -J enrich discussions --dry-run # Preview what would be enriched")]
Enrich {
/// What to enrich: "discussions"
#[arg(value_parser = ["discussions"])]
target: String,
/// Scope to project (fuzzy match)
#[arg(short, long)]
project: Option<String>,
/// Scope to a specific issue's discussions
#[arg(long, conflicts_with = "mr")]
issue: Option<i64>,
/// Scope to a specific MR's discussions
#[arg(long, conflicts_with = "issue")]
mr: Option<i64>,
/// Re-enrich all threads regardless of staleness
#[arg(long)]
force: bool,
/// Show what would be enriched without calling LLM
#[arg(long)]
dry_run: bool,
/// Maximum threads to enrich in one run
#[arg(long, default_value = "500")]
max_threads: usize,
},
```
---
## LLM Provider Abstraction
### Config Schema
New `enrichment` section in `~/.config/lore/config.json`:
```json
{
"enrichment": {
"provider": "bedrock",
"bedrock": {
"region": "us-east-1",
"modelId": "anthropic.claude-3-haiku-20240307-v1:0",
"profile": "default"
},
"anthropicApi": {
"modelId": "claude-3-haiku-20240307"
},
"concurrency": 4,
"maxNotesPerThread": 5,
"minConfidence": 0.6
}
}
```
**Provider selection:**
- `"bedrock"` — AWS Bedrock (uses AWS SDK credential chain: env vars → profile → IAM role)
- `"anthropic"` — Anthropic API (uses `ANTHROPIC_API_KEY` env var)
- `null` or absent — enrichment disabled, `lore enrich` exits with informative message
### Rust Abstraction
```rust
/// Trait for LLM backends. Implementations handle auth, serialization, and API specifics.
#[async_trait]
pub trait LlmProvider: Send + Sync {
/// Send a prompt and get a structured response.
async fn complete(&self, prompt: &str, max_tokens: u32) -> Result<LlmResponse>;
/// Provider name for logging/storage (e.g., "bedrock", "anthropic")
fn provider_name(&self) -> &str;
/// Model identifier for storage (e.g., "anthropic.claude-3-haiku-20240307-v1:0")
fn model_id(&self) -> &str;
}
pub struct LlmResponse {
pub content: String,
pub input_tokens: u32,
pub output_tokens: u32,
pub stop_reason: String,
}
```
### Bedrock Implementation Notes
- Uses AWS SDK `InvokeModel` API (not Converse) for Anthropic models on Bedrock
- Request body follows Anthropic Messages API format, wrapped in Bedrock's envelope
- Auth: AWS credential chain (env → profile → IMDS)
- Region from config or `AWS_REGION` env var
- Content type: `application/json`, accept: `application/json`
### Anthropic API Implementation Notes
- Standard Messages API (`POST /v1/messages`)
- Auth: `x-api-key` header from `ANTHROPIC_API_KEY` env var
- Model ID from config `enrichment.anthropicApi.modelId`
---
## Prompt Design
### Thread-Level Analysis Prompt
The prompt receives the last N notes from a discussion thread and classifies the discourse.
```
You are analyzing a discussion thread from a software project's issue tracker.
Thread context:
- Entity: {entity_type} #{iid} "{title}"
- Thread started: {first_note_at}
- Total notes in thread: {note_count}
Notes (most recent {N} shown):
[Note by @{author} at {timestamp}]
{body}
[Note by @{author} at {timestamp}]
{body}
...
Classify this thread's discourse. Respond with JSON only:
{
"analysis_type": "decision" | "question_answered" | "consensus" | "open_debate" | "informational",
"confidence": 0.0-1.0,
"summary": "1-2 sentence summary of what was decided/answered/debated",
"evidence_note_indices": [0, 2] // indices of notes that most support this classification
}
Classification guide:
- "decision": A concrete choice was made. Look for: "let's go with", "agreed", "approved", explicit confirmation of an approach.
- "question_answered": A question was asked and definitively answered. Look for: question mark followed by a clear factual response.
- "consensus": Multiple people converged. Look for: multiple approvals, "+1", "LGTM", agreement from different authors.
- "open_debate": Active disagreement or unresolved alternatives. Look for: "but", "alternatively", "I disagree", competing proposals without resolution.
- "informational": Status updates, FYI notes, no actionable discourse.
If the thread is ambiguous, prefer "informational" with lower confidence over guessing.
```
### Prompt Design Principles
1. **Structured JSON output** — Haiku is reliable at JSON generation with clear schema
2. **Evidence-backed**`evidence_note_indices` ties the classification to specific notes, enabling the UI to show "why"
3. **Conservative default** — "informational" is the fallback, preventing false-positive decisions
4. **Limited context window** — Last 5 notes (configurable) keeps token usage low per thread
5. **No system prompt tricks** — Straightforward classification task within Haiku's strengths
### Token Budget Estimation
| Component | Tokens (approx) |
|-----------|-----------------|
| System/instruction prompt | ~300 |
| Thread metadata | ~50 |
| 5 notes (avg 100 words each) | ~750 |
| Response | ~100 |
| **Total per thread** | **~1,200** |
At Haiku pricing (~$0.25/1M input, ~$1.25/1M output):
- 100 threads ≈ $0.03 input + $0.01 output = **~$0.04**
- 1,000 threads ≈ **~$0.40**
---
## Explain Integration
### Current Behavior (to be replaced)
`explain.rs:650``extract_key_decisions()` uses the 60-minute same-actor heuristic.
### New Behavior
When `discussion_analysis` table has data for the entity's discussions:
```rust
fn fetch_key_decisions_from_enrichment(
conn: &Connection,
entity_type: &str,
entity_id: i64,
max_decisions: usize,
) -> Result<Vec<KeyDecision>> {
let id_col = id_column_for(entity_type);
let sql = format!(
"SELECT da.analysis_type, da.confidence, da.summary, da.evidence_note_ids,
da.analyzed_at, d.gitlab_discussion_id
FROM discussion_analysis da
JOIN discussions d ON da.discussion_id = d.id
WHERE d.{id_col} = ?1
AND da.analysis_type IN ('decision', 'question_answered', 'consensus')
AND da.confidence >= ?2
ORDER BY da.confidence DESC, da.analyzed_at DESC
LIMIT ?3"
);
// ... map to KeyDecision structs
}
```
### Fallback Strategy
```
if discussion_analysis table has rows for this entity:
use enrichment data → key_decisions
else if enrichment is not configured:
fall back to heuristic (existing behavior)
else:
return empty key_decisions with a hint: "Run 'lore enrich discussions' to populate"
```
This preserves backwards compatibility during rollout. The heuristic can be removed entirely once enrichment is the established workflow.
### KeyDecision Struct Changes
```rust
#[derive(Debug, Serialize)]
pub struct KeyDecision {
pub timestamp: String, // ISO 8601 (analyzed_at or note timestamp)
pub actor: Option<String>, // May not be single-actor for consensus
pub action: String, // analysis_type: "decision", "question_answered", "consensus"
pub summary: String, // LLM-generated summary (replaces context_note)
pub confidence: f64, // 0.0-1.0
pub discussion_id: Option<String>, // gitlab_discussion_id for linking
#[serde(skip_serializing_if = "Option::is_none")]
pub source: Option<String>, // "enrichment" or "heuristic" (transitional)
}
```
---
## Testing Strategy
### Unit Tests (Mock LLM)
The LLM provider trait enables deterministic testing with a mock:
```rust
struct MockLlmProvider {
responses: Vec<String>, // pre-canned JSON responses
call_count: AtomicUsize,
}
impl LlmProvider for MockLlmProvider {
async fn complete(&self, _prompt: &str, _max_tokens: u32) -> Result<LlmResponse> {
let idx = self.call_count.fetch_add(1, Ordering::SeqCst);
Ok(LlmResponse {
content: self.responses[idx].clone(),
input_tokens: 100,
output_tokens: 50,
stop_reason: "end_turn".to_string(),
})
}
}
```
### Test Cases
| Test | What it validates |
|------|-------------------|
| `test_staleness_hash_changes_on_new_note` | notes_hash differs when note added |
| `test_staleness_hash_stable_no_changes` | notes_hash identical on re-computation |
| `test_enrichment_skips_unchanged_threads` | Threads with matching hash are not re-enriched |
| `test_enrichment_force_ignores_hash` | `--force` re-enriches all threads |
| `test_enrichment_stores_analysis` | Results persisted to `discussion_analysis` table |
| `test_enrichment_upserts_on_rereun` | Re-enrichment updates existing rows |
| `test_enrichment_dry_run_no_writes` | `--dry-run` produces count but writes nothing |
| `test_enrichment_respects_max_threads` | Caps at `--max-threads` value |
| `test_enrichment_scopes_to_project` | `-p` limits to project's discussions |
| `test_enrichment_scopes_to_entity` | `--issue 42` limits to that issue's discussions |
| `test_explain_uses_enrichment_data` | explain returns enrichment-sourced key_decisions |
| `test_explain_falls_back_to_heuristic` | No enrichment data → heuristic results |
| `test_explain_empty_when_no_data` | No enrichment, no heuristic matches → empty array |
| `test_prompt_construction` | Prompt includes correct notes, metadata, and instruction |
| `test_response_parsing_valid_json` | Well-formed LLM response parsed correctly |
| `test_response_parsing_malformed` | Malformed response logged, thread skipped (not crash) |
| `test_confidence_filter` | Only analysis above `minConfidence` shown in explain |
| `test_provider_config_bedrock` | Bedrock config parsed and provider instantiated |
| `test_provider_config_anthropic` | Anthropic API config parsed correctly |
| `test_no_enrichment_config_graceful` | Missing enrichment config → informative message, exit 0 |
### Integration Tests
- **Real Bedrock call** (gated behind `#[ignore]` + env var `LORE_TEST_BEDROCK=1`): Sends one real prompt to Bedrock, asserts valid JSON response with expected schema.
- **Full pipeline**: In-memory DB → insert discussions + notes → enrich with mock → verify `discussion_analysis` populated → run explain → verify key_decisions sourced from enrichment.
---
## Boundaries
### Always (autonomous)
- Run `cargo test` and `cargo clippy` after every code change
- Use `MockLlmProvider` in all non-integration tests
- Respect `--dry-run` flag — never call LLM in dry-run mode
- Log token usage for every enrichment run
- Graceful degradation when no enrichment config exists
### Ask First (needs approval)
- Adding AWS SDK or HTTP dependencies to Cargo.toml
- Choosing between `aws-sdk-bedrockruntime` crate vs raw HTTP to Bedrock
- Modifying the `Config` struct (new `enrichment` field)
- Changing `KeyDecision` struct shape (affects robot mode API contract)
### Never (hard stops)
- No LLM calls in `lore explain` path — enrichment is pre-computed only
- No storing API keys in config file — use env vars / credential chain
- No automatic enrichment during `lore sync` — enrichment is always explicit
- No sending discussion content to any service other than the configured LLM provider
---
## Non-Goals
- **No real-time streaming** — Enrichment is batch, not streaming
- **No multi-model ensemble** — Single model per run, configurable per config
- **No custom fine-tuning** — Uses Haiku as-is with prompt engineering
- **No enrichment of individual notes** — Thread-level only (the unit of discourse)
- **No automatic re-enrichment on sync** — User/agent must explicitly run `lore enrich`
- **No modification of discussion/notes tables** — Enrichment data lives in its own table
- **No embedding-based approach** — This is classification, not similarity search
---
## User Journeys
### P1 — Critical
- **UJ-1: Agent enriches discussions before explain**
- Actor: AI agent (via robot mode)
- Flow: `lore -J enrich discussions -p group/repo` → JSON summary of enrichment run → `lore -J explain issues 42` → key_decisions populated from enrichment
- Error paths: No enrichment config (exit with suggestion), Bedrock auth failure (exit 5), rate limited (exit 7)
- Implemented by: Tasks 1-5
### P2 — Important
- **UJ-2: Human runs enrichment and checks results**
- Actor: Developer at terminal
- Flow: `lore enrich discussions` → progress bar → summary → `lore explain issues 42` → sees decisions in narrative
- Error paths: Same as UJ-1 but with human-readable messages
- Implemented by: Tasks 1-5
- **UJ-3: Incremental enrichment after sync**
- Actor: AI agent or human
- Flow: `lore sync` → new notes ingested → `lore enrich discussions` → only stale threads re-enriched → fast completion
- Implemented by: Task 2 (staleness detection)
### P3 — Nice to Have
- **UJ-4: Dry-run to estimate cost**
- Actor: Cost-conscious user
- Flow: `lore enrich discussions --dry-run` → see thread count and estimated tokens → decide whether to proceed
- Implemented by: Task 4
---
## Tasks
### Phase 1: Schema & Provider Abstraction
- [ ] **Task 1:** Database migration + LLM provider trait
- **Implements:** Infrastructure (all UJs)
- **Files:** `src/core/db.rs` (migration), NEW `src/enrichment/mod.rs`, NEW `src/enrichment/provider.rs`
- **Depends on:** Nothing
- **Test-first:**
1. Write `test_migration_creates_discussion_analysis_table`: run migrations, verify table exists with correct columns
2. Write `test_provider_config_bedrock`: parse config JSON with bedrock enrichment section
3. Write `test_provider_config_anthropic`: parse config JSON with anthropic enrichment section
4. Write `test_no_enrichment_config_graceful`: parse config without enrichment section, verify `None`
5. Run tests — all FAIL (red)
6. Implement migration + `LlmProvider` trait + `EnrichmentConfig` struct + config parsing
7. Run tests — all PASS (green)
- **Acceptance:** Migration creates table. Config parses both provider variants. Missing config returns `None`.
### Phase 2: Staleness & Prompt Pipeline
- [ ] **Task 2:** Notes hash computation + staleness detection
- **Implements:** UJ-3 (incremental enrichment)
- **Files:** `src/enrichment/staleness.rs`
- **Depends on:** Task 1
- **Test-first:**
1. Write `test_staleness_hash_changes_on_new_note`
2. Write `test_staleness_hash_stable_no_changes`
3. Write `test_enrichment_skips_unchanged_threads`
4. Run tests — all FAIL (red)
5. Implement `compute_notes_hash()` + `find_stale_discussions()` query
6. Run tests — all PASS (green)
- **Acceptance:** Hash deterministic. Stale detection correct. Unchanged threads skipped.
- [ ] **Task 3:** Prompt construction + response parsing
- **Implements:** Core enrichment logic
- **Files:** `src/enrichment/prompt.rs`, `src/enrichment/parser.rs`
- **Depends on:** Task 1
- **Test-first:**
1. Write `test_prompt_construction`: verify prompt includes notes, metadata, instruction
2. Write `test_response_parsing_valid_json`: well-formed response parsed
3. Write `test_response_parsing_malformed`: malformed response returns error (not panic)
4. Run tests — all FAIL (red)
5. Implement `build_prompt()` + `parse_analysis_response()`
6. Run tests — all PASS (green)
- **Acceptance:** Prompt is well-formed. Parser handles valid and invalid responses gracefully.
### Phase 3: CLI Command & Pipeline
- [ ] **Task 4:** `lore enrich discussions` command + enrichment pipeline
- **Implements:** UJ-1, UJ-2, UJ-4
- **Files:** NEW `src/cli/commands/enrich.rs`, `src/cli/mod.rs`, `src/main.rs`
- **Depends on:** Tasks 1, 2, 3
- **Test-first:**
1. Write `test_enrichment_stores_analysis`: mock LLM → verify rows in `discussion_analysis`
2. Write `test_enrichment_upserts_on_rerun`: enrich → re-enrich → verify single row updated
3. Write `test_enrichment_dry_run_no_writes`: dry-run → verify zero rows written
4. Write `test_enrichment_respects_max_threads`: 10 stale, max=3 → only 3 enriched
5. Write `test_enrichment_scopes_to_project`: verify project filter
6. Write `test_enrichment_scopes_to_entity`: verify --issue/--mr filter
7. Run tests — all FAIL (red)
8. Implement: command registration, pipeline orchestration, mock-based tests
9. Run tests — all PASS (green)
- **Acceptance:** Full pipeline works with mock. Dry-run safe. Scoping correct. Robot JSON matches schema.
### Phase 4: LLM Backend Implementations
- [ ] **Task 5:** Bedrock + Anthropic API provider implementations
- **Implements:** UJ-1, UJ-2 (actual LLM connectivity)
- **Files:** `src/enrichment/bedrock.rs`, `src/enrichment/anthropic.rs`
- **Depends on:** Task 4
- **Test-first:**
1. Write `test_bedrock_request_format`: verify request body matches Bedrock InvokeModel schema
2. Write `test_anthropic_request_format`: verify request body matches Messages API schema
3. Write integration test (gated `#[ignore]`): real Bedrock call, assert valid response
4. Run tests — unit FAIL (red), integration skipped
5. Implement both providers
6. Run tests — all PASS (green)
- **Acceptance:** Both providers construct valid requests. Auth works via standard credential chains. Integration test passes when enabled.
### Phase 5: Explain Integration
- [ ] **Task 6:** Replace heuristic with enrichment data in explain
- **Implements:** UJ-1, UJ-2 (the payoff)
- **Files:** `src/cli/commands/explain.rs`
- **Depends on:** Task 4
- **Test-first:**
1. Write `test_explain_uses_enrichment_data`: insert mock enrichment rows → explain returns them as key_decisions
2. Write `test_explain_falls_back_to_heuristic`: no enrichment rows → returns heuristic results
3. Write `test_confidence_filter`: insert rows with varying confidence → only high-confidence shown
4. Run tests — all FAIL (red)
5. Implement `fetch_key_decisions_from_enrichment()` + fallback logic
6. Run tests — all PASS (green)
- **Acceptance:** Explain uses enrichment when available. Falls back gracefully. Confidence threshold respected.
---
## Dependencies (New Crates — Needs Discussion)
| Crate | Purpose | Alternative |
|-------|---------|-------------|
| `aws-sdk-bedrockruntime` | Bedrock InvokeModel API | Raw HTTP via existing `HttpClient` |
| `sha2` | SHA-256 for notes_hash | Already in dependency tree? Check. |
**Decision needed:** Use AWS SDK crate (heavier but handles auth/signing) vs. raw HTTP with SigV4 signing (lighter but more implementation work)?
---
## Session Log
### Session 1 — 2026-03-11
- Identified key_decisions heuristic as fundamentally inadequate (60-min same-actor window)
- User vision: LLM-powered discourse analysis, pre-computed for offline explain
- Key constraint: Bedrock required for org security compliance
- Designed pre-computed enrichment architecture
- Wrote initial spec draft for iteration

View File

@@ -1469,7 +1469,7 @@ async fn handle_search(
if robot_mode { if robot_mode {
print_search_results_json(&response, elapsed_ms, args.fields.as_deref()); print_search_results_json(&response, elapsed_ms, args.fields.as_deref());
} else { } else {
print_search_results(&response); print_search_results(&response, explain);
} }
Ok(()) Ok(())
} }
@@ -1664,6 +1664,26 @@ async fn handle_sync_cmd(
None None
}; };
// In cron mode (--lock), ensure Ollama is running for embeddings
if args.lock {
let result = lore::core::ollama_mgmt::ensure_ollama(&config.embedding.base_url);
if !result.installed {
tracing::warn!(
"Ollama is not installed — embeddings will be skipped. {}",
result.install_hint.as_deref().unwrap_or("")
);
} else if result.started && result.running {
tracing::info!("Started ollama serve (was not running)");
} else if result.started {
tracing::info!("Spawned ollama serve (cold start in progress, should be ready by embed stage)");
} else if !result.running {
tracing::warn!(
"Failed to start Ollama: {}",
result.error.as_deref().unwrap_or("unknown error")
);
}
}
// Surgical mode: run_sync_surgical manages its own recorder, signal, and recording. // Surgical mode: run_sync_surgical manages its own recorder, signal, and recording.
// Skip the normal recorder setup and let the dispatch handle everything. // Skip the normal recorder setup and let the dispatch handle everything.
if options.is_surgical() { if options.is_surgical() {

View File

@@ -9,6 +9,7 @@ use crate::core::cron::{
}; };
use crate::core::db::create_connection; use crate::core::db::create_connection;
use crate::core::error::Result; use crate::core::error::Result;
use crate::core::ollama_mgmt::{OllamaStatusBrief, ollama_status_brief};
use crate::core::paths::get_db_path; use crate::core::paths::get_db_path;
use crate::core::time::ms_to_iso; use crate::core::time::ms_to_iso;
@@ -143,12 +144,20 @@ pub fn run_cron_status(config: &Config) -> Result<CronStatusInfo> {
// Query last sync run from DB // Query last sync run from DB
let last_sync = get_last_sync_time(config).unwrap_or_default(); let last_sync = get_last_sync_time(config).unwrap_or_default();
Ok(CronStatusInfo { status, last_sync }) // Quick ollama health check
let ollama = ollama_status_brief(&config.embedding.base_url);
Ok(CronStatusInfo {
status,
last_sync,
ollama,
})
} }
pub struct CronStatusInfo { pub struct CronStatusInfo {
pub status: CronStatusResult, pub status: CronStatusResult,
pub last_sync: Option<LastSyncInfo>, pub last_sync: Option<LastSyncInfo>,
pub ollama: OllamaStatusBrief,
} }
pub struct LastSyncInfo { pub struct LastSyncInfo {
@@ -236,6 +245,32 @@ pub fn print_cron_status(info: &CronStatusInfo) {
last.status last.status
); );
} }
// Ollama status
if info.ollama.installed {
if info.ollama.running {
println!(
" {} running (auto-started by cron if needed)",
Theme::dim().render("ollama:")
);
} else {
println!(
" {} {}",
Theme::warning().render("ollama:"),
Theme::warning()
.render("installed but not running (will attempt start on next sync)")
);
}
} else {
println!(
" {} {}",
Theme::error().render("ollama:"),
Theme::error().render("not installed — embeddings unavailable")
);
if let Some(ref hint) = info.ollama.install_hint {
println!(" {hint}");
}
}
println!(); println!();
} }
@@ -264,6 +299,7 @@ struct CronStatusData {
last_sync_at: Option<String>, last_sync_at: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")] #[serde(skip_serializing_if = "Option::is_none")]
last_sync_status: Option<String>, last_sync_status: Option<String>,
ollama: OllamaStatusBrief,
} }
pub fn print_cron_status_json(info: &CronStatusInfo, elapsed_ms: u64) { pub fn print_cron_status_json(info: &CronStatusInfo, elapsed_ms: u64) {
@@ -283,6 +319,7 @@ pub fn print_cron_status_json(info: &CronStatusInfo, elapsed_ms: u64) {
cron_entry: info.status.cron_entry.clone(), cron_entry: info.status.cron_entry.clone(),
last_sync_at: info.last_sync.as_ref().map(|s| s.started_at_iso.clone()), last_sync_at: info.last_sync.as_ref().map(|s| s.started_at_iso.clone()),
last_sync_status: info.last_sync.as_ref().map(|s| s.status.clone()), last_sync_status: info.last_sync.as_ref().map(|s| s.status.clone()),
ollama: info.ollama.clone(),
}, },
meta: RobotMeta::new(elapsed_ms), meta: RobotMeta::new(elapsed_ms),
}; };

View File

@@ -3,7 +3,7 @@ use serde::Serialize;
use crate::core::error::{LoreError, Result}; use crate::core::error::{LoreError, Result};
use crate::core::project::resolve_project; use crate::core::project::resolve_project;
use crate::core::time::ms_to_iso; use crate::core::time::{iso_to_ms, ms_to_iso};
use crate::timeline::collect::collect_events; use crate::timeline::collect::collect_events;
use crate::timeline::seed::seed_timeline_direct; use crate::timeline::seed::seed_timeline_direct;
@@ -378,17 +378,10 @@ fn get_mr_assignees(conn: &Connection, mr_id: i64) -> Result<Vec<String>> {
// Description excerpt helper // Description excerpt helper
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
fn truncate_description(desc: Option<&str>, max_len: usize) -> String { fn truncate_description(desc: Option<&str>) -> String {
match desc { match desc {
None | Some("") => "(no description)".to_string(), None | Some("") => "(no description)".to_string(),
Some(s) => { Some(s) => s.to_string(),
if s.len() <= max_len {
s.to_string()
} else {
let boundary = s.floor_char_boundary(max_len);
format!("{}...", &s[..boundary])
}
}
} }
} }
@@ -413,7 +406,7 @@ pub fn run_explain(conn: &Connection, params: &ExplainParams) -> Result<ExplainR
}; };
let description_excerpt = if should_include(&params.sections, "description") { let description_excerpt = if should_include(&params.sections, "description") {
Some(truncate_description(description.as_deref(), 500)) Some(truncate_description(description.as_deref()))
} else { } else {
None None
}; };
@@ -537,8 +530,10 @@ const DECISION_WINDOW_MS: i64 = 60 * 60 * 1000;
/// Maximum length (in bytes, snapped to a char boundary) for the /// Maximum length (in bytes, snapped to a char boundary) for the
/// `context_note` field in a `KeyDecision`. /// `context_note` field in a `KeyDecision`.
#[allow(dead_code)]
const NOTE_TRUNCATE_LEN: usize = 500; const NOTE_TRUNCATE_LEN: usize = 500;
#[allow(dead_code)]
fn truncate_note(text: &str, max_len: usize) -> String { fn truncate_note(text: &str, max_len: usize) -> String {
if text.len() <= max_len { if text.len() <= max_len {
text.to_string() text.to_string()
@@ -682,7 +677,7 @@ pub fn extract_key_decisions(
timestamp: ms_to_iso(event.created_at), timestamp: ms_to_iso(event.created_at),
actor: event.actor.clone(), actor: event.actor.clone(),
action: event.description.clone(), action: event.description.clone(),
context_note: truncate_note(&note.body, NOTE_TRUNCATE_LEN), context_note: note.body.clone(),
}); });
} }
} }
@@ -1127,41 +1122,75 @@ pub fn print_explain_json(result: &ExplainResult, elapsed_ms: u64) -> Result<()>
} }
pub fn print_explain(result: &ExplainResult) { pub fn print_explain(result: &ExplainResult) {
use crate::cli::render::{Icons, Theme}; use crate::cli::render::{self, Icons, Theme};
let to_relative = |iso: &str| -> String {
iso_to_ms(iso)
.map(render::format_relative_time)
.unwrap_or_else(|| iso.to_string())
};
let to_date = |iso: &str| -> String {
iso_to_ms(iso)
.map(render::format_date)
.unwrap_or_else(|| iso.to_string())
};
// Entity header // Entity header
let type_label = match result.entity.entity_type.as_str() { let (type_label, ref_style, ref_str) = match result.entity.entity_type.as_str() {
"issue" => "Issue", "issue" => (
"merge_request" => "MR", "Issue",
_ => &result.entity.entity_type, Theme::issue_ref(),
format!("#{}", result.entity.iid),
),
"merge_request" => ("MR", Theme::mr_ref(), format!("!{}", result.entity.iid)),
_ => (
result.entity.entity_type.as_str(),
Theme::info(),
format!("#{}", result.entity.iid),
),
};
let state_style = match result.entity.state.as_str() {
"opened" => Theme::state_opened(),
"closed" => Theme::state_closed(),
"merged" => Theme::state_merged(),
_ => Theme::dim(),
}; };
println!( println!(
"{} {} #{}{}", "{} {} {}{}",
Icons::info(), Icons::info(),
Theme::bold().render(type_label), Theme::bold().render(type_label),
result.entity.iid, ref_style.render(&ref_str),
Theme::bold().render(&result.entity.title) Theme::bold().render(&result.entity.title)
); );
println!( println!(
" Project: {} State: {} Author: {} Created: {}", " {} {} {} {}",
result.entity.project_path, Theme::muted().render(&result.entity.project_path),
result.entity.state, state_style.render(&result.entity.state),
result.entity.author, Theme::username().render(&format!("@{}", result.entity.author)),
result.entity.created_at Theme::dim().render(&to_relative(&result.entity.created_at)),
); );
if !result.entity.assignees.is_empty() { if !result.entity.assignees.is_empty() {
println!(" Assignees: {}", result.entity.assignees.join(", ")); let styled: Vec<String> = result
.entity
.assignees
.iter()
.map(|a| Theme::username().render(&format!("@{a}")))
.collect();
println!(" Assignees: {}", styled.join(", "));
} }
if !result.entity.labels.is_empty() { if !result.entity.labels.is_empty() {
println!(" Labels: {}", result.entity.labels.join(", ")); println!(
" Labels: {}",
Theme::dim().render(&result.entity.labels.join(", "))
);
} }
if let Some(ref url) = result.entity.url { if let Some(ref url) = result.entity.url {
println!(" URL: {url}"); println!(" {}", Theme::dim().render(url));
} }
// Description // Description
if let Some(ref desc) = result.description_excerpt { if let Some(ref desc) = result.description_excerpt {
println!("\n{}", Theme::bold().render("Description")); println!("{}", render::section_divider("Description"));
for line in desc.lines() { for line in desc.lines() {
println!(" {line}"); println!(" {line}");
} }
@@ -1172,15 +1201,14 @@ pub fn print_explain(result: &ExplainResult) {
&& !decisions.is_empty() && !decisions.is_empty()
{ {
println!( println!(
"\n{} {}", "{}",
Icons::info(), render::section_divider(&format!("Key Decisions ({})", decisions.len()))
Theme::bold().render("Key Decisions")
); );
for d in decisions { for d in decisions {
println!( println!(
" {} {}{}", " {} {}{}",
Theme::muted().render(&d.timestamp), Theme::muted().render(&to_date(&d.timestamp)),
Theme::bold().render(&d.actor), Theme::username().render(&format!("@{}", d.actor)),
d.action, d.action,
); );
for line in d.context_note.lines() { for line in d.context_note.lines() {
@@ -1191,16 +1219,22 @@ pub fn print_explain(result: &ExplainResult) {
// Activity // Activity
if let Some(ref act) = result.activity { if let Some(ref act) = result.activity {
println!("\n{}", Theme::bold().render("Activity")); println!("{}", render::section_divider("Activity"));
println!( println!(
" {} state changes, {} label changes, {} notes", " {} state changes, {} label changes, {} notes",
act.state_changes, act.label_changes, act.notes act.state_changes, act.label_changes, act.notes
); );
if let Some(ref first) = act.first_event { if let Some(ref first) = act.first_event {
println!(" First event: {first}"); println!(
" First event: {}",
Theme::dim().render(&to_relative(first))
);
} }
if let Some(ref last) = act.last_event { if let Some(ref last) = act.last_event {
println!(" Last event: {last}"); println!(
" Last event: {}",
Theme::dim().render(&to_relative(last))
);
} }
} }
@@ -1209,26 +1243,22 @@ pub fn print_explain(result: &ExplainResult) {
&& !threads.is_empty() && !threads.is_empty()
{ {
println!( println!(
"\n{} {} ({})", "{}",
Icons::warning(), render::section_divider(&format!("Open Threads ({})", threads.len()))
Theme::bold().render("Open Threads"),
threads.len()
); );
for t in threads { for t in threads {
println!( println!(
" {} by {} ({} notes, last: {})", " {} by {} ({} notes, last: {})",
t.discussion_id, Theme::dim().render(&t.discussion_id),
t.started_by.as_deref().unwrap_or("unknown"), Theme::username().render(&format!(
"@{}",
t.started_by.as_deref().unwrap_or("unknown")
)),
t.note_count, t.note_count,
t.last_note_at Theme::dim().render(&to_relative(&t.last_note_at))
); );
if let Some(ref excerpt) = t.first_note_excerpt { if let Some(ref excerpt) = t.first_note_excerpt {
let preview = if excerpt.len() > 100 { let preview = render::truncate(excerpt, render::flex_width(8, 30));
let b = excerpt.floor_char_boundary(100);
format!("{}...", &excerpt[..b])
} else {
excerpt.clone()
};
// Show first line only in human output // Show first line only in human output
if let Some(line) = preview.lines().next() { if let Some(line) = preview.lines().next() {
println!(" {}", Theme::muted().render(line)); println!(" {}", Theme::muted().render(line));
@@ -1241,14 +1271,21 @@ pub fn print_explain(result: &ExplainResult) {
if let Some(ref related) = result.related if let Some(ref related) = result.related
&& (!related.closing_mrs.is_empty() || !related.related_issues.is_empty()) && (!related.closing_mrs.is_empty() || !related.related_issues.is_empty())
{ {
println!("\n{}", Theme::bold().render("Related")); let total = related.closing_mrs.len() + related.related_issues.len();
println!("{}", render::section_divider(&format!("Related ({total})")));
for mr in &related.closing_mrs { for mr in &related.closing_mrs {
let mr_state = match mr.state.as_str() {
"merged" => Theme::state_merged(),
"closed" => Theme::state_closed(),
"opened" => Theme::state_opened(),
_ => Theme::dim(),
};
println!( println!(
" {} MR !{}{} [{}]", " {} {}{} {}",
Icons::success(), Icons::success(),
mr.iid, Theme::mr_ref().render(&format!("!{}", mr.iid)),
mr.title, render::truncate(&mr.title, render::flex_width(25, 20)),
mr.state mr_state.render(&format!("[{}]", mr.state))
); );
} }
for ri in &related.related_issues { for ri in &related.related_issues {
@@ -1261,13 +1298,19 @@ pub fn print_explain(result: &ExplainResult) {
} else { } else {
"->" "->"
}; };
let (ref_style, ref_prefix) = match ri.entity_type.as_str() {
"issue" => (Theme::issue_ref(), "#"),
"merge_request" => (Theme::mr_ref(), "!"),
_ => (Theme::info(), "#"),
};
println!( println!(
" {} {arrow} {} #{} {}{state_str} ({})", " {arrow} {} {}{state_str} ({})",
Icons::info(), ref_style.render(&format!("{ref_prefix}{}", ri.iid)),
ri.entity_type, render::truncate(
ri.iid,
ri.title.as_deref().unwrap_or("(untitled)"), ri.title.as_deref().unwrap_or("(untitled)"),
ri.reference_type render::flex_width(30, 20)
),
Theme::dim().render(&ri.reference_type)
); );
} }
} }
@@ -1276,26 +1319,25 @@ pub fn print_explain(result: &ExplainResult) {
if let Some(ref excerpt) = result.timeline_excerpt if let Some(ref excerpt) = result.timeline_excerpt
&& !excerpt.events.is_empty() && !excerpt.events.is_empty()
{ {
let truncation_note = if excerpt.truncated { let title = if excerpt.truncated {
format!( format!(
" (showing {} of {})", "Timeline (showing {} of {})",
excerpt.events.len(), excerpt.events.len(),
excerpt.total_events excerpt.total_events
) )
} else { } else {
String::new() format!("Timeline ({})", excerpt.total_events)
}; };
println!( println!("{}", render::section_divider(&title));
"\n{} {}{}",
Icons::info(),
Theme::bold().render("Timeline"),
truncation_note
);
for e in &excerpt.events { for e in &excerpt.events {
let actor_str = e.actor.as_deref().unwrap_or(""); let actor_str = e
.actor
.as_deref()
.map(|a| Theme::username().render(&format!("@{a}")))
.unwrap_or_default();
println!( println!(
" {} {} {} {}", " {} {} {} {}",
Theme::muted().render(&e.timestamp), Theme::muted().render(&to_date(&e.timestamp)),
e.event_type, e.event_type,
actor_str, actor_str,
e.summary e.summary
@@ -1558,14 +1600,13 @@ mod tests {
#[test] #[test]
fn test_truncate_description() { fn test_truncate_description() {
assert_eq!(truncate_description(None, 500), "(no description)"); assert_eq!(truncate_description(None), "(no description)");
assert_eq!(truncate_description(Some(""), 500), "(no description)"); assert_eq!(truncate_description(Some("")), "(no description)");
assert_eq!(truncate_description(Some("short"), 500), "short"); assert_eq!(truncate_description(Some("short")), "short");
let long = "a".repeat(600); let long = "a".repeat(600);
let truncated = truncate_description(Some(&long), 500); let result = truncate_description(Some(&long));
assert!(truncated.ends_with("...")); assert_eq!(result, long); // no truncation — full description preserved
assert!(truncated.len() <= 504); // 500 + "..."
} }
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------

View File

@@ -359,7 +359,7 @@ pub fn print_file_history(result: &FileHistoryResult) {
" {} {} {} {} @{} {} {}", " {} {} {} {} @{} {} {}",
icon, icon,
Theme::accent().render(&format!("!{}", mr.iid)), Theme::accent().render(&format!("!{}", mr.iid)),
render::truncate(&mr.title, 50), render::truncate(&mr.title, render::flex_width(45, 20)),
state_style.render(&mr.state), state_style.render(&mr.state),
mr.author_username, mr.author_username,
date, date,

View File

@@ -359,10 +359,13 @@ pub fn print_list_issues(result: &ListResult) {
} }
headers.extend(["Assignee", "Labels", "Disc", "Updated"]); headers.extend(["Assignee", "Labels", "Disc", "Updated"]);
let mut table = LoreTable::new().headers(&headers).align(0, Align::Right); let mut table = LoreTable::new()
.headers(&headers)
.align(0, Align::Right)
.flex_col(1);
for issue in &result.issues { for issue in &result.issues {
let title = render::truncate(&issue.title, 45); let title = issue.title.clone();
let relative_time = render::format_relative_time_compact(issue.updated_at); let relative_time = render::format_relative_time_compact(issue.updated_at);
let labels = render::format_labels_bare(&issue.labels, 2); let labels = render::format_labels_bare(&issue.labels, 2);
let assignee = format_assignees(&issue.assignees); let assignee = format_assignees(&issue.assignees);

View File

@@ -329,17 +329,18 @@ pub fn print_list_mrs(result: &MrListResult) {
.headers(&[ .headers(&[
"IID", "Title", "State", "Author", "Branches", "Disc", "Updated", "IID", "Title", "State", "Author", "Branches", "Disc", "Updated",
]) ])
.align(0, Align::Right); .align(0, Align::Right)
.flex_col(1);
for mr in &result.mrs { for mr in &result.mrs {
let title = if mr.draft { let title = if mr.draft {
format!("{} {}", Icons::mr_draft(), render::truncate(&mr.title, 42)) format!("{} {}", Icons::mr_draft(), mr.title)
} else { } else {
render::truncate(&mr.title, 45) mr.title.clone()
}; };
let relative_time = render::format_relative_time_compact(mr.updated_at); let relative_time = render::format_relative_time_compact(mr.updated_at);
let branches = format_branches(&mr.target_branch, &mr.source_branch, 25); let branches = format_branches(&mr.target_branch, &mr.source_branch);
let discussions = format_discussions(mr.discussion_count, mr.unresolved_count); let discussions = format_discussions(mr.discussion_count, mr.unresolved_count);
let (icon, style) = match mr.state.as_str() { let (icon, style) = match mr.state.as_str() {
@@ -355,10 +356,7 @@ pub fn print_list_mrs(result: &MrListResult) {
StyledCell::styled(format!("!{}", mr.iid), Theme::info()), StyledCell::styled(format!("!{}", mr.iid), Theme::info()),
StyledCell::plain(title), StyledCell::plain(title),
state_cell, state_cell,
StyledCell::styled( StyledCell::styled(format!("@{}", mr.author_username), Theme::accent()),
format!("@{}", render::truncate(&mr.author_username, 12)),
Theme::accent(),
),
StyledCell::styled(branches, Theme::info()), StyledCell::styled(branches, Theme::info()),
discussions, discussions,
StyledCell::styled(relative_time, Theme::dim()), StyledCell::styled(relative_time, Theme::dim()),

View File

@@ -9,9 +9,7 @@ use crate::core::path_resolver::escape_like as note_escape_like;
use crate::core::project::resolve_project; use crate::core::project::resolve_project;
use crate::core::time::{iso_to_ms, ms_to_iso, parse_since}; use crate::core::time::{iso_to_ms, ms_to_iso, parse_since};
use super::render_helpers::{ use super::render_helpers::{format_note_parent, format_note_path, format_note_type};
format_note_parent, format_note_path, format_note_type, truncate_body,
};
#[derive(Debug, Serialize)] #[derive(Debug, Serialize)]
pub struct NoteListRow { pub struct NoteListRow {
@@ -161,13 +159,14 @@ pub fn print_list_notes(result: &NoteListResult) {
"Parent", "Parent",
"Created", "Created",
]) ])
.align(0, Align::Right); .align(0, Align::Right)
.flex_col(3);
for note in &result.notes { for note in &result.notes {
let body = note let body = note
.body .body
.as_deref() .as_deref()
.map(|b| truncate_body(b, 60)) .map(|b| b.replace('\n', " "))
.unwrap_or_default(); .unwrap_or_default();
let path = format_note_path(note.position_new_path.as_deref(), note.position_new_line); let path = format_note_path(note.position_new_path.as_deref(), note.position_new_line);
let parent = format_note_parent(note.noteable_type.as_deref(), note.parent_iid); let parent = format_note_parent(note.noteable_type.as_deref(), note.parent_iid);
@@ -176,10 +175,7 @@ pub fn print_list_notes(result: &NoteListResult) {
table.add_row(vec![ table.add_row(vec![
StyledCell::styled(note.gitlab_id.to_string(), Theme::info()), StyledCell::styled(note.gitlab_id.to_string(), Theme::info()),
StyledCell::styled( StyledCell::styled(format!("@{}", note.author_username), Theme::accent()),
format!("@{}", render::truncate(&note.author_username, 12)),
Theme::accent(),
),
StyledCell::plain(note_type), StyledCell::plain(note_type),
StyledCell::plain(body), StyledCell::plain(body),
StyledCell::plain(path), StyledCell::plain(path),

View File

@@ -1,4 +1,4 @@
use crate::cli::render::{self, StyledCell, Theme}; use crate::cli::render::{StyledCell, Theme};
pub(crate) fn format_assignees(assignees: &[String]) -> String { pub(crate) fn format_assignees(assignees: &[String]) -> String {
if assignees.is_empty() { if assignees.is_empty() {
@@ -9,7 +9,7 @@ pub(crate) fn format_assignees(assignees: &[String]) -> String {
let shown: Vec<String> = assignees let shown: Vec<String> = assignees
.iter() .iter()
.take(max_shown) .take(max_shown)
.map(|s| format!("@{}", render::truncate(s, 10))) .map(|s| format!("@{s}"))
.collect(); .collect();
let overflow = assignees.len().saturating_sub(max_shown); let overflow = assignees.len().saturating_sub(max_shown);
@@ -34,11 +34,11 @@ pub(crate) fn format_discussions(total: i64, unresolved: i64) -> StyledCell {
} }
} }
pub(crate) fn format_branches(target: &str, source: &str, max_width: usize) -> String { pub(crate) fn format_branches(target: &str, source: &str) -> String {
let full = format!("{} <- {}", target, source); format!("{} <- {}", target, source)
render::truncate(&full, max_width)
} }
#[cfg(test)]
pub(crate) fn truncate_body(body: &str, max_len: usize) -> String { pub(crate) fn truncate_body(body: &str, max_len: usize) -> String {
if body.chars().count() <= max_len { if body.chars().count() <= max_len {
body.to_string() body.to_string()

View File

@@ -946,7 +946,7 @@ fn mentioned_in_finds_mention_on_unassigned_issue() {
); );
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000; let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff).unwrap(); let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff, 0).unwrap();
assert_eq!(results.len(), 1); assert_eq!(results.len(), 1);
assert_eq!(results[0].entity_type, "issue"); assert_eq!(results[0].entity_type, "issue");
assert_eq!(results[0].iid, 42); assert_eq!(results[0].iid, 42);
@@ -964,7 +964,7 @@ fn mentioned_in_excludes_assigned_issue() {
insert_note_at(&conn, 200, disc_id, 1, "bob", false, "hey @alice", t); insert_note_at(&conn, 200, disc_id, 1, "bob", false, "hey @alice", t);
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000; let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff).unwrap(); let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff, 0).unwrap();
assert!(results.is_empty(), "should exclude assigned issues"); assert!(results.is_empty(), "should exclude assigned issues");
} }
@@ -979,7 +979,7 @@ fn mentioned_in_excludes_authored_issue() {
insert_note_at(&conn, 200, disc_id, 1, "bob", false, "hey @alice", t); insert_note_at(&conn, 200, disc_id, 1, "bob", false, "hey @alice", t);
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000; let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff).unwrap(); let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff, 0).unwrap();
assert!(results.is_empty(), "should exclude authored issues"); assert!(results.is_empty(), "should exclude authored issues");
} }
@@ -995,7 +995,7 @@ fn mentioned_in_finds_mention_on_non_authored_mr() {
insert_note_at(&conn, 200, disc_id, 1, "bob", false, "cc @alice", t); insert_note_at(&conn, 200, disc_id, 1, "bob", false, "cc @alice", t);
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000; let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff).unwrap(); let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff, 0).unwrap();
assert_eq!(results.len(), 1); assert_eq!(results.len(), 1);
assert_eq!(results[0].entity_type, "mr"); assert_eq!(results[0].entity_type, "mr");
assert_eq!(results[0].iid, 99); assert_eq!(results[0].iid, 99);
@@ -1012,7 +1012,7 @@ fn mentioned_in_excludes_authored_mr() {
insert_note_at(&conn, 200, disc_id, 1, "bob", false, "@alice thoughts?", t); insert_note_at(&conn, 200, disc_id, 1, "bob", false, "@alice thoughts?", t);
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000; let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff).unwrap(); let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff, 0).unwrap();
assert!(results.is_empty(), "should exclude authored MRs"); assert!(results.is_empty(), "should exclude authored MRs");
} }
@@ -1028,7 +1028,7 @@ fn mentioned_in_excludes_reviewer_mr() {
insert_note_at(&conn, 200, disc_id, 1, "charlie", false, "@alice fyi", t); insert_note_at(&conn, 200, disc_id, 1, "charlie", false, "@alice fyi", t);
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000; let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff).unwrap(); let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff, 0).unwrap();
assert!( assert!(
results.is_empty(), results.is_empty(),
"should exclude MRs where user is reviewer" "should exclude MRs where user is reviewer"
@@ -1052,7 +1052,7 @@ fn mentioned_in_includes_recently_closed_issue() {
insert_note_at(&conn, 200, disc_id, 1, "bob", false, "hey @alice", t); insert_note_at(&conn, 200, disc_id, 1, "bob", false, "hey @alice", t);
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000; let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff).unwrap(); let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff, 0).unwrap();
assert_eq!(results.len(), 1, "recently closed issue should be included"); assert_eq!(results.len(), 1, "recently closed issue should be included");
assert_eq!(results[0].state, "closed"); assert_eq!(results[0].state, "closed");
} }
@@ -1074,7 +1074,7 @@ fn mentioned_in_excludes_old_closed_issue() {
insert_note_at(&conn, 200, disc_id, 1, "bob", false, "hey @alice", t); insert_note_at(&conn, 200, disc_id, 1, "bob", false, "hey @alice", t);
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000; let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff).unwrap(); let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff, 0).unwrap();
assert!(results.is_empty(), "old closed issue should be excluded"); assert!(results.is_empty(), "old closed issue should be excluded");
} }
@@ -1099,7 +1099,7 @@ fn mentioned_in_attention_needs_attention_when_unreplied() {
// alice has NOT replied // alice has NOT replied
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000; let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff).unwrap(); let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff, 0).unwrap();
assert_eq!(results.len(), 1); assert_eq!(results.len(), 1);
assert_eq!(results[0].attention_state, AttentionState::NeedsAttention); assert_eq!(results[0].attention_state, AttentionState::NeedsAttention);
} }
@@ -1126,7 +1126,7 @@ fn mentioned_in_attention_awaiting_when_replied() {
insert_note_at(&conn, 201, disc_id, 1, "alice", false, "looks good", t2); insert_note_at(&conn, 201, disc_id, 1, "alice", false, "looks good", t2);
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000; let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff).unwrap(); let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff, 0).unwrap();
assert_eq!(results.len(), 1); assert_eq!(results.len(), 1);
assert_eq!(results[0].attention_state, AttentionState::AwaitingResponse); assert_eq!(results[0].attention_state, AttentionState::AwaitingResponse);
} }
@@ -1147,7 +1147,7 @@ fn mentioned_in_project_filter() {
insert_note_at(&conn, 201, disc_b, 2, "bob", false, "@alice", t); insert_note_at(&conn, 201, disc_b, 2, "bob", false, "@alice", t);
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000; let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[1], recency_cutoff).unwrap(); let results = query_mentioned_in(&conn, "alice", &[1], recency_cutoff, 0).unwrap();
assert_eq!(results.len(), 1); assert_eq!(results.len(), 1);
assert_eq!(results[0].project_path, "group/repo-a"); assert_eq!(results[0].project_path, "group/repo-a");
} }
@@ -1166,7 +1166,7 @@ fn mentioned_in_deduplicates_multiple_mentions_same_entity() {
insert_note_at(&conn, 201, disc_id, 1, "charlie", false, "@alice +1", t2); insert_note_at(&conn, 201, disc_id, 1, "charlie", false, "@alice +1", t2);
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000; let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff).unwrap(); let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff, 0).unwrap();
assert_eq!(results.len(), 1, "should deduplicate to one entity"); assert_eq!(results.len(), 1, "should deduplicate to one entity");
} }
@@ -1190,10 +1190,47 @@ fn mentioned_in_rejects_false_positive_email() {
); );
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000; let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff).unwrap(); let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff, 0).unwrap();
assert!(results.is_empty(), "email-like text should not match"); assert!(results.is_empty(), "email-like text should not match");
} }
#[test]
fn mentioned_in_excludes_old_mention_on_open_issue() {
let conn = setup_test_db();
insert_project(&conn, 1, "group/repo");
insert_issue(&conn, 10, 1, 42, "someone");
let disc_id = 100;
insert_discussion(&conn, disc_id, 1, None, Some(10));
// Mention from 45 days ago — outside 30-day mention window
let t = now_ms() - 45 * 24 * 3600 * 1000;
insert_note_at(&conn, 200, disc_id, 1, "bob", false, "hey @alice", t);
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let mention_cutoff = now_ms() - 30 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff, mention_cutoff).unwrap();
assert!(
results.is_empty(),
"mentions older than 30 days should be excluded"
);
}
#[test]
fn mentioned_in_includes_recent_mention_on_open_issue() {
let conn = setup_test_db();
insert_project(&conn, 1, "group/repo");
insert_issue(&conn, 10, 1, 42, "someone");
let disc_id = 100;
insert_discussion(&conn, disc_id, 1, None, Some(10));
// Mention from 5 days ago — within 30-day window
let t = now_ms() - 5 * 24 * 3600 * 1000;
insert_note_at(&conn, 200, disc_id, 1, "bob", false, "hey @alice", t);
let recency_cutoff = now_ms() - 7 * 24 * 3600 * 1000;
let mention_cutoff = now_ms() - 30 * 24 * 3600 * 1000;
let results = query_mentioned_in(&conn, "alice", &[], recency_cutoff, mention_cutoff).unwrap();
assert_eq!(results.len(), 1, "recent mentions should be included");
}
// ─── Helper Tests ────────────────────────────────────────────────────────── // ─── Helper Tests ──────────────────────────────────────────────────────────
#[test] #[test]

View File

@@ -27,6 +27,8 @@ const DEFAULT_ACTIVITY_SINCE_DAYS: i64 = 1;
const MS_PER_DAY: i64 = 24 * 60 * 60 * 1000; const MS_PER_DAY: i64 = 24 * 60 * 60 * 1000;
/// Recency window for closed/merged items in the "Mentioned In" section: 7 days. /// Recency window for closed/merged items in the "Mentioned In" section: 7 days.
const RECENCY_WINDOW_MS: i64 = 7 * MS_PER_DAY; const RECENCY_WINDOW_MS: i64 = 7 * MS_PER_DAY;
/// Only show mentions from notes created within this window (30 days).
const MENTION_WINDOW_MS: i64 = 30 * MS_PER_DAY;
/// Resolve the effective username from CLI flag or config. /// Resolve the effective username from CLI flag or config.
/// ///
@@ -151,7 +153,14 @@ pub fn run_me(config: &Config, args: &MeArgs, robot_mode: bool) -> Result<()> {
let mentioned_in = if want_mentions { let mentioned_in = if want_mentions {
let recency_cutoff = crate::core::time::now_ms() - RECENCY_WINDOW_MS; let recency_cutoff = crate::core::time::now_ms() - RECENCY_WINDOW_MS;
query_mentioned_in(&conn, username, &project_ids, recency_cutoff)? let mention_cutoff = crate::core::time::now_ms() - MENTION_WINDOW_MS;
query_mentioned_in(
&conn,
username,
&project_ids,
recency_cutoff,
mention_cutoff,
)?
} else { } else {
Vec::new() Vec::new()
}; };

View File

@@ -849,6 +849,7 @@ fn build_mentioned_in_sql(project_clause: &str) -> String {
LEFT JOIN note_ts_issue nt ON nt.issue_id = ci.id LEFT JOIN note_ts_issue nt ON nt.issue_id = ci.id
WHERE n.is_system = 0 WHERE n.is_system = 0
AND n.author_username != ?1 AND n.author_username != ?1
AND n.created_at > ?3
AND LOWER(n.body) LIKE '%@' || LOWER(?1) || '%' AND LOWER(n.body) LIKE '%@' || LOWER(?1) || '%'
UNION ALL UNION ALL
-- MR mentions (scoped to candidate entities only) -- MR mentions (scoped to candidate entities only)
@@ -862,6 +863,7 @@ fn build_mentioned_in_sql(project_clause: &str) -> String {
LEFT JOIN note_ts_mr nt ON nt.merge_request_id = cm.id LEFT JOIN note_ts_mr nt ON nt.merge_request_id = cm.id
WHERE n.is_system = 0 WHERE n.is_system = 0
AND n.author_username != ?1 AND n.author_username != ?1
AND n.created_at > ?3
AND LOWER(n.body) LIKE '%@' || LOWER(?1) || '%' AND LOWER(n.body) LIKE '%@' || LOWER(?1) || '%'
ORDER BY 6 DESC ORDER BY 6 DESC
LIMIT 500", LIMIT 500",
@@ -871,7 +873,8 @@ fn build_mentioned_in_sql(project_clause: &str) -> String {
/// Query issues and MRs where the user is @mentioned but not assigned/authored/reviewing. /// Query issues and MRs where the user is @mentioned but not assigned/authored/reviewing.
/// ///
/// Includes open items unconditionally, plus recently-closed/merged items /// Includes open items unconditionally, plus recently-closed/merged items
/// (where `updated_at > recency_cutoff_ms`). /// (where `updated_at > recency_cutoff_ms`). Only considers mentions in notes
/// created after `mention_cutoff_ms` (typically 30 days ago).
/// ///
/// Returns deduplicated results sorted by attention priority then recency. /// Returns deduplicated results sorted by attention priority then recency.
pub fn query_mentioned_in( pub fn query_mentioned_in(
@@ -879,14 +882,16 @@ pub fn query_mentioned_in(
username: &str, username: &str,
project_ids: &[i64], project_ids: &[i64],
recency_cutoff_ms: i64, recency_cutoff_ms: i64,
mention_cutoff_ms: i64,
) -> Result<Vec<MeMention>> { ) -> Result<Vec<MeMention>> {
let project_clause = build_project_clause_at("p.id", project_ids, 3); let project_clause = build_project_clause_at("p.id", project_ids, 4);
// Materialized CTEs avoid pathological query plans for project-scoped mentions. // Materialized CTEs avoid pathological query plans for project-scoped mentions.
let sql = build_mentioned_in_sql(&project_clause); let sql = build_mentioned_in_sql(&project_clause);
let mut params: Vec<Box<dyn rusqlite::types::ToSql>> = Vec::new(); let mut params: Vec<Box<dyn rusqlite::types::ToSql>> = Vec::new();
params.push(Box::new(username.to_string())); params.push(Box::new(username.to_string()));
params.push(Box::new(recency_cutoff_ms)); params.push(Box::new(recency_cutoff_ms));
params.push(Box::new(mention_cutoff_ms));
for &pid in project_ids { for &pid in project_ids {
params.push(Box::new(pid)); params.push(Box::new(pid));
} }

View File

@@ -8,11 +8,9 @@ use super::types::{
// ─── Layout Helpers ───────────────────────────────────────────────────────── // ─── Layout Helpers ─────────────────────────────────────────────────────────
/// Compute the title/summary column width for a section given its fixed overhead. /// Compute the title/summary column width for a section given its fixed overhead.
/// Returns a width clamped to [20, 80]. /// Returns a terminal-aware width with a minimum of 20.
fn title_width(overhead: usize) -> usize { fn title_width(overhead: usize) -> usize {
render::terminal_width() render::flex_width(overhead, 20)
.saturating_sub(overhead)
.clamp(20, 80)
} }
// ─── Glyph Mode Helper ────────────────────────────────────────────────────── // ─── Glyph Mode Helper ──────────────────────────────────────────────────────
@@ -416,13 +414,12 @@ pub fn print_activity_section(events: &[MeActivityEvent], single_project: bool)
// Columns: badge | ref | summary | actor | time // Columns: badge | ref | summary | actor | time
// Table handles alignment, padding, and truncation automatically. // Table handles alignment, padding, and truncation automatically.
let summary_max = title_width(46);
let mut table = Table::new() let mut table = Table::new()
.columns(5) .columns(5)
.indent(4) .indent(4)
.align(1, Align::Right) .align(1, Align::Right)
.align(4, Align::Right) .align(4, Align::Right)
.max_width(2, summary_max); .flex_col(2);
for event in events { for event in events {
let badge_label = activity_badge_label(&event.event_type); let badge_label = activity_badge_label(&event.event_type);
@@ -508,7 +505,8 @@ pub fn print_activity_section(events: &[MeActivityEvent], single_project: bool)
if let Some(preview) = &event.body_preview if let Some(preview) = &event.body_preview
&& !preview.is_empty() && !preview.is_empty()
{ {
let truncated = render::truncate(preview, 60); let clean = preview.replace('\n', " ");
let truncated = render::truncate(&clean, render::flex_width(8, 30));
println!(" {}", Theme::dim().render(&format!("\"{truncated}\""))); println!(" {}", Theme::dim().render(&format!("\"{truncated}\"")));
} }
} }
@@ -576,12 +574,11 @@ pub fn print_since_last_check_section(since: &SinceLastCheck, single_project: bo
} }
// Sub-events as indented rows // Sub-events as indented rows
let summary_max = title_width(42);
let mut table = Table::new() let mut table = Table::new()
.columns(3) .columns(3)
.indent(6) .indent(6)
.align(2, Align::Right) .align(2, Align::Right)
.max_width(1, summary_max); .flex_col(1);
for event in &group.events { for event in &group.events {
let badge = activity_badge_label(&event.event_type); let badge = activity_badge_label(&event.event_type);
@@ -610,7 +607,8 @@ pub fn print_since_last_check_section(since: &SinceLastCheck, single_project: bo
if let Some(preview) = &event.body_preview if let Some(preview) = &event.body_preview
&& !preview.is_empty() && !preview.is_empty()
{ {
let truncated = render::truncate(preview, 60); let clean = preview.replace('\n', " ");
let truncated = render::truncate(&clean, render::flex_width(10, 30));
println!( println!(
" {}", " {}",
Theme::dim().render(&format!("\"{truncated}\"")) Theme::dim().render(&format!("\"{truncated}\""))

View File

@@ -479,4 +479,107 @@ mod tests {
assert_eq!(value["data"]["cursor_reset"], serde_json::json!(true)); assert_eq!(value["data"]["cursor_reset"], serde_json::json!(true));
assert_eq!(value["meta"]["elapsed_ms"], serde_json::json!(17)); assert_eq!(value["meta"]["elapsed_ms"], serde_json::json!(17));
} }
/// Integration test: full envelope serialization includes gitlab_base_url in meta.
/// Guards against drift where the wiring from run_me -> print_me_json -> JSON
/// could silently lose the base URL field.
#[test]
fn me_envelope_includes_gitlab_base_url_in_meta() {
let dashboard = MeDashboard {
username: "testuser".to_string(),
since_ms: Some(1_700_000_000_000),
summary: MeSummary {
project_count: 1,
open_issue_count: 0,
authored_mr_count: 0,
reviewing_mr_count: 0,
mentioned_in_count: 0,
needs_attention_count: 0,
},
open_issues: vec![],
open_mrs_authored: vec![],
reviewing_mrs: vec![],
mentioned_in: vec![],
activity: vec![],
since_last_check: None,
};
let envelope = MeJsonEnvelope {
ok: true,
data: MeDataJson::from_dashboard(&dashboard),
meta: RobotMeta::with_base_url(42, "https://gitlab.example.com"),
};
let value = serde_json::to_value(&envelope).unwrap();
assert_eq!(value["ok"], serde_json::json!(true));
assert_eq!(value["meta"]["elapsed_ms"], serde_json::json!(42));
assert_eq!(
value["meta"]["gitlab_base_url"],
serde_json::json!("https://gitlab.example.com")
);
}
/// Verify activity events carry the fields needed for URL construction
/// (entity_type, entity_iid, project) so consumers can combine with
/// meta.gitlab_base_url to build links.
#[test]
fn activity_event_carries_url_construction_fields() {
let dashboard = MeDashboard {
username: "testuser".to_string(),
since_ms: Some(1_700_000_000_000),
summary: MeSummary {
project_count: 1,
open_issue_count: 0,
authored_mr_count: 0,
reviewing_mr_count: 0,
mentioned_in_count: 0,
needs_attention_count: 0,
},
open_issues: vec![],
open_mrs_authored: vec![],
reviewing_mrs: vec![],
mentioned_in: vec![],
activity: vec![MeActivityEvent {
timestamp: 1_700_000_000_000,
event_type: ActivityEventType::Note,
entity_type: "mr".to_string(),
entity_iid: 99,
project_path: "group/repo".to_string(),
actor: Some("alice".to_string()),
is_own: false,
summary: "Commented on MR".to_string(),
body_preview: None,
}],
since_last_check: None,
};
let envelope = MeJsonEnvelope {
ok: true,
data: MeDataJson::from_dashboard(&dashboard),
meta: RobotMeta::with_base_url(0, "https://gitlab.example.com"),
};
let value = serde_json::to_value(&envelope).unwrap();
let event = &value["data"]["activity"][0];
// These three fields + meta.gitlab_base_url = complete URL
assert_eq!(event["entity_type"], "mr");
assert_eq!(event["entity_iid"], 99);
assert_eq!(event["project"], "group/repo");
// Consumer constructs: https://gitlab.example.com/group/repo/-/merge_requests/99
let base = value["meta"]["gitlab_base_url"].as_str().unwrap();
let project = event["project"].as_str().unwrap();
let entity_path = match event["entity_type"].as_str().unwrap() {
"issue" => "issues",
"mr" => "merge_requests",
other => panic!("unexpected entity_type: {other}"),
};
let iid = event["entity_iid"].as_i64().unwrap();
let url = format!("{base}/{project}/-/{entity_path}/{iid}");
assert_eq!(
url,
"https://gitlab.example.com/group/repo/-/merge_requests/99"
);
}
} }

View File

@@ -1,6 +1,6 @@
use std::collections::HashMap; use std::collections::HashMap;
use crate::cli::render::Theme; use crate::cli::render::{self, Theme};
use serde::Serialize; use serde::Serialize;
use crate::Config; use crate::Config;
@@ -20,11 +20,16 @@ use crate::search::{
pub struct SearchResultDisplay { pub struct SearchResultDisplay {
pub document_id: i64, pub document_id: i64,
pub source_type: String, pub source_type: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub source_entity_iid: Option<i64>,
pub title: String, pub title: String,
pub url: Option<String>, pub url: Option<String>,
pub author: Option<String>, pub author: Option<String>,
pub created_at: Option<String>, pub created_at: Option<String>,
pub updated_at: Option<String>, pub updated_at: Option<String>,
/// Raw epoch ms for human rendering; not serialized to JSON.
#[serde(skip)]
pub updated_at_ms: Option<i64>,
pub project_path: String, pub project_path: String,
pub labels: Vec<String>, pub labels: Vec<String>,
pub paths: Vec<String>, pub paths: Vec<String>,
@@ -216,11 +221,13 @@ pub async fn run_search(
results.push(SearchResultDisplay { results.push(SearchResultDisplay {
document_id: row.document_id, document_id: row.document_id,
source_type: row.source_type.clone(), source_type: row.source_type.clone(),
source_entity_iid: row.source_entity_iid,
title: row.title.clone().unwrap_or_default(), title: row.title.clone().unwrap_or_default(),
url: row.url.clone(), url: row.url.clone(),
author: row.author.clone(), author: row.author.clone(),
created_at: row.created_at.map(ms_to_iso), created_at: row.created_at.map(ms_to_iso),
updated_at: row.updated_at.map(ms_to_iso), updated_at: row.updated_at.map(ms_to_iso),
updated_at_ms: row.updated_at,
project_path: row.project_path.clone(), project_path: row.project_path.clone(),
labels: row.labels.clone(), labels: row.labels.clone(),
paths: row.paths.clone(), paths: row.paths.clone(),
@@ -242,6 +249,7 @@ pub async fn run_search(
struct HydratedRow { struct HydratedRow {
document_id: i64, document_id: i64,
source_type: String, source_type: String,
source_entity_iid: Option<i64>,
title: Option<String>, title: Option<String>,
url: Option<String>, url: Option<String>,
author: Option<String>, author: Option<String>,
@@ -268,7 +276,26 @@ fn hydrate_results(conn: &rusqlite::Connection, document_ids: &[i64]) -> Result<
(SELECT json_group_array(dl.label_name) (SELECT json_group_array(dl.label_name)
FROM document_labels dl WHERE dl.document_id = d.id) AS labels_json, FROM document_labels dl WHERE dl.document_id = d.id) AS labels_json,
(SELECT json_group_array(dp.path) (SELECT json_group_array(dp.path)
FROM document_paths dp WHERE dp.document_id = d.id) AS paths_json FROM document_paths dp WHERE dp.document_id = d.id) AS paths_json,
CASE d.source_type
WHEN 'issue' THEN
(SELECT i.iid FROM issues i WHERE i.id = d.source_id)
WHEN 'merge_request' THEN
(SELECT m.iid FROM merge_requests m WHERE m.id = d.source_id)
WHEN 'discussion' THEN
(SELECT COALESCE(
(SELECT i.iid FROM issues i WHERE i.id = disc.issue_id),
(SELECT m.iid FROM merge_requests m WHERE m.id = disc.merge_request_id)
) FROM discussions disc WHERE disc.id = d.source_id)
WHEN 'note' THEN
(SELECT COALESCE(
(SELECT i.iid FROM issues i WHERE i.id = disc.issue_id),
(SELECT m.iid FROM merge_requests m WHERE m.id = disc.merge_request_id)
) FROM notes n
JOIN discussions disc ON disc.id = n.discussion_id
WHERE n.id = d.source_id)
ELSE NULL
END AS source_entity_iid
FROM json_each(?1) AS j FROM json_each(?1) AS j
JOIN documents d ON d.id = j.value JOIN documents d ON d.id = j.value
JOIN projects p ON p.id = d.project_id JOIN projects p ON p.id = d.project_id
@@ -293,6 +320,7 @@ fn hydrate_results(conn: &rusqlite::Connection, document_ids: &[i64]) -> Result<
project_path: row.get(8)?, project_path: row.get(8)?,
labels: parse_json_array(&labels_json), labels: parse_json_array(&labels_json),
paths: parse_json_array(&paths_json), paths: parse_json_array(&paths_json),
source_entity_iid: row.get(11)?,
}) })
})? })?
.collect::<std::result::Result<Vec<_>, _>>()?; .collect::<std::result::Result<Vec<_>, _>>()?;
@@ -309,6 +337,96 @@ fn parse_json_array(json: &str) -> Vec<String> {
.collect() .collect()
} }
/// Collapse newlines and runs of whitespace in a snippet into single spaces.
///
/// Document `content_text` includes multi-line metadata (Project:, URL:, Labels:, etc.).
/// FTS5 snippet() preserves these newlines, causing unindented lines when rendered.
fn collapse_newlines(s: &str) -> String {
let mut result = String::with_capacity(s.len());
let mut prev_was_space = false;
for c in s.chars() {
if c.is_whitespace() {
if !prev_was_space {
result.push(' ');
prev_was_space = true;
}
} else {
result.push(c);
prev_was_space = false;
}
}
result
}
/// Truncate a snippet to `max_visible` visible characters, respecting `<mark>` tag boundaries.
///
/// Counts only visible text (not tags) toward the limit, and ensures we never cut
/// inside a `<mark>...</mark>` pair (which would break `render_snippet` highlighting).
fn truncate_snippet(snippet: &str, max_visible: usize) -> String {
if max_visible < 4 {
return snippet.to_string();
}
let mut visible_count = 0;
let mut result = String::new();
let mut remaining = snippet;
while !remaining.is_empty() {
if let Some(start) = remaining.find("<mark>") {
// Count visible chars before the tag
let before = &remaining[..start];
let before_len = before.chars().count();
if visible_count + before_len >= max_visible.saturating_sub(3) {
// Truncate within the pre-tag text
let take = max_visible.saturating_sub(3).saturating_sub(visible_count);
let truncated: String = before.chars().take(take).collect();
result.push_str(&truncated);
result.push_str("...");
return result;
}
result.push_str(before);
visible_count += before_len;
// Find matching </mark>
let after_open = &remaining[start + 6..];
if let Some(end) = after_open.find("</mark>") {
let highlighted = &after_open[..end];
let hl_len = highlighted.chars().count();
if visible_count + hl_len >= max_visible.saturating_sub(3) {
// Truncate within the highlighted text
let take = max_visible.saturating_sub(3).saturating_sub(visible_count);
let truncated: String = highlighted.chars().take(take).collect();
result.push_str("<mark>");
result.push_str(&truncated);
result.push_str("</mark>...");
return result;
}
result.push_str(&remaining[start..start + 6 + end + 7]);
visible_count += hl_len;
remaining = &after_open[end + 7..];
} else {
// Unclosed <mark> — treat rest as plain text
result.push_str(&remaining[start..]);
break;
}
} else {
// No more tags — handle remaining plain text
let rest_len = remaining.chars().count();
if visible_count + rest_len > max_visible && max_visible > 3 {
let take = max_visible.saturating_sub(3).saturating_sub(visible_count);
let truncated: String = remaining.chars().take(take).collect();
result.push_str(&truncated);
result.push_str("...");
return result;
}
result.push_str(remaining);
break;
}
}
result
}
/// Render FTS snippet with `<mark>` tags as terminal highlight style. /// Render FTS snippet with `<mark>` tags as terminal highlight style.
fn render_snippet(snippet: &str) -> String { fn render_snippet(snippet: &str) -> String {
let mut result = String::new(); let mut result = String::new();
@@ -326,7 +444,7 @@ fn render_snippet(snippet: &str) -> String {
result result
} }
pub fn print_search_results(response: &SearchResponse) { pub fn print_search_results(response: &SearchResponse, explain: bool) {
if !response.warnings.is_empty() { if !response.warnings.is_empty() {
for w in &response.warnings { for w in &response.warnings {
eprintln!("{} {}", Theme::warning().render("Warning:"), w); eprintln!("{} {}", Theme::warning().render("Warning:"), w);
@@ -341,11 +459,13 @@ pub fn print_search_results(response: &SearchResponse) {
return; return;
} }
// Phase 6: section divider header
println!( println!(
"\n {} results for '{}' {}", "{}",
Theme::bold().render(&response.total_results.to_string()), render::section_divider(&format!(
Theme::bold().render(&response.query), "{} results for '{}' {}",
Theme::muted().render(&response.mode) response.total_results, response.query, response.mode
))
); );
for (i, result) in response.results.iter().enumerate() { for (i, result) in response.results.iter().enumerate() {
@@ -359,22 +479,75 @@ pub fn print_search_results(response: &SearchResponse) {
_ => Theme::muted().render(&format!("{:>5}", &result.source_type)), _ => Theme::muted().render(&format!("{:>5}", &result.source_type)),
}; };
// Title line: rank, type badge, title // Phase 1: entity ref (e.g. #42 or !99)
println!( let entity_ref = result
" {:>3}. {} {}", .source_entity_iid
Theme::muted().render(&(i + 1).to_string()), .map(|iid| match result.source_type.as_str() {
type_badge, "issue" | "discussion" | "note" => Theme::issue_ref().render(&format!("#{iid}")),
Theme::bold().render(&result.title) "merge_request" => Theme::mr_ref().render(&format!("!{iid}")),
); _ => String::new(),
});
// Metadata: project, author, labels — compact middle-dot line // Phase 3: relative time
let time_str = result
.updated_at_ms
.map(|ms| Theme::dim().render(&render::format_relative_time_compact(ms)));
// Phase 2: build prefix, compute indent from its visible width
let prefix = format!(" {:>3}. {} ", i + 1, type_badge);
let indent = " ".repeat(render::visible_width(&prefix));
// Title line: rank, type badge, entity ref, title, relative time
let mut title_line = prefix;
if let Some(ref eref) = entity_ref {
title_line.push_str(eref);
title_line.push_str(" ");
}
title_line.push_str(&Theme::bold().render(&result.title));
if let Some(ref time) = time_str {
title_line.push_str(" ");
title_line.push_str(time);
}
println!("{title_line}");
// Metadata: project, author — compact middle-dot line
let sep = Theme::muted().render(" \u{b7} "); let sep = Theme::muted().render(" \u{b7} ");
let mut meta_parts: Vec<String> = Vec::new(); let mut meta_parts: Vec<String> = Vec::new();
meta_parts.push(Theme::muted().render(&result.project_path)); meta_parts.push(Theme::muted().render(&result.project_path));
if let Some(ref author) = result.author { if let Some(ref author) = result.author {
meta_parts.push(Theme::username().render(&format!("@{author}"))); meta_parts.push(Theme::username().render(&format!("@{author}")));
} }
if !result.labels.is_empty() { println!("{indent}{}", meta_parts.join(&sep));
// Phase 5: limit snippet to ~2 terminal lines.
// First collapse newlines — content_text includes multi-line metadata
// (Project:, URL:, Labels:, etc.) that would print at column 0.
let collapsed = collapse_newlines(&result.snippet);
// Truncate based on visible text length (excluding <mark></mark> tags)
// to avoid cutting inside a highlight tag pair.
let max_snippet_width =
render::terminal_width().saturating_sub(render::visible_width(&indent));
let max_snippet_chars = max_snippet_width.saturating_mul(2);
let snippet = truncate_snippet(&collapsed, max_snippet_chars);
let rendered = render_snippet(&snippet);
println!("{indent}{rendered}");
if let Some(ref explain_data) = result.explain {
let mut explain_line = format!(
"{indent}{} vec={} fts={} rrf={:.4}",
Theme::accent().render("explain"),
explain_data
.vector_rank
.map(|r| r.to_string())
.unwrap_or_else(|| "-".into()),
explain_data
.fts_rank
.map(|r| r.to_string())
.unwrap_or_else(|| "-".into()),
explain_data.rrf_score
);
// Phase 5: labels shown only in explain mode
if explain && !result.labels.is_empty() {
let label_str = if result.labels.len() <= 3 { let label_str = if result.labels.len() <= 3 {
result.labels.join(", ") result.labels.join(", ")
} else { } else {
@@ -384,27 +557,26 @@ pub fn print_search_results(response: &SearchResponse) {
result.labels.len() - 2 result.labels.len() - 2
) )
}; };
meta_parts.push(Theme::muted().render(&label_str)); explain_line.push_str(&format!(" {}", Theme::muted().render(&label_str)));
}
println!("{explain_line}");
}
} }
println!(" {}", meta_parts.join(&sep));
// Snippet with highlight styling // Phase 4: drill-down hint footer
let rendered = render_snippet(&result.snippet); if let Some(first) = response.results.first()
println!(" {rendered}"); && let Some(iid) = first.source_entity_iid
{
if let Some(ref explain) = result.explain { let cmd = match first.source_type.as_str() {
"issue" | "discussion" | "note" => Some(format!("lore issues {iid}")),
"merge_request" => Some(format!("lore mrs {iid}")),
_ => None,
};
if let Some(cmd) = cmd {
println!( println!(
" {} vec={} fts={} rrf={:.4}", "\n {} {}",
Theme::accent().render("explain"), Theme::dim().render("Tip:"),
explain Theme::dim().render(&format!("{cmd} for details"))
.vector_rank
.map(|r| r.to_string())
.unwrap_or_else(|| "-".into()),
explain
.fts_rank
.map(|r| r.to_string())
.unwrap_or_else(|| "-".into()),
explain.rrf_score
); );
} }
} }
@@ -434,7 +606,13 @@ pub fn print_search_results_json(
data: response, data: response,
meta: SearchMeta { elapsed_ms }, meta: SearchMeta { elapsed_ms },
}; };
let mut value = serde_json::to_value(&output).unwrap(); let mut value = match serde_json::to_value(&output) {
Ok(v) => v,
Err(e) => {
eprintln!("Error serializing search response: {e}");
return;
}
};
if let Some(f) = fields { if let Some(f) = fields {
let expanded = crate::cli::robot::expand_fields_preset(f, "search"); let expanded = crate::cli::robot::expand_fields_preset(f, "search");
crate::cli::robot::filter_fields(&mut value, "results", &expanded); crate::cli::robot::filter_fields(&mut value, "results", &expanded);
@@ -444,3 +622,89 @@ pub fn print_search_results_json(
Err(e) => eprintln!("Error serializing to JSON: {e}"), Err(e) => eprintln!("Error serializing to JSON: {e}"),
} }
} }
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn truncate_snippet_short_text_unchanged() {
let s = "hello world";
assert_eq!(truncate_snippet(s, 100), "hello world");
}
#[test]
fn truncate_snippet_plain_text_truncated() {
let s = "this is a long string that exceeds the limit";
let result = truncate_snippet(s, 20);
assert!(result.ends_with("..."), "got: {result}");
// Visible chars should be <= 20
assert!(result.chars().count() <= 20, "got: {result}");
}
#[test]
fn truncate_snippet_preserves_mark_tags() {
let s = "some text <mark>keyword</mark> and more text here that is long";
let result = truncate_snippet(s, 30);
// Should not cut inside a <mark> pair
let open_count = result.matches("<mark>").count();
let close_count = result.matches("</mark>").count();
assert_eq!(open_count, close_count, "unbalanced tags in: {result}");
}
#[test]
fn truncate_snippet_cuts_before_mark_tag() {
let s = "a]very long prefix that exceeds the limit <mark>word</mark>";
let result = truncate_snippet(s, 15);
assert!(result.ends_with("..."), "got: {result}");
// The <mark> tag should not appear since we truncated before reaching it
assert!(
!result.contains("<mark>"),
"should not include tag: {result}"
);
}
#[test]
fn truncate_snippet_does_not_count_tags_as_visible() {
// With tags, raw length is 42 chars. Without tags, visible is 29.
let s = "prefix <mark>keyword</mark> suffix text";
// If max_visible = 35, the visible text (29 chars) fits — should NOT truncate
let result = truncate_snippet(s, 35);
assert_eq!(result, s, "should not truncate when visible text fits");
}
#[test]
fn truncate_snippet_small_limit_returns_as_is() {
let s = "text <mark>x</mark>";
// Very small limit should return as-is (guard clause)
assert_eq!(truncate_snippet(s, 3), s);
}
#[test]
fn collapse_newlines_flattens_multiline_metadata() {
let s = "[[Issue]] #4018: Remove math.js\nProject: vs/typescript-code\nURL: https://example.com\nLabels: []";
let result = collapse_newlines(s);
assert!(
!result.contains('\n'),
"should not contain newlines: {result}"
);
assert_eq!(
result,
"[[Issue]] #4018: Remove math.js Project: vs/typescript-code URL: https://example.com Labels: []"
);
}
#[test]
fn collapse_newlines_preserves_mark_tags() {
let s = "first line\n<mark>keyword</mark>\nsecond line";
let result = collapse_newlines(s);
assert_eq!(result, "first line <mark>keyword</mark> second line");
}
#[test]
fn collapse_newlines_collapses_runs_of_whitespace() {
let s = "a \n\n b\t\tc";
let result = collapse_newlines(s);
assert_eq!(result, "a b c");
}
}

View File

@@ -235,8 +235,9 @@ fn print_timeline_event(event: &TimelineEvent) {
.unwrap_or_default(); .unwrap_or_default();
let expanded_marker = if event.is_seed { "" } else { " [expanded]" }; let expanded_marker = if event.is_seed { "" } else { " [expanded]" };
let summary = render::truncate(&event.summary, 50); let summary_width = render::flex_width(40, 20);
println!("{date} {tag} {entity_icon}{entity_ref:7} {summary:50} {actor}{expanded_marker}"); let summary = render::truncate(&event.summary, summary_width);
println!("{date} {tag} {entity_icon}{entity_ref:7} {summary} {actor}{expanded_marker}");
// Show snippet for evidence notes // Show snippet for evidence notes
if let TimelineEventType::NoteEvidence { snippet, .. } = &event.event_type if let TimelineEventType::NoteEvidence { snippet, .. } = &event.event_type

View File

@@ -263,7 +263,7 @@ pub(super) fn print_active_human(r: &ActiveResult, project_path: Option<&str>) {
println!( println!(
" {} {} {} {} notes {}", " {} {} {} {} notes {}",
Theme::info().render(&format!("{prefix}{}", disc.entity_iid)), Theme::info().render(&format!("{prefix}{}", disc.entity_iid)),
render::truncate(&disc.entity_title, 40), render::truncate(&disc.entity_title, render::flex_width(30, 20)),
Theme::dim().render(&render::format_relative_time(disc.last_note_at)), Theme::dim().render(&render::format_relative_time(disc.last_note_at)),
disc.note_count, disc.note_count,
Theme::dim().render(&disc.project_path), Theme::dim().render(&disc.project_path),

View File

@@ -769,11 +769,12 @@ pub(super) fn print_expert_human(r: &ExpertResult, project_path: Option<&str>) {
} else { } else {
String::new() String::new()
}; };
let title_budget = render::flex_width(55, 20);
println!( println!(
" {:<3} {:<30} {:>30} {:>10} {}", " {:<3} {} {} {:>10} {}",
Theme::dim().render(&d.role), Theme::dim().render(&d.role),
d.mr_ref, d.mr_ref,
render::truncate(&format!("\"{}\"", d.title), 30), render::truncate(&format!("\"{}\"", d.title), title_budget),
notes_str, notes_str,
Theme::dim().render(&render::format_relative_time(d.last_activity_ms)), Theme::dim().render(&render::format_relative_time(d.last_activity_ms)),
); );

View File

@@ -217,7 +217,7 @@ pub(super) fn print_workload_human(r: &WorkloadResult) {
println!( println!(
" {} {} {}", " {} {} {}",
Theme::info().render(&item.ref_), Theme::info().render(&item.ref_),
render::truncate(&item.title, 40), render::truncate(&item.title, render::flex_width(25, 20)),
Theme::dim().render(&render::format_relative_time(item.updated_at)), Theme::dim().render(&render::format_relative_time(item.updated_at)),
); );
} }
@@ -239,7 +239,7 @@ pub(super) fn print_workload_human(r: &WorkloadResult) {
println!( println!(
" {} {}{} {}", " {} {}{} {}",
Theme::info().render(&mr.ref_), Theme::info().render(&mr.ref_),
render::truncate(&mr.title, 35), render::truncate(&mr.title, render::flex_width(33, 20)),
Theme::dim().render(draft), Theme::dim().render(draft),
Theme::dim().render(&render::format_relative_time(mr.updated_at)), Theme::dim().render(&render::format_relative_time(mr.updated_at)),
); );
@@ -266,7 +266,7 @@ pub(super) fn print_workload_human(r: &WorkloadResult) {
println!( println!(
" {} {}{} {}", " {} {}{} {}",
Theme::info().render(&mr.ref_), Theme::info().render(&mr.ref_),
render::truncate(&mr.title, 30), render::truncate(&mr.title, render::flex_width(40, 20)),
Theme::dim().render(&author), Theme::dim().render(&author),
Theme::dim().render(&render::format_relative_time(mr.updated_at)), Theme::dim().render(&render::format_relative_time(mr.updated_at)),
); );
@@ -292,7 +292,7 @@ pub(super) fn print_workload_human(r: &WorkloadResult) {
" {} {} {} {}", " {} {} {} {}",
Theme::dim().render(&disc.entity_type), Theme::dim().render(&disc.entity_type),
Theme::info().render(&disc.ref_), Theme::info().render(&disc.ref_),
render::truncate(&disc.entity_title, 35), render::truncate(&disc.entity_title, render::flex_width(30, 20)),
Theme::dim().render(&render::format_relative_time(disc.last_note_at)), Theme::dim().render(&render::format_relative_time(disc.last_note_at)),
); );
} }

View File

@@ -569,6 +569,32 @@ pub fn terminal_width() -> usize {
80 80
} }
/// Strip ANSI escape codes (SGR sequences) from a string.
pub fn strip_ansi(s: &str) -> String {
let mut out = String::with_capacity(s.len());
let mut chars = s.chars();
while let Some(c) = chars.next() {
if c == '\x1b' {
// Consume `[`, then digits/semicolons, then the final letter
if chars.next() == Some('[') {
for c in chars.by_ref() {
if c.is_ascii_alphabetic() {
break;
}
}
}
} else {
out.push(c);
}
}
out
}
/// Compute the visible width of a string that may contain ANSI escape sequences.
pub fn visible_width(s: &str) -> usize {
strip_ansi(s).chars().count()
}
/// Truncate a string to `max` characters, appending "..." if truncated. /// Truncate a string to `max` characters, appending "..." if truncated.
pub fn truncate(s: &str, max: usize) -> String { pub fn truncate(s: &str, max: usize) -> String {
if max < 4 { if max < 4 {
@@ -593,6 +619,12 @@ pub fn truncate_pad(s: &str, width: usize) -> String {
} }
} }
/// Compute available width for a flexible field given overhead chars.
/// Returns `terminal_width - overhead`, clamped to `[min, terminal_width]`.
pub fn flex_width(overhead: usize, min: usize) -> usize {
terminal_width().saturating_sub(overhead).max(min)
}
/// Word-wrap text to `width`, prepending `indent` to continuation lines. /// Word-wrap text to `width`, prepending `indent` to continuation lines.
/// Returns a single string with embedded newlines. /// Returns a single string with embedded newlines.
pub fn wrap_indent(text: &str, width: usize, indent: &str) -> String { pub fn wrap_indent(text: &str, width: usize, indent: &str) -> String {
@@ -785,6 +817,7 @@ pub struct Table {
rows: Vec<Vec<StyledCell>>, rows: Vec<Vec<StyledCell>>,
alignments: Vec<Align>, alignments: Vec<Align>,
max_widths: Vec<Option<usize>>, max_widths: Vec<Option<usize>>,
flex_col_idx: Option<usize>,
col_count: usize, col_count: usize,
indent: usize, indent: usize,
} }
@@ -838,6 +871,14 @@ impl Table {
self self
} }
/// Designate one column as flexible: it absorbs remaining terminal width
/// after fixed-width columns are sized. Replaces both `max_width()` constraints
/// and pre-truncation for that column.
pub fn flex_col(mut self, col: usize) -> Self {
self.flex_col_idx = Some(col);
self
}
/// Render the table to a string. /// Render the table to a string.
pub fn render(&self) -> String { pub fn render(&self) -> String {
let col_count = self.col_count; let col_count = self.col_count;
@@ -863,15 +904,35 @@ impl Table {
} }
} }
// Apply max_width constraints // Apply max_width constraints (for non-flex columns)
for (i, max_w) in self.max_widths.iter().enumerate() { for (i, max_w) in self.max_widths.iter().enumerate() {
if let Some(max) = max_w if let Some(max) = max_w
&& i < widths.len() && i < widths.len()
&& self.flex_col_idx != Some(i)
{ {
widths[i] = widths[i].min(*max); widths[i] = widths[i].min(*max);
} }
} }
// Apply flex_col: the flex column absorbs remaining terminal width
if let Some(fc) = self.flex_col_idx
&& fc < widths.len()
{
let gap_total = gap.len() * col_count.saturating_sub(1);
let fixed_sum: usize = widths
.iter()
.enumerate()
.filter(|(i, _)| *i != fc)
.map(|(_, w)| w)
.sum::<usize>()
+ gap_total
+ self.indent;
let available = terminal_width().saturating_sub(fixed_sum);
let natural = widths[fc];
let min_flex = 20.min(natural);
widths[fc] = available.clamp(min_flex, natural);
}
let mut out = String::new(); let mut out = String::new();
// Header row + separator (only when headers are set) // Header row + separator (only when headers are set)
@@ -1319,6 +1380,67 @@ mod tests {
assert!(plain.contains("Bob"), "missing Bob: {plain}"); assert!(plain.contains("Bob"), "missing Bob: {plain}");
} }
#[test]
fn table_flex_col_absorbs_remaining_width() {
// Simulate a narrow terminal by using COLUMNS env
let saved = std::env::var("COLUMNS").ok();
unsafe { std::env::set_var("COLUMNS", "60") };
let mut table = Table::new().headers(&["ID", "Title", "State"]).flex_col(1);
table.add_row(vec![
StyledCell::plain("1"),
StyledCell::plain(
"A very long title that would normally extend beyond the terminal width",
),
StyledCell::plain("open"),
]);
let result = table.render();
let plain = strip_ansi(&result);
// The title should be truncated (flex col constrains it)
assert!(
plain.contains("..."),
"expected flex col truncation in: {plain}"
);
// The full title should NOT appear
assert!(
!plain.contains("beyond the terminal width"),
"flex col should have truncated title: {plain}"
);
// Restore
match saved {
Some(v) => unsafe { std::env::set_var("COLUMNS", v) },
None => unsafe { std::env::remove_var("COLUMNS") },
}
}
#[test]
fn table_flex_col_does_not_truncate_when_fits() {
let saved = std::env::var("COLUMNS").ok();
unsafe { std::env::set_var("COLUMNS", "120") };
let mut table = Table::new().headers(&["ID", "Title", "State"]).flex_col(1);
table.add_row(vec![
StyledCell::plain("1"),
StyledCell::plain("Short title"),
StyledCell::plain("open"),
]);
let result = table.render();
let plain = strip_ansi(&result);
// Short title should appear in full
assert!(
plain.contains("Short title"),
"short title should not be truncated: {plain}"
);
match saved {
Some(v) => unsafe { std::env::set_var("COLUMNS", v) },
None => unsafe { std::env::remove_var("COLUMNS") },
}
}
#[test] #[test]
fn table_missing_cells_padded() { fn table_missing_cells_padded() {
let mut table = Table::new().headers(&["A", "B", "C"]); let mut table = Table::new().headers(&["A", "B", "C"]);
@@ -1330,6 +1452,29 @@ mod tests {
assert!(plain.contains("1"), "got: {plain}"); assert!(plain.contains("1"), "got: {plain}");
} }
#[test]
fn flex_width_respects_min() {
// flex_width = max(terminal_width() - overhead, min)
// With very large overhead, result should be at least `min`
let result = flex_width(10_000, 25);
assert_eq!(
result, 25,
"should clamp to min when overhead exceeds width"
);
// With zero overhead, result should be terminal_width()
let result = flex_width(0, 1);
assert!(result >= 1, "should be at least min");
// Monotonicity: more overhead → smaller or equal result
let a = flex_width(10, 20);
let b = flex_width(50, 20);
assert!(
a >= b,
"more overhead should yield smaller width: {a} vs {b}"
);
}
// ── GlyphMode ── // ── GlyphMode ──
#[test] #[test]
@@ -1459,24 +1604,19 @@ mod tests {
// ── helpers ── // ── helpers ──
/// Strip ANSI escape codes (SGR sequences) for content assertions. /// Delegate to the public `strip_ansi` for test assertions.
fn strip_ansi(s: &str) -> String { fn strip_ansi(s: &str) -> String {
let mut out = String::with_capacity(s.len()); super::strip_ansi(s)
let mut chars = s.chars(); }
while let Some(c) = chars.next() {
if c == '\x1b' { #[test]
// Consume `[`, then digits/semicolons, then the final letter fn visible_width_strips_ansi() {
if chars.next() == Some('[') { let styled = "\x1b[1mhello\x1b[0m".to_string();
for c in chars.by_ref() { assert_eq!(super::visible_width(&styled), 5);
if c.is_ascii_alphabetic() { }
break;
} #[test]
} fn visible_width_plain_string() {
} assert_eq!(super::visible_width("hello"), 5);
} else {
out.push(c);
}
}
out
} }
} }

View File

@@ -56,7 +56,13 @@ pub fn expand_fields_preset(fields: &[String], entity: &str) -> Vec<String> {
.iter() .iter()
.map(|s| (*s).to_string()) .map(|s| (*s).to_string())
.collect(), .collect(),
"search" => ["document_id", "title", "source_type", "score"] "search" => [
"document_id",
"title",
"source_type",
"source_entity_iid",
"score",
]
.iter() .iter()
.map(|s| (*s).to_string()) .map(|s| (*s).to_string())
.collect(), .collect(),

View File

@@ -175,7 +175,7 @@ pub struct LoggingConfig {
} }
fn default_retention_days() -> u32 { fn default_retention_days() -> u32 {
30 7
} }
fn default_file_logging() -> bool { fn default_file_logging() -> bool {

View File

@@ -65,7 +65,7 @@ pub fn build_file_filter() -> EnvFilter {
return EnvFilter::from_default_env(); return EnvFilter::from_default_env();
} }
EnvFilter::new("lore=debug,warn") EnvFilter::new("lore=info")
} }
pub fn cleanup_old_logs(log_dir: &Path, retention_days: u32) -> usize { pub fn cleanup_old_logs(log_dir: &Path, retention_days: u32) -> usize {

View File

@@ -9,6 +9,7 @@ pub mod file_history;
pub mod lock; pub mod lock;
pub mod logging; pub mod logging;
pub mod metrics; pub mod metrics;
pub mod ollama_mgmt;
pub mod path_resolver; pub mod path_resolver;
pub mod paths; pub mod paths;
pub mod project; pub mod project;

514
src/core/ollama_mgmt.rs Normal file
View File

@@ -0,0 +1,514 @@
use std::net::{TcpStream, ToSocketAddrs};
use std::path::PathBuf;
use std::process::Command;
use std::time::Duration;
use serde::Serialize;
// ── URL parsing helpers ──
/// Extract the hostname from a URL like `http://gpu-server:11434`.
/// Handles bracketed IPv6 addresses like `http://[::1]:11434`.
fn extract_host(base_url: &str) -> &str {
let without_scheme = base_url
.strip_prefix("http://")
.or_else(|| base_url.strip_prefix("https://"))
.unwrap_or(base_url);
// Handle bracketed IPv6: [::1]:port
if without_scheme.starts_with('[') {
return without_scheme
.find(']')
.map_or(without_scheme, |end| &without_scheme[..=end]);
}
// Take host part (before port colon or path slash)
let host = without_scheme.split(':').next().unwrap_or(without_scheme);
host.split('/').next().unwrap_or(host)
}
/// Extract port from a URL like `http://localhost:11434`.
/// Handles trailing paths and slashes (e.g. `http://host:8080/api`).
fn extract_port(base_url: &str) -> u16 {
base_url
.rsplit(':')
.next()
.and_then(|s| {
// Strip any path/fragment after the port digits
let port_str = s.split('/').next().unwrap_or(s);
port_str.parse().ok()
})
.unwrap_or(11434)
}
/// Is this URL pointing at the local machine?
fn is_local_url(base_url: &str) -> bool {
let host = extract_host(base_url);
matches!(host, "localhost" | "127.0.0.1" | "::1" | "[::1]")
}
// ── Detection (sync, fast) ──
/// Find the `ollama` binary. Checks PATH first, then well-known locations
/// as fallback for cron/launchd contexts where PATH is minimal.
pub fn find_ollama_binary() -> Option<PathBuf> {
let from_path = Command::new("which")
.arg("ollama")
.output()
.ok()
.filter(|o| o.status.success())
.map(|o| PathBuf::from(String::from_utf8_lossy(&o.stdout).trim().to_string()));
if from_path.is_some() {
return from_path;
}
const WELL_KNOWN: &[&str] = &[
"/opt/homebrew/bin/ollama",
"/usr/local/bin/ollama",
"/usr/bin/ollama",
"/snap/bin/ollama",
];
WELL_KNOWN.iter().map(PathBuf::from).find(|p| p.is_file())
}
/// TCP-connect to Ollama's port. Tries all resolved addresses (IPv4/IPv6)
/// since `localhost` resolves to `::1` first on macOS but Ollama only
/// listens on `127.0.0.1`.
pub fn is_ollama_reachable(base_url: &str) -> bool {
let port = extract_port(base_url);
let host = extract_host(base_url);
let addr_str = format!("{host}:{port}");
let Ok(addrs) = addr_str.to_socket_addrs() else {
return false;
};
addrs
.into_iter()
.any(|addr| TcpStream::connect_timeout(&addr, Duration::from_secs(2)).is_ok())
}
/// Platform-appropriate installation instructions.
pub fn install_instructions() -> &'static str {
if cfg!(target_os = "macos") {
"Install Ollama: brew install ollama (or https://ollama.ai/download)"
} else if cfg!(target_os = "linux") {
"Install Ollama: curl -fsSL https://ollama.ai/install.sh | sh"
} else {
"Install Ollama: https://ollama.ai/download"
}
}
// ── Ensure (spawns ollama if needed) ──
#[derive(Debug, Serialize)]
pub struct OllamaEnsureResult {
pub installed: bool,
pub was_running: bool,
pub started: bool,
pub running: bool,
#[serde(skip_serializing_if = "Option::is_none")]
pub error: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub install_hint: Option<String>,
}
/// Ensure Ollama is available. For local URLs, spawns `ollama serve` if
/// not already running. For remote URLs, only checks reachability.
///
/// Waits briefly (5s) for hot restarts; cold starts finish during the
/// ingestion phase (~90s) before the embed stage needs Ollama.
pub fn ensure_ollama(base_url: &str) -> OllamaEnsureResult {
let is_local = is_local_url(base_url);
let binary_path = if is_local {
let path = find_ollama_binary();
if path.is_none() {
return OllamaEnsureResult {
installed: false,
was_running: false,
started: false,
running: false,
error: Some("Ollama is not installed".to_string()),
install_hint: Some(install_instructions().to_string()),
};
}
path
} else {
None
};
if is_ollama_reachable(base_url) {
return OllamaEnsureResult {
installed: true,
was_running: true,
started: false,
running: true,
error: None,
install_hint: None,
};
}
if !is_local {
return OllamaEnsureResult {
installed: true,
was_running: false,
started: false,
running: false,
error: Some(format!(
"Ollama at {base_url} is not reachable (remote — cannot auto-start)"
)),
install_hint: None,
};
}
// Spawn using the absolute path (cron PATH won't include Homebrew etc.)
let ollama_bin = binary_path.expect("binary_path is Some for local URLs after binary check");
let spawn_result = Command::new(&ollama_bin)
.arg("serve")
.stdout(std::process::Stdio::null())
.stderr(std::process::Stdio::null())
.spawn();
if let Err(e) = spawn_result {
return OllamaEnsureResult {
installed: true,
was_running: false,
started: false,
running: false,
error: Some(format!("Failed to spawn 'ollama serve': {e}")),
install_hint: None,
};
}
// Brief poll for hot restarts; cold starts finish during ingestion.
for _ in 0..10 {
std::thread::sleep(Duration::from_millis(500));
if is_ollama_reachable(base_url) {
return OllamaEnsureResult {
installed: true,
was_running: false,
started: true,
running: true,
error: None,
install_hint: None,
};
}
}
OllamaEnsureResult {
installed: true,
was_running: false,
started: true,
running: false,
error: None,
install_hint: None,
}
}
// ── Brief status (for cron status display) ──
/// Lightweight status snapshot for display in `cron status`.
#[derive(Debug, Clone, Serialize)]
pub struct OllamaStatusBrief {
pub installed: bool,
pub running: bool,
#[serde(skip_serializing_if = "Option::is_none")]
pub binary_path: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub install_hint: Option<String>,
}
/// Quick, non-blocking Ollama status check for display purposes.
pub fn ollama_status_brief(base_url: &str) -> OllamaStatusBrief {
let is_local = is_local_url(base_url);
// For remote URLs, only check reachability (binary check is irrelevant)
if !is_local {
let running = is_ollama_reachable(base_url);
return OllamaStatusBrief {
installed: true, // unknown for remote, but not actionable
running,
binary_path: None,
install_hint: None,
};
}
let binary_path = find_ollama_binary();
let installed = binary_path.is_some();
if !installed {
return OllamaStatusBrief {
installed: false,
running: false,
binary_path: None,
install_hint: Some(install_instructions().to_string()),
};
}
let running = is_ollama_reachable(base_url);
OllamaStatusBrief {
installed: true,
running,
binary_path: binary_path.map(|p| p.display().to_string()),
install_hint: None,
}
}
#[cfg(test)]
mod tests {
use super::*;
// ── URL parsing ──
#[test]
fn extract_port_default_url() {
assert_eq!(extract_port("http://localhost:11434"), 11434);
}
#[test]
fn extract_port_custom() {
assert_eq!(extract_port("http://192.168.1.5:9999"), 9999);
}
#[test]
fn extract_port_trailing_slash() {
assert_eq!(extract_port("http://localhost:11434/"), 11434);
}
#[test]
fn extract_port_with_path() {
assert_eq!(extract_port("http://localhost:8080/api/generate"), 8080);
}
#[test]
fn extract_port_no_port() {
assert_eq!(extract_port("http://localhost"), 11434);
}
#[test]
fn extract_port_https() {
assert_eq!(extract_port("https://ollama.internal:8080"), 8080);
}
#[test]
fn extract_host_localhost() {
assert_eq!(extract_host("http://localhost:11434"), "localhost");
}
#[test]
fn extract_host_ip() {
assert_eq!(extract_host("http://192.168.1.5:9999"), "192.168.1.5");
}
#[test]
fn extract_host_remote() {
assert_eq!(extract_host("http://gpu-server:11434"), "gpu-server");
}
#[test]
fn extract_host_no_port() {
assert_eq!(extract_host("http://localhost"), "localhost");
}
#[test]
fn extract_host_https() {
assert_eq!(
extract_host("https://ollama.internal:8080"),
"ollama.internal"
);
}
#[test]
fn extract_host_no_scheme() {
assert_eq!(extract_host("localhost:11434"), "localhost");
}
// ── is_local_url ──
#[test]
fn is_local_url_localhost() {
assert!(is_local_url("http://localhost:11434"));
}
#[test]
fn is_local_url_loopback() {
assert!(is_local_url("http://127.0.0.1:11434"));
}
#[test]
fn is_local_url_ipv6_loopback() {
assert!(is_local_url("http://[::1]:11434"));
}
#[test]
fn is_local_url_remote() {
assert!(!is_local_url("http://gpu-server:11434"));
assert!(!is_local_url("http://192.168.1.5:11434"));
}
#[test]
fn is_local_url_fqdn_not_local() {
assert!(!is_local_url("http://ollama.example.com:11434"));
}
// ── install_instructions ──
#[test]
fn install_instructions_not_empty() {
assert!(!install_instructions().is_empty());
assert!(install_instructions().contains("ollama"));
}
#[test]
fn install_instructions_contains_url() {
assert!(install_instructions().contains("ollama.ai"));
}
// ── is_ollama_reachable ──
#[test]
fn reachable_returns_false_for_closed_port() {
// Port 1 is almost never open and requires root to bind
assert!(!is_ollama_reachable("http://127.0.0.1:1"));
}
#[test]
fn reachable_returns_false_for_unresolvable_host() {
assert!(!is_ollama_reachable(
"http://this-host-does-not-exist-xyzzy:11434"
));
}
// ── OllamaEnsureResult serialization ──
#[test]
fn ensure_result_serializes_installed_running() {
let result = OllamaEnsureResult {
installed: true,
was_running: true,
started: false,
running: true,
error: None,
install_hint: None,
};
let json: serde_json::Value = serde_json::to_value(&result).unwrap();
assert_eq!(json["installed"], true);
assert_eq!(json["was_running"], true);
assert_eq!(json["started"], false);
assert_eq!(json["running"], true);
// skip_serializing_if: None fields should be absent
assert!(json.get("error").is_none());
assert!(json.get("install_hint").is_none());
}
#[test]
fn ensure_result_serializes_not_installed() {
let result = OllamaEnsureResult {
installed: false,
was_running: false,
started: false,
running: false,
error: Some("Ollama is not installed".to_string()),
install_hint: Some("Install Ollama: brew install ollama".to_string()),
};
let json: serde_json::Value = serde_json::to_value(&result).unwrap();
assert_eq!(json["installed"], false);
assert_eq!(json["running"], false);
assert_eq!(json["error"], "Ollama is not installed");
assert!(
json["install_hint"]
.as_str()
.unwrap()
.contains("brew install")
);
}
// ── OllamaStatusBrief serialization ──
#[test]
fn status_brief_serializes_with_optional_fields() {
let brief = OllamaStatusBrief {
installed: true,
running: true,
binary_path: Some("/usr/local/bin/ollama".to_string()),
install_hint: None,
};
let json: serde_json::Value = serde_json::to_value(&brief).unwrap();
assert_eq!(json["installed"], true);
assert_eq!(json["running"], true);
assert_eq!(json["binary_path"], "/usr/local/bin/ollama");
assert!(json.get("install_hint").is_none());
}
#[test]
fn status_brief_serializes_not_installed() {
let brief = OllamaStatusBrief {
installed: false,
running: false,
binary_path: None,
install_hint: Some("Install Ollama".to_string()),
};
let json: serde_json::Value = serde_json::to_value(&brief).unwrap();
assert_eq!(json["installed"], false);
assert_eq!(json["running"], false);
assert!(json.get("binary_path").is_none());
assert_eq!(json["install_hint"], "Install Ollama");
}
#[test]
fn status_brief_clone() {
let original = OllamaStatusBrief {
installed: true,
running: false,
binary_path: Some("/opt/bin/ollama".to_string()),
install_hint: None,
};
let cloned = original.clone();
assert_eq!(original.installed, cloned.installed);
assert_eq!(original.running, cloned.running);
assert_eq!(original.binary_path, cloned.binary_path);
assert_eq!(original.install_hint, cloned.install_hint);
}
// ── ensure_ollama with remote URL ──
#[test]
fn ensure_remote_unreachable_does_not_set_install_hint() {
// A remote URL that nothing listens on — should NOT suggest local install
let result = ensure_ollama("http://192.0.2.1:1"); // TEST-NET, will fail fast
assert!(!result.started);
assert!(!result.running);
assert!(
result.install_hint.is_none(),
"remote URLs should not suggest local install"
);
assert!(
result.error.as_deref().unwrap_or("").contains("remote"),
"error should mention 'remote': {:?}",
result.error,
);
}
// ── ensure_ollama with local URL (binary check) ──
#[test]
fn ensure_local_closed_port_not_already_running() {
// Local URL pointing at a port nothing listens on
let result = ensure_ollama("http://127.0.0.1:1");
// Should NOT report was_running since port 1 is closed
assert!(!result.was_running);
assert!(!result.running);
// If ollama binary is not installed, should get install hint
if !result.installed {
assert!(result.install_hint.is_some());
assert!(
result
.error
.as_deref()
.unwrap_or("")
.contains("not installed")
);
}
}
}

View File

@@ -154,3 +154,25 @@ fn test_percent_not_wildcard() {
let id = resolve_project(&conn, "a%b").unwrap(); let id = resolve_project(&conn, "a%b").unwrap();
assert_eq!(id, 1); assert_eq!(id, 1);
} }
#[test]
fn test_lookup_by_gitlab_project_id() {
use crate::test_support::{insert_project as insert_proj, setup_test_db};
let conn = setup_test_db();
insert_proj(&conn, 1, "team/alpha");
insert_proj(&conn, 2, "team/beta");
// insert_project sets gitlab_project_id = id * 100
let path: String = conn
.query_row(
"SELECT path_with_namespace FROM projects
WHERE gitlab_project_id = ?1
ORDER BY id LIMIT 1",
rusqlite::params![200_i64],
|row| row.get(0),
)
.unwrap();
assert_eq!(path, "team/beta");
}

View File

@@ -73,6 +73,59 @@ pub fn compute_list_hash(items: &[String]) -> String {
format!("{:x}", hasher.finalize()) format!("{:x}", hasher.finalize())
} }
/// Strip GitLab-generated boilerplate from titles before embedding.
///
/// Common patterns that inflate embedding similarity between unrelated entities:
/// - `Draft: Resolve "Actual Title"` → `Actual Title`
/// - `Resolve "Actual Title"` → `Actual Title`
/// - `Draft: Some Title` → `Some Title`
/// - `WIP: Some Title` → `Some Title`
///
/// The original title is preserved in `DocumentData.title` for display;
/// this function only affects `content_text` (what gets embedded).
fn normalize_title_for_embedding(title: &str) -> &str {
let mut s = title;
// Strip leading "Draft: " and/or "WIP: " (case-insensitive, repeatable).
// Use `get()` for slicing — direct `str[..N]` panics if byte N is mid-character
// (e.g. titles starting with emoji or accented characters).
loop {
let trimmed = s.trim_start();
if trimmed
.get(..6)
.is_some_and(|p| p.eq_ignore_ascii_case("draft:"))
{
s = trimmed[6..].trim_start();
} else if trimmed
.get(..4)
.is_some_and(|p| p.eq_ignore_ascii_case("wip:"))
{
s = trimmed[4..].trim_start();
} else {
break;
}
}
// Strip `Resolve "..."` wrapper (case-insensitive)
if s.len() >= 10
&& s.get(..8).is_some_and(|p| p.eq_ignore_ascii_case("resolve "))
&& s.as_bytes()[8] == b'"'
&& let Some(end) = s[9..].rfind('"')
{
let inner = &s[9..9 + end];
if !inner.is_empty() {
return inner;
}
}
// Guard: if stripping left us with nothing, return the original
if s.is_empty() {
return title;
}
s
}
fn format_date(ms: i64) -> String { fn format_date(ms: i64) -> String {
DateTime::from_timestamp_millis(ms) DateTime::from_timestamp_millis(ms)
.map(|dt| dt.format("%Y-%m-%d").to_string()) .map(|dt| dt.format("%Y-%m-%d").to_string())

View File

@@ -156,12 +156,13 @@ pub fn extract_discussion_document(
let author_username = notes[0].author.clone(); let author_username = notes[0].author.clone();
let display_title = parent_title.as_deref().unwrap_or("(untitled)"); let display_title = parent_title.as_deref().unwrap_or("(untitled)");
let embed_title = normalize_title_for_embedding(display_title);
let labels_json = serde_json::to_string(&labels).unwrap_or_else(|_| "[]".to_string()); let labels_json = serde_json::to_string(&labels).unwrap_or_else(|_| "[]".to_string());
let paths_json = serde_json::to_string(&paths).unwrap_or_else(|_| "[]".to_string()); let paths_json = serde_json::to_string(&paths).unwrap_or_else(|_| "[]".to_string());
let mut content = format!( let mut content = format!(
"[[Discussion]] {}: {}\nProject: {}\n", "[[Discussion]] {}: {}\nProject: {}\n",
parent_type_prefix, display_title, path_with_namespace parent_type_prefix, embed_title, path_with_namespace
); );
if let Some(ref u) = url { if let Some(ref u) = url {
let _ = writeln!(content, "URL: {}", u); let _ = writeln!(content, "URL: {}", u);

View File

@@ -1,5 +1,171 @@
use super::*; use super::*;
// --- normalize_title_for_embedding tests ---
#[test]
fn test_normalize_title_strips_draft_resolve_quotes() {
assert_eq!(
normalize_title_for_embedding("Draft: Resolve \"Analytics Studio: Subformulas\""),
"Analytics Studio: Subformulas"
);
}
#[test]
fn test_normalize_title_strips_resolve_quotes() {
assert_eq!(
normalize_title_for_embedding("Resolve \"RUL Report: Use param_trends from S3\""),
"RUL Report: Use param_trends from S3"
);
}
#[test]
fn test_normalize_title_strips_draft_prefix() {
assert_eq!(
normalize_title_for_embedding("Draft: Implement JWT authentication"),
"Implement JWT authentication"
);
}
#[test]
fn test_normalize_title_strips_wip_prefix() {
assert_eq!(
normalize_title_for_embedding("WIP: Implement JWT authentication"),
"Implement JWT authentication"
);
}
#[test]
fn test_normalize_title_strips_draft_wip_combined() {
assert_eq!(
normalize_title_for_embedding("Draft: WIP: Fix auth"),
"Fix auth"
);
}
#[test]
fn test_normalize_title_no_change_for_normal_title() {
assert_eq!(
normalize_title_for_embedding("Implement JWT authentication"),
"Implement JWT authentication"
);
}
#[test]
fn test_normalize_title_case_insensitive_draft() {
assert_eq!(
normalize_title_for_embedding("draft: Resolve \"Some Issue\""),
"Some Issue"
);
}
#[test]
fn test_normalize_title_case_insensitive_wip() {
assert_eq!(normalize_title_for_embedding("wip: Something"), "Something");
}
#[test]
fn test_normalize_title_untitled_passthrough() {
assert_eq!(normalize_title_for_embedding("(untitled)"), "(untitled)");
}
#[test]
fn test_normalize_title_resolve_without_quotes_unchanged() {
// "Resolve something" without quotes is not the GitLab pattern
assert_eq!(
normalize_title_for_embedding("Resolve the flaky test"),
"Resolve the flaky test"
);
}
#[test]
fn test_normalize_title_empty_after_strip_returns_original() {
// Edge case: "Draft: " with nothing after → return original
assert_eq!(normalize_title_for_embedding("Draft: "), "Draft: ");
}
#[test]
fn test_normalize_title_resolve_empty_quotes() {
// Edge case: Resolve "" → return original (empty inner text)
assert_eq!(
normalize_title_for_embedding("Resolve \"\""),
"Resolve \"\""
);
}
#[test]
fn test_normalize_title_non_ascii_does_not_panic() {
// Emoji at start: byte offsets 4 and 8 fall mid-character.
// Must not panic — should return the title unchanged.
assert_eq!(
normalize_title_for_embedding("\u{1F389}\u{1F389} celebration"),
"\u{1F389}\u{1F389} celebration"
);
// Accented characters
assert_eq!(
normalize_title_for_embedding("\u{00DC}berpr\u{00FC}fung der Daten"),
"\u{00DC}berpr\u{00FC}fung der Daten"
);
}
// --- MR document uses normalized title in content_text ---
#[test]
fn test_mr_document_normalizes_draft_resolve_title() {
let conn = setup_mr_test_db();
insert_mr(
&conn,
1,
4064,
Some("Draft: Resolve \"Analytics Studio: Subformulas\""),
Some("Implements subformula support"),
Some("opened"),
Some("dev"),
Some("feature/subformulas"),
Some("main"),
None,
);
let doc = extract_mr_document(&conn, 1).unwrap().unwrap();
// content_text should use the normalized title (no boilerplate)
assert!(
doc.content_text
.starts_with("[[MergeRequest]] !4064: Analytics Studio: Subformulas\n")
);
// but DocumentData.title preserves the original for display
assert_eq!(
doc.title,
Some("Draft: Resolve \"Analytics Studio: Subformulas\"".to_string())
);
}
// --- Issue document uses normalized title in content_text ---
#[test]
fn test_issue_document_normalizes_draft_title() {
let conn = setup_test_db();
insert_issue(
&conn,
1,
100,
Some("Draft: WIP: Rethink caching strategy"),
Some("We should reconsider..."),
"opened",
Some("alice"),
None,
);
let doc = extract_issue_document(&conn, 1).unwrap().unwrap();
assert!(
doc.content_text
.starts_with("[[Issue]] #100: Rethink caching strategy\n")
);
// Original title preserved for display
assert_eq!(
doc.title,
Some("Draft: WIP: Rethink caching strategy".to_string())
);
}
#[test] #[test]
fn test_source_type_parse_aliases() { fn test_source_type_parse_aliases() {
assert_eq!(SourceType::parse("issue"), Some(SourceType::Issue)); assert_eq!(SourceType::parse("issue"), Some(SourceType::Issue));

View File

@@ -55,9 +55,10 @@ pub fn extract_issue_document(conn: &Connection, issue_id: i64) -> Result<Option
let labels_json = serde_json::to_string(&labels).unwrap_or_else(|_| "[]".to_string()); let labels_json = serde_json::to_string(&labels).unwrap_or_else(|_| "[]".to_string());
let display_title = title.as_deref().unwrap_or("(untitled)"); let display_title = title.as_deref().unwrap_or("(untitled)");
let embed_title = normalize_title_for_embedding(display_title);
let mut content = format!( let mut content = format!(
"[[Issue]] #{}: {}\nProject: {}\n", "[[Issue]] #{}: {}\nProject: {}\n",
iid, display_title, path_with_namespace iid, embed_title, path_with_namespace
); );
if let Some(ref url) = web_url { if let Some(ref url) = web_url {
let _ = writeln!(content, "URL: {}", url); let _ = writeln!(content, "URL: {}", url);

View File

@@ -60,10 +60,11 @@ pub fn extract_mr_document(conn: &Connection, mr_id: i64) -> Result<Option<Docum
let labels_json = serde_json::to_string(&labels).unwrap_or_else(|_| "[]".to_string()); let labels_json = serde_json::to_string(&labels).unwrap_or_else(|_| "[]".to_string());
let display_title = title.as_deref().unwrap_or("(untitled)"); let display_title = title.as_deref().unwrap_or("(untitled)");
let embed_title = normalize_title_for_embedding(display_title);
let display_state = state.as_deref().unwrap_or("unknown"); let display_state = state.as_deref().unwrap_or("unknown");
let mut content = format!( let mut content = format!(
"[[MergeRequest]] !{}: {}\nProject: {}\n", "[[MergeRequest]] !{}: {}\nProject: {}\n",
iid, display_title, path_with_namespace iid, embed_title, path_with_namespace
); );
if let Some(ref url) = web_url { if let Some(ref url) = web_url {
let _ = writeln!(content, "URL: {}", url); let _ = writeln!(content, "URL: {}", url);

View File

@@ -439,6 +439,7 @@ fn build_note_document(
let url = parent_web_url.map(|wu| format!("{}#note_{}", wu, gitlab_id)); let url = parent_web_url.map(|wu| format!("{}#note_{}", wu, gitlab_id));
let display_title = parent_title.unwrap_or("(untitled)"); let display_title = parent_title.unwrap_or("(untitled)");
let embed_title = normalize_title_for_embedding(display_title);
let display_note_type = note_type.as_deref().unwrap_or("Note"); let display_note_type = note_type.as_deref().unwrap_or("Note");
let display_author = author_username.as_deref().unwrap_or("unknown"); let display_author = author_username.as_deref().unwrap_or("unknown");
let parent_prefix = if parent_type_label == "Issue" { let parent_prefix = if parent_type_label == "Issue" {
@@ -447,6 +448,7 @@ fn build_note_document(
format!("MR !{}", parent_iid) format!("MR !{}", parent_iid)
}; };
// Display title uses original (for human-readable output)
let title = format!( let title = format!(
"Note by @{} on {}: {}", "Note by @{} on {}: {}",
display_author, parent_prefix, display_title display_author, parent_prefix, display_title
@@ -461,7 +463,7 @@ fn build_note_document(
let _ = writeln!(content, "project: {}", path_with_namespace); let _ = writeln!(content, "project: {}", path_with_namespace);
let _ = writeln!(content, "parent_type: {}", parent_type_label); let _ = writeln!(content, "parent_type: {}", parent_type_label);
let _ = writeln!(content, "parent_iid: {}", parent_iid); let _ = writeln!(content, "parent_iid: {}", parent_iid);
let _ = writeln!(content, "parent_title: {}", display_title); let _ = writeln!(content, "parent_title: {}", embed_title);
let _ = writeln!(content, "note_type: {}", display_note_type); let _ = writeln!(content, "note_type: {}", display_note_type);
let _ = writeln!(content, "author: @{}", display_author); let _ = writeln!(content, "author: @{}", display_author);
let _ = writeln!(content, "created_at: {}", ms_to_iso(created_at)); let _ = writeln!(content, "created_at: {}", ms_to_iso(created_at));

View File

@@ -3,8 +3,8 @@ use rusqlite::Connection;
use std::collections::HashSet; use std::collections::HashSet;
use super::types::{ use super::types::{
EntityRef, ExpandedEntityRef, MatchedDiscussion, THREAD_MAX_NOTES, THREAD_NOTE_MAX_CHARS, EntityRef, ExpandedEntityRef, MatchedDiscussion, THREAD_MAX_NOTES, ThreadNote, TimelineEvent,
ThreadNote, TimelineEvent, TimelineEventType, truncate_to_chars, TimelineEventType,
}; };
use crate::core::error::{LoreError, Result}; use crate::core::error::{LoreError, Result};
@@ -440,7 +440,7 @@ fn collect_discussion_threads(
let mut notes = Vec::new(); let mut notes = Vec::new();
for row_result in rows { for row_result in rows {
let (note_id, author, body, created_at) = row_result?; let (note_id, author, body, created_at) = row_result?;
let body = truncate_to_chars(body.as_deref().unwrap_or(""), THREAD_NOTE_MAX_CHARS); let body = body.as_deref().unwrap_or("").to_owned();
notes.push(ThreadNote { notes.push(ThreadNote {
note_id, note_id,
author, author,
@@ -468,7 +468,6 @@ fn collect_discussion_threads(
}); });
} }
let note_count = notes.len();
let actor = notes.first().and_then(|n| n.author.clone()); let actor = notes.first().and_then(|n| n.author.clone());
events.push(TimelineEvent { events.push(TimelineEvent {
@@ -481,7 +480,7 @@ fn collect_discussion_threads(
discussion_id: disc.discussion_id, discussion_id: disc.discussion_id,
notes, notes,
}, },
summary: format!("Discussion ({note_count} notes)"), summary: format!("Discussion ({total_notes} notes)"),
actor, actor,
url: None, url: None,
is_seed: true, is_seed: true,

View File

@@ -5,7 +5,7 @@ use tracing::debug;
use super::types::{ use super::types::{
EntityRef, MatchedDiscussion, TimelineEvent, TimelineEventType, resolve_entity_by_iid, EntityRef, MatchedDiscussion, TimelineEvent, TimelineEventType, resolve_entity_by_iid,
resolve_entity_ref, truncate_to_chars, resolve_entity_ref,
}; };
use crate::core::error::Result; use crate::core::error::Result;
use crate::embedding::ollama::OllamaClient; use crate::embedding::ollama::OllamaClient;
@@ -337,7 +337,7 @@ fn find_evidence_notes(
proj_id, proj_id,
) = row_result?; ) = row_result?;
let snippet = truncate_to_chars(body.as_deref().unwrap_or(""), 200); let snippet = body.as_deref().unwrap_or("").to_owned();
let entity_ref = resolve_entity_ref(conn, &parent_type, parent_entity_id, Some(proj_id))?; let entity_ref = resolve_entity_ref(conn, &parent_type, parent_entity_id, Some(proj_id))?;
let (iid, project_path) = match entity_ref { let (iid, project_path) = match entity_ref {

View File

@@ -553,9 +553,10 @@ fn test_collect_discussion_thread_body_truncation() {
.unwrap(); .unwrap();
if let TimelineEventType::DiscussionThread { notes, .. } = &thread.event_type { if let TimelineEventType::DiscussionThread { notes, .. } = &thread.event_type {
assert!( assert_eq!(
notes[0].body.chars().count() <= crate::timeline::THREAD_NOTE_MAX_CHARS, notes[0].body.chars().count(),
"Body should be truncated to THREAD_NOTE_MAX_CHARS" 10_000,
"Body should preserve full text without truncation"
); );
} else { } else {
panic!("Expected DiscussionThread"); panic!("Expected DiscussionThread");

View File

@@ -288,7 +288,11 @@ fn test_seed_evidence_snippet_truncated() {
if let TimelineEventType::NoteEvidence { snippet, .. } = if let TimelineEventType::NoteEvidence { snippet, .. } =
&result.evidence_notes[0].event_type &result.evidence_notes[0].event_type
{ {
assert!(snippet.chars().count() <= 200); assert_eq!(
snippet.chars().count(),
500,
"snippet should preserve full body text"
);
} else { } else {
panic!("Expected NoteEvidence"); panic!("Expected NoteEvidence");
} }

View File

@@ -103,6 +103,7 @@ pub enum TimelineEventType {
} }
/// Truncate a string to at most `max_chars` characters on a safe UTF-8 boundary. /// Truncate a string to at most `max_chars` characters on a safe UTF-8 boundary.
#[allow(dead_code)]
pub(crate) fn truncate_to_chars(s: &str, max_chars: usize) -> String { pub(crate) fn truncate_to_chars(s: &str, max_chars: usize) -> String {
let char_count = s.chars().count(); let char_count = s.chars().count();
if char_count <= max_chars { if char_count <= max_chars {