Skip to content

Releases: lucheeseng827/loregraph

Release list

v0.1.1

Choose a tag to compare

@github-actions github-actions released this 29 Jun 17:20

loregraph v0.1.1

First public release of loregraph — a single static, zero-dependency Rust binary that turns the chat transcripts your AI coding agents already write to disk into a persistent, provenance-anchored memory knowledge graph of your decisions and the code they shaped. Browse it on a canvas, or let the agent self-recall over MCP instead of re-asking the model.

The default build is pure Rust, static, air-gapped — zero Python / C / ML / network. It runs disconnected, on a laptop, in a locked-down CI runner, or on an air-gapped host.

Highlights

  • Provenance-grade memory — every Decision / Implementation node is anchored to the exact session_id and the contemporaneous repo commit (via gix), so you can answer who decided what, when, and which code it shaped.
  • Transcript-native ingest — reads on-disk Claude Code JSONL and Codex CLI rollouts read-only; redacts secrets on ingest.
  • Recall pipeline (R1–R4 / T1–T2) — kind-aware priors, value-node semantic set, graph-hop, exact-lexical, BM25 fallback, centrality prior, and a supersession filter that hides decisions an explicit "… instead of X …" later replaced.
  • Three embedder tiers, runtime-selected (LORE_EMBED_BACKEND) — hash (lexical, default, deps-free), static (GloVe word-vectors, semantic, no inference), and neural (candle BERT, --features neural).
  • Browse + query — an embedded pan/zoom canvas (lore serve, no Node), headless recall (lore ask, --json), and an MCP memory server (lore mcp, --features mcp) with read tools + one append-only memory.note.
  • Durable + crash-safe — redb + a CRC-framed write-ahead log; re-running index is a content-addressed, idempotent upsert.

Install

# Homebrew (this repo is its own tap)
brew tap lucheeseng827/loregraph https://github.com/lucheeseng827/loregraph
brew install lore

# distroless container (linux/amd64 + linux/arm64, nonroot)
docker run --rm mancube/loregraph:0.1.1 version

# prebuilt binary
cargo binstall loregraph

# from source
cargo install --git https://github.com/lucheeseng827/loregraph loregraph

Or grab a static binary below and verify it against SHA256SUMS.

Artifacts

  • lore-x86_64-unknown-linux-musl.tar.gz / lore-aarch64-unknown-linux-musl.tar.gz — static musl
  • lore-x86_64-apple-darwin.tar.gz / lore-aarch64-apple-darwin.tar.gz
  • lore-x86_64-pc-windows-msvc.zip
  • SHA256SUMS
  • Container: mancube/loregraph:0.1.1 (+ :latest)

Notes

This is an early PoC slice — solid where it ships, honest about what's deferred (aider / Cursor connectors, tree-sitter symbols, DataFusion analytics). Opt-in features (mcp, neural, byo-llm, index-hnsw) build from source. Apache-2.0. The name loregraph (binary lore) is a working title.

Full Changelog: https://github.com/lucheeseng827/loregraph/commits/v0.1.1

Full Changelog: https://github.com/lucheeseng827/loregraph/commits/v0.1.1

Full Changelog: https://github.com/lucheeseng827/loregraph/commits/v0.1.1

Full Changelog: https://github.com/lucheeseng827/loregraph/commits/v0.1.1