From 56d1f3c9bafd6ad31a93bf182455207b5a7c85ee Mon Sep 17 00:00:00 2001 From: franzer Date: Wed, 1 Jul 2026 15:29:13 -0600 Subject: [PATCH 1/2] docs: reposition README to lead with blame and sync --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ea610bd..9ff99b6 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,9 @@ [![Release](https://img.shields.io/github/v/release/varalys/lore)](https://github.com/varalys/lore/releases) ![Platform](https://img.shields.io/badge/platform-linux%20%7C%20macOS%20%7C%20WSL2-blue) -**Reasoning history for code.** Lore captures AI coding sessions and links them to git commits. +**Reasoning history for code.** -Lore saves all your AI coding sessions from Claude Code, Codex, etc and links them to commits. When you look at code later, you can see the conversation that produced it. +Lore records your AI coding sessions and links them to git commits. Run `lore blame` on any line to see the conversation that produced it. Sessions sync over git, encrypted, with no server and no account. **Documentation:** [lore.varalys.com](https://lore.varalys.com) @@ -101,11 +101,11 @@ Linked sessions (1): | Feature | Description | |---------|-------------| -| **Session Capture** | Import from 10+ AI coding tools | +| **Blame** | Trace any line of code to the AI session that produced it | +| **Git-ref Sync** | Sync reasoning over git, encrypted, no server; share by passphrase | +| **Session Capture** | One history across 10+ AI coding tools | | **Git Linking** | Connect sessions to commits | -| **Full-text Search** | Find any conversation | -| **Blame Integration** | Trace code to sessions | -| **Git-ref Sync** | Share and back up reasoning over git, encrypted end to end | +| **Full-text Search** | Find any past conversation | | **MCP Server** | Let AI tools query your history | | **Background Daemon** | Real-time capture (optional) | From 3e3692aaf741d631e6a0b7859985adf480137ee6 Mon Sep 17 00:00:00 2001 From: franzer Date: Wed, 1 Jul 2026 16:20:09 -0600 Subject: [PATCH 2/2] docs: clarify sync uses your existing git remotes --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9ff99b6..dd4182f 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ **Reasoning history for code.** -Lore records your AI coding sessions and links them to git commits. Run `lore blame` on any line to see the conversation that produced it. Sessions sync over git, encrypted, with no server and no account. +Lore records your AI coding sessions and links them to git commits. Run `lore blame` on any line to see the conversation that produced it. Sessions sync through your existing git remotes, encrypted, with no server and no account. **Documentation:** [lore.varalys.com](https://lore.varalys.com) @@ -102,7 +102,7 @@ Linked sessions (1): | Feature | Description | |---------|-------------| | **Blame** | Trace any line of code to the AI session that produced it | -| **Git-ref Sync** | Sync reasoning over git, encrypted, no server; share by passphrase | +| **Git-ref Sync** | Sync reasoning through your existing git remotes, encrypted; share by passphrase | | **Session Capture** | One history across 10+ AI coding tools | | **Git Linking** | Connect sessions to commits | | **Full-text Search** | Find any past conversation | @@ -111,7 +111,7 @@ Linked sessions (1): ## Sync -Lore syncs reasoning history over git, with no server and no account. Sessions are encrypted on your machine before they touch a remote, so the git host only ever sees ciphertext. +Lore syncs reasoning history through your existing git remotes, with no server and no account. Sessions are encrypted on your machine before they touch a remote, so the git host only ever sees ciphertext. - **Per-repo store**: encrypted sessions ride inside the project's own repo under `refs/lore/sessions`, so reasoning travels with the code. A teammate who clones the repo and knows the shared passphrase can read it and run `lore blame`. - **Global store** (`lore sync --global`): a private aggregate of all your sessions across every tool and repo, for multi-machine backup.