Getting Started

Get loghop installed and running your first session in under 5 minutes.

Prerequisites

Installation

pipx install loghop

Option 2: uv

uv tool install loghop

Option 3: pip

pip install loghop

For the terminal UI:

pipx install 'loghop[tui]'

First Setup

Navigate to any Git repository where you want to use AI coding assistants:

cd ~/projects/my-app

Initialize loghop:

loghop init

You’ll be asked about optional integrations:

You can skip all of these and use loghop run directly.

Your First Session

Start a session with your default provider:

loghop run

Or specify a provider:

loghop run --provider claude
loghop run --provider codex

Set a goal so the next session knows what you’re working on:

loghop goal "Add user authentication"

The next time you run loghop run, it will build context from all previous sessions.

What Just Happened?

.loghop/
├── config.toml          # Project goal and settings
├── handoffs/            # Context for next session
├── sessions/           # Captured session history
└── timeline.jsonl       # Timeline across all sessions

Every session is captured, redacted, and stored. The next session builds a handoff automatically.

Next Steps