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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
//! CLI commands for Lore.
//!
//! Each submodule implements a single CLI command with its argument
//! parsing and execution logic.
/// Add a bookmark or note to a session.
/// Show which AI session led to a specific line of code.
/// Cloud sync operations (status, push, pull).
/// Shell completion script generation.
/// Configuration viewing and management.
/// Show recent sessions for quick orientation.
/// Show the active session for the current directory.
/// Background daemon management (start, stop, status, logs).
/// Database management (vacuum, prune, stats).
/// Diagnose Lore installation and configuration issues.
/// Permanently delete a session and its data.
/// Export sessions in various formats with optional redaction.
/// Git hooks management (install, uninstall, status).
/// Import sessions from AI coding tools.
/// AI development insights and analytics.
/// Guided first-run setup.
/// Link sessions to git commits.
/// Authenticate with the cloud service.
/// Log out from the cloud service.
/// MCP (Model Context Protocol) server.
/// Search session content using FTS5 full-text search.
/// List and filter sessions.
/// Display session details or commit-linked sessions.
/// Add or view session summaries.
/// Show current Lore status and recent sessions.
/// Add or remove tags from sessions.
/// Remove session-to-commit links.