Skip to content

liminis-context-graph

A local-first context graph engine. One Rust binary that turns a stream of text into a queryable graph of entities, relationships, and episodes — combining property-graph storage, HNSW vector search, and full-text search in a single embedded service, built on LadybugDB. No database server, no separate vector store, no search cluster: everything runs in one process, on your machine, against files in your workspace.

This page documents v0.13.3, built directly from that release tag’s docs/ tree — not from main. Unreleased changes merged to main since this tag are not reflected here; use the version switcher in the footer to browse other published releases.

Source: github.com/verveguy/liminis-context-graph. The README has a short overview and a standalone quickstart; this site is the full reference.

How it fits together

One process, one socket, one database directory. A client speaks JSON-RPC (or MCP) over a Unix socket; extraction calls out to an LLM; everything else — graph storage, vector index, full-text search, the write-ahead log — is embedded.

Everything inside that boundary is one binary and files in a directory you own. The only arrow leaving it is the LLM call, and a local model keeps even that on your machine.

Multi-graph, not multi-tenant. One process can hold many graphs, each with its own group_id and its own WAL stream — see IPC & MCP Reference: group_ids semantics and Operations for the mechanics. That’s a data-organisation capability for one user’s own workspaces and subscriptions, not tenancy: there is no authentication, no authorisation, and no per-tenant resource isolation. Anything that can reach the socket can reach every group in the database — treat the process boundary as the trust boundary.

Reference pages

llms.txt

llms.txt and llms-full.txt provide this site’s content in a form suited to LLM ingestion. CLAUDE.md (agent guidance for contributors working in this repository) is referenced from llms.txt but is not itself published here.

Documents liminis-context-graph v0.13.3.