1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! Lore - Reasoning history for code
//!
//! Lore captures the story behind your commits by recording AI-assisted
//! development sessions and linking them to git history.
//!
//! Git captures code history (what changed). Lore captures reasoning history
//! (how and why it changed through human-AI collaboration).
//!
//! # Modules
//!
//! - [`capture`] - Session capture from AI coding tools
//! - [`cloud`] - Cloud sync for cross-machine session access
//! - [`config`] - Configuration management
//! - [`daemon`] - Background daemon for automatic session capture
//! - [`git`] - Git repository integration and auto-linking
//! - [`mcp`] - MCP (Model Context Protocol) server
//! - [`storage`] - SQLite database operations and data models
/// Session capture from AI coding tools like Claude Code and Copilot.
/// Cloud sync for cross-machine session access.
/// Configuration management for Lore settings.
/// Background daemon for automatic session capture and file watching.
/// Git repository integration for commit linking and auto-detection.
/// MCP (Model Context Protocol) server for exposing Lore data to AI tools.
/// SQLite storage layer for sessions, messages, and links.
/// LLM-powered session summarization.