Single-file graph memory for local AI, agents, and Python applications
Project description
liel
Git-compatible working memory for AI agents.
Review, diff, merge, trace, and inspect coding-agent memory as a single local file.
Docs: https://hy-token.github.io/liel/
pip install liel
liel-demo
Runs fully local. No API keys required (LLM optional).
The problem
AI coding agents are starting to keep memory, but that memory is often opaque: it lives in chat history, local notes, vector stores, or one-off summaries that are hard to review when branches, sessions, or agents diverge.
liel treats memory as a local artifact. One .liel file stores decisions,
tasks, sources, files, facts, and explicit relationships, so you can see why
a decision was made and what it connects to.
The core is a small Rust property graph engine with Python (PyO3) bindings and optional MCP tools. No server, no cloud, no daemon.
30-second path
Use the fixed SaaS-style memory generator (two agents diverge on the same
bug/decision graph). From a checkout with liel on your PATH and Python 3.9+:
python examples/demo_memory/make_demo_files.py --force
Default output: target/demo-memory/ (base.liel, agent-a.liel,
agent-b.liel, identity-rules.json).
-
Merge preview: review two agent memories before writing
liel merge target/demo-memory/agent-a.liel target/demo-memory/agent-b.liel \ --dry-run --identity-rules target/demo-memory/identity-rules.json \ --edge-strategy idempotent --format json
-
Diff: see what drifted between branches of memory
liel diff target/demo-memory/base.liel target/demo-memory/agent-a.liel \ --identity-rules target/demo-memory/identity-rules.json
-
Inspect: confirm the file opens and summarize what it remembers
liel stats target/demo-memory/base.liel --format json
For more command-line examples, see the command-line guide. For a read-only browser view, see Inspect your memory and the sample viewer.
Where it fits
- Coding-agent project memory that should survive a single chat session.
- Reviewable memory artifacts you can copy, commit, diff, merge, sign, verify, export, and inspect.
- Claude / MCP workflows that need local durable memory without a hosted service.
- Small local-first tools that want a single-file graph memory substrate.
Where it does not fit
- Hosted dashboards or browser-side editing UI.
- A full agent runtime, automatic memory extraction system, or semantic memory service.
- Core vector ANN / embedding management.
- Server-grade concurrent writes to the same file.
Why decisions disappear
Chat turns roll off the context window, but the graph still holds how a choice
was reached. liel trace walks a shortest path so that reasoning stays
visible—not just the final answer.
The name liel comes from the French lier — to connect, to bind.
Coding memory helpers (experimental)
Optional thin wrappers in python/liel/coding_memory.py for File / Decision / bug-shaped Task nodes — see examples/coding_memory/README.md and the Python guide § Coding memory helpers.
Why Local-First
- Your code stays on your machine. No API keys, no telemetry, no cloud round-trips.
- Works with any LLM. Local (Ollama, LM Studio) or cloud (Claude, GPT) — only memory stays local.
- Offline-friendly. Memory persists across sessions without network access.
- One file, no lock-in. Copy, commit, archive, and open with any tool that speaks
.liel.
LLM Setup
Use liel as project memory through MCP:
pip install "liel[mcp]"
Configure your LLM client to start the liel MCP server. In Claude Code, edit
.mcp.json in the project root like this:
{
"mcpServers": {
"liel": {
"type": "stdio",
"command": "/absolute/path/to/liel-mcp",
"args": ["--path", "/absolute/path/to/agent-memory.liel"]
}
}
}
Use the installed liel-mcp executable for command, and set --path to the
.liel file the AI should use as durable memory. For other LLM/MCP clients,
use the equivalent MCP server setting with the same command and args.
Do not put mcpServers in .claude/settings.json; that file is for Claude
Code settings such as permissions and environment variables.
For first-time setup, --path is the clearest option. If the file does not
exist yet, liel creates it on first open. Without --path, the server checks
only the startup directory: if no *.liel file exists there, it uses
./memory.liel; if one exists, it uses that file; if multiple files exist, it
prints the candidates and asks you to register the intended file with --path
instead of choosing one silently.
Then add a memory policy to the agent's project instructions. Start with the
AI memory playbook,
or use the
sample CLAUDE.md as a longer Claude
template.
Recommended LLM Memory Pattern
When using liel as project memory:
- Always check existing memory before asking the user to repeat context.
- Save only durable, high-signal information: decisions, preferences, tasks, sources, and important project facts.
- Do not store temporary reasoning, speculative notes, noisy logs, or every tool result.
- Write at meaningful checkpoints, not every turn.
- Use nodes for entities and edges for relationships.
Try It
import liel
with liel.open("agent-memory.liel") as db:
task = db.add_node(
["Task"],
description="Migrate auth from JWT to server-side sessions",
)
question = db.add_node(
["OpenQuestion"],
content="Use Redis or PostgreSQL for the session store?",
)
rejected = db.add_node(
["RejectedOption"],
option="Redis",
reason="Adds another infrastructure dependency",
)
decision = db.add_node(
["Decision"],
content="Use a PostgreSQL session table",
)
source = db.add_node(["Source"], title="Auth migration notes")
db.add_edge(task, "RAISED", question)
db.add_edge(question, "REJECTED", rejected)
db.add_edge(question, "RESOLVED_BY", decision)
db.add_edge(decision, "SUPPORTED_BY", source)
db.commit()
for node in db.neighbors(question, edge_label="RESOLVED_BY"):
print(node["content"])
Compared To Mem0 / Letta / Zep
liel is intentionally lower-level and local-first. It ships as a single .liel file with no server, no API keys, and no required vector index. Relationships are explicit edges you write and traverse, not only facts inferred from chat history.
Mem0, Letta, and Zep may be a better fit when you want a hosted service, a full agent runtime, automatic memory extraction, temporal graph intelligence, dashboards, or production-scale context assembly. liel is the smaller substrate: local coding agents and project-adjacent tools that need durable, inspectable graph memory they can copy, commit, archive, and open from Python or MCP.
The Zen of Liel
- One file, any place.
- No server, no waiting.
- Minimal dependencies, simple environments.
- Start small, stay local.
Documentation
- Why liel - what it solves and what it does not
- Quickstart - demo, Python, and MCP paths
- AI memory playbook - recommended LLM memory pattern
- Claude project-memory workflow - setup, record, trace, and review with Claude
- Sample CLAUDE.md - Claude project-instructions template
- Architecture - system layers and the Mermaid diagram
- Python guide - API, transactions, traversal, coding memory helpers
- MCP guide - Claude and other MCP-capable tools
- Feature list - what is provided at a glance
- Inspect your memory - read-only stats, export, viewer, diff, merge preview, and trace path
- Reliability - commit semantics, crash recovery, repair
- Operations guide - backup, verify, repair, and release smoke runbook
- Format spec - byte-level
.lielfile format - Product trade-offs - what liel does not do, and why
Status
liel is currently a Beta package. The supported contract is the Python-first API plus the single-writer, single-file reliability model. There is no semantic/vector search in core, and commit() defines crash-safe boundaries. Breaking changes before 1.0 are tracked in the changelog.
Contributing
Pull requests and issues are welcome. A good first step is to run liel-demo and note anything confusing about the output, memory model, or docs.
See CONTRIBUTING.md.
Author
Built by Hayato under hy-token, a personal namespace for small local-first tools and AI infrastructure experiments.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file liel-0.7.1.tar.gz.
File metadata
- Download URL: liel-0.7.1.tar.gz
- Upload date:
- Size: 1.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab32ee84ee51819260d715b9441e3f6319dd638df4d8cb495205ad9eb22146e2
|
|
| MD5 |
d8fc08f487b85aafa9978714d16dcff1
|
|
| BLAKE2b-256 |
9867fb3469b1bb768a878c893c1ba397dce4f0f3b48a4a7ec9cb688a1b89362b
|
Provenance
The following attestation bundles were made for liel-0.7.1.tar.gz:
Publisher:
release-pypi.yml on hy-token/liel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
liel-0.7.1.tar.gz -
Subject digest:
ab32ee84ee51819260d715b9441e3f6319dd638df4d8cb495205ad9eb22146e2 - Sigstore transparency entry: 1537486763
- Sigstore integration time:
-
Permalink:
hy-token/liel@7e70ac23f37e5da445d4442994e51ea0f7af687c -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/hy-token
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-pypi.yml@7e70ac23f37e5da445d4442994e51ea0f7af687c -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file liel-0.7.1-cp39-abi3-win_amd64.whl.
File metadata
- Download URL: liel-0.7.1-cp39-abi3-win_amd64.whl
- Upload date:
- Size: 381.7 kB
- Tags: CPython 3.9+, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d73176c63c47db52bffeee3bdbcac845e367e9a7216dd8f5e9c5066d8e881ace
|
|
| MD5 |
31053e687d2010a6acd3abeccda7c63f
|
|
| BLAKE2b-256 |
2c2354cbda17f5d89f692b2a1465b39a85d0829ac6de3db74f635e15e7214b20
|
Provenance
The following attestation bundles were made for liel-0.7.1-cp39-abi3-win_amd64.whl:
Publisher:
release-pypi.yml on hy-token/liel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
liel-0.7.1-cp39-abi3-win_amd64.whl -
Subject digest:
d73176c63c47db52bffeee3bdbcac845e367e9a7216dd8f5e9c5066d8e881ace - Sigstore transparency entry: 1537487162
- Sigstore integration time:
-
Permalink:
hy-token/liel@7e70ac23f37e5da445d4442994e51ea0f7af687c -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/hy-token
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-pypi.yml@7e70ac23f37e5da445d4442994e51ea0f7af687c -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file liel-0.7.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: liel-0.7.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 525.1 kB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edc6cebf058b50522790f21db068c396a50f4b4907e3aaa6fd877c9db089d319
|
|
| MD5 |
ef1b5e6c8908d02bca9a6436b364ea8a
|
|
| BLAKE2b-256 |
5a5630204b305834aebfb74aa8545fa19470992b747e960cb753a3d1ff15d4fb
|
Provenance
The following attestation bundles were made for liel-0.7.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release-pypi.yml on hy-token/liel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
liel-0.7.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
edc6cebf058b50522790f21db068c396a50f4b4907e3aaa6fd877c9db089d319 - Sigstore transparency entry: 1537487307
- Sigstore integration time:
-
Permalink:
hy-token/liel@7e70ac23f37e5da445d4442994e51ea0f7af687c -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/hy-token
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-pypi.yml@7e70ac23f37e5da445d4442994e51ea0f7af687c -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file liel-0.7.1-cp39-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: liel-0.7.1-cp39-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 476.4 kB
- Tags: CPython 3.9+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43d2e91ea34be18ff82a1b25597af3deeaa93513a8d23c834068e3f644cdcad1
|
|
| MD5 |
64350695938a67eee1074c0b85294cce
|
|
| BLAKE2b-256 |
f462fee1e8637f826ebadac6200f1dca9f7a3a54a989059ca16dad524e74589c
|
Provenance
The following attestation bundles were made for liel-0.7.1-cp39-abi3-macosx_11_0_arm64.whl:
Publisher:
release-pypi.yml on hy-token/liel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
liel-0.7.1-cp39-abi3-macosx_11_0_arm64.whl -
Subject digest:
43d2e91ea34be18ff82a1b25597af3deeaa93513a8d23c834068e3f644cdcad1 - Sigstore transparency entry: 1537486892
- Sigstore integration time:
-
Permalink:
hy-token/liel@7e70ac23f37e5da445d4442994e51ea0f7af687c -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/hy-token
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-pypi.yml@7e70ac23f37e5da445d4442994e51ea0f7af687c -
Trigger Event:
workflow_dispatch
-
Statement type: