Skip to content

Quick Start

This guide will help you set up Lore and import your first AI coding sessions.

Run the setup wizard:

Terminal window
lore init

The wizard will:

  1. Detect installed AI coding tools
  2. Show which tools have existing sessions
  3. Let you choose which watchers to enable
  4. Offer to import existing sessions
  5. If Aider is enabled, offer to scan additional directories for aider projects
  6. Offer to install shell completions
  7. Offer to start the background service

If you prefer to configure manually:

Terminal window
# Import existing sessions
lore import
# List imported sessions
lore sessions
# View a session
lore show <session-id>

After making a commit with AI assistance:

Terminal window
# Link a session to the most recent commit
lore link <session-id>
# View sessions linked to a commit
lore show --commit HEAD

For real-time session capture:

Terminal window
# macOS with Homebrew
brew services start lore
# Manual start
lore daemon start
Terminal window
# 1. You're reviewing a PR and want to understand a change
git log --oneline -1
# a1b2c3d feat: add rate limiting to API
# 2. See which AI sessions informed this commit
lore show --commit a1b2c3d
# Session: 7f3a2b1
# Tool: claude-code
# Messages: 23
# 3. View the full conversation
lore show 7f3a2b1