lore-cli 0.1.13

Capture AI coding sessions and link them to git commits
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Command-line interface for Lore.
//!
//! Provides the CLI commands for interacting with Lore's session
//! database. Commands include session listing, viewing, linking,
//! and importing from AI coding tools.

/// Individual CLI command implementations.
pub mod commands;

/// Output formatting utilities.
pub mod format;

pub use format::OutputFormat;