lore_cli/
lib.rs

1//! Lore - Reasoning history for code
2//!
3//! Lore captures the story behind your commits by recording AI-assisted
4//! development sessions and linking them to git history.
5//!
6//! Git captures code history (what changed). Lore captures reasoning history
7//! (how and why it changed through human-AI collaboration).
8//!
9//! # Modules
10//!
11//! - [`capture`] - Session capture from AI coding tools
12//! - [`config`] - Configuration management
13//! - [`daemon`] - Background daemon for automatic session capture
14//! - [`git`] - Git repository integration and auto-linking
15//! - [`storage`] - SQLite database operations and data models
16
17/// Session capture from AI coding tools like Claude Code and Copilot.
18pub mod capture;
19
20/// Configuration management for Lore settings.
21pub mod config;
22
23/// Background daemon for automatic session capture and file watching.
24pub mod daemon;
25
26/// Git repository integration for commit linking and auto-detection.
27pub mod git;
28
29/// SQLite storage layer for sessions, messages, and links.
30pub mod storage;