One long-term memory system across your AI agents.
Boot a stable baseline every session, recall the right nodes before each reply,
and keep a durable memory graph that survives tools, restarts, and runtimes.
Website · SaaS · 中文 · Quick Start · Runtimes · Manual Setup · Development
| Recall Workbench | Memory Browser | Dream Diary |
|---|---|---|
![]() |
![]() |
![]() |
Lore is a self-hosted memory service for coding agents and other LLM runtimes. It gives agents a durable graph of memories, a fixed startup baseline, per-prompt recall, and guarded write tools.
Most memory layers stop at retrieval. Lore covers the full lifecycle:
- Boot — load stable identity, workflow, user, and runtime memories at session start
- Recall — inject a small
<recall>candidate set before the agent answers - Read before trust — open a node before relying on a recalled candidate
- URI-first graph — durable addresses such as
core://agent,preferences://user,project://my_project - Disclosure — each memory states when it should surface
- Dream — scheduled maintenance with quality checks and rollback history
Prefer managed hosting? Use Loremem SaaS and connect agents with a token — no local Docker required. Self-host below if you want everything on your machine.
Requires Node.js 20+.
npx @loremem/cliChinese installer output:
npx @loremem/cli --lang zhOne command:
- starts Lore with Docker Compose (
postgres+redis+web) when needed - connects supported agent runtimes
- writes
~/.lore/config.json
Bare npx @loremem/cli opens the interactive installer on a TTY. Pass flags for non-interactive installs. Re-run anytime to update. Missing agent CLIs are skipped without failing the rest.
Common flags:
| Flag | Description |
|---|---|
--pre |
Pre-release channel (pre-latest image) |
--dev |
Dev channel (dev-latest image) |
--channels CH,... |
Install only some runtimes: claudecode, codex, pi, openclaw, hermes, opencode |
--base-url URL |
Use an existing Lore server and skip local Docker |
--api-token TOKEN |
API token for the server |
--skip-docker |
Configure agents only |
--force |
Reinstall even when the version is unchanged |
--lang en|zh |
Installer language |
Examples:
# Pre-release
npx @loremem/cli install --pre
# External server
npx @loremem/cli install \
--base-url http://192.168.1.100:18901 --api-token my-token
# Claude Code + Pi only
npx @loremem/cli install --channels claudecode,pi
# Update later
npx @loremem/cli update
npx @loremem/cli statusOpen:
http://127.0.0.1:18901/setup
Complete:
- Embedding — OpenAI-compatible endpoint used for semantic recall
- View LLM — model used for view refinement and Dream
- Global boot memories —
core://agent,core://soul,preferences://user - Channel agent memories — runtime-specific nodes under
core://agent/*
Skip saves the default value for an empty boot node and continues.
You are ready when:
http://127.0.0.1:18901/setupcompletes- the Web UI opens at
http://127.0.0.1:18901 - restarting a connected agent injects Lore boot context and later shows
<recall>candidates
Then open /settings only if you want to tune recall weights, Dream schedule, backups, or write policy.
| Runtime | Integration | What you get |
|---|---|---|
| Pi | pi-extension/ |
Extension tools, startup boot, per-prompt recall. Best fit when you want Lore as the primary memory layer. |
| Claude Code | claudecode-plugin/ |
Marketplace plugin, MCP tools, SessionStart boot, per-prompt recall hooks |
| Codex | codex-plugin/ |
Local marketplace plugin, MCP config, boot/recall hooks |
| OpenClaw | openclaw-plugin/ |
Runtime plugin with boot, recall, and Lore tools |
| Hermes | hermes-plugin/ |
MemoryProvider plugin with Lore tools and recall |
| OpenCode | opencode-plugin/ |
Native plugin at ~/.config/opencode/plugins/lore-memory.js with exact lore_* tools |
| Generic MCP | /api/mcp |
Streamable HTTP endpoint for clients that can attach remote tools |
After install, restart each runtime. Useful notes:
- Claude Code keeps its own auto-memory. To make Lore the only memory system, set
CLAUDE_CODE_DISABLE_AUTO_MEMORY=1or"autoMemoryEnabled": falsein~/.claude/settings.json. - Codex may ask you to trust Lore hooks under
/hooks. If/pluginsstill shows Lore as installable, install it there; the script has already configured MCP and user-level hooks. - OpenCode reads
~/.lore/config.json. The installer skips OpenCode cleanly when theopencodeCLI is absent. See OpenCode notes for compatibility details.
Generic MCP URL shape:
http://your-host:18901/api/mcp?client_type=mcp
Once connected, the agent flow is:
- load boot memories at session start
- receive
<recall>candidates before prompts - open relevant nodes with
lore_get_node - create or update durable memories when something should survive the session
- use the Web UI for graph editing, recall inspection, Dream, backup, and settings
Useful pages:
| Path | Purpose |
|---|---|
/memory |
Browse and edit the memory graph |
/recall |
Inspect retrieval stages and scoring |
/dream |
Run structural maintenance |
/settings |
Configure runtime behavior |
Use this path when you want to run the server yourself.
services:
postgres:
image: fffattiger/pgvector-zhparser:pg16
restart: unless-stopped
environment:
TZ: ${TZ:-Asia/Shanghai}
POSTGRES_DB: ${POSTGRES_DB:-lore}
POSTGRES_USER: ${POSTGRES_USER:-lore}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-change-me}
ports:
- "${POSTGRES_PORT:-55439}:5432"
volumes:
- ${POSTGRES_DATA_DIR:-./data/postgres}:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-lore} -d ${POSTGRES_DB:-lore}"]
interval: 10s
timeout: 5s
retries: 10
redis:
image: redis:7-alpine
restart: unless-stopped
command: ["redis-server", "--appendonly", "yes"]
volumes:
- ${REDIS_DATA_DIR:-./data/redis}:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 10
web:
image: fffattiger/lore:latest
restart: unless-stopped
pull_policy: always
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
environment:
TZ: ${TZ:-Asia/Shanghai}
DATABASE_URL: postgresql://${POSTGRES_USER:-lore}:${POSTGRES_PASSWORD:-change-me}@postgres:5432/${POSTGRES_DB:-lore}
REDIS_URL: redis://redis:6379/0
API_TOKEN: ${API_TOKEN:-}
ports:
- "${WEB_PORT:-18901}:18901"
volumes:
- ${SNAPSHOT_DATA_DIR:-./data/snapshots}:/app/snapshotsdocker compose up -d
curl http://127.0.0.1:18901/api/healthThen point agents at the server:
npx @loremem/cli install \
--base-url http://127.0.0.1:18901 --skip-dockergit clone https://github.com/FFatTiger/lore.git
cd lore
docker compose up -d --buildApp code and package.json live under web/.
cd web
cp .env.local.example .env.local
npm install
npm run devRequirements:
- Node.js 20+
- PostgreSQL with the
vectorextension - optional Redis; if Redis is unset or unreachable, Lore falls back to a local LRU cache
Useful commands from web/:
npm run typecheck
npm testSee CONTRIBUTING.md for package layout and contribution flow.
npx @loremem/cli uninstall# Specific runtimes
npx @loremem/cli uninstall --channels claudecode,pi
# Remove config and Docker data too
npx @loremem/cli uninstall --purge -yLegacy shell installers
scripts/install.sh, scripts/install.zh.sh, and scripts/uninstall.sh remain for compatibility but are frozen and no longer receive new features. Prefer npx @loremem/cli.
# legacy only
curl -fsSL https://raw.githubusercontent.com/FFatTiger/lore/main/scripts/install.sh | bashNative plugin path, compatibility overrides, and MCP escape hatch
The installer places lore-memory.js at ~/.config/opencode/plugins/lore-memory.js and reads the server URL/token from ~/.lore/config.json.
Boot is injected through experimental.chat.system.transform. Prompt recall is injected as a current-turn part through chat.message. If the experimental system hook or Lore is unavailable, the adapter fails open instead of blocking the conversation.
The standard install does not configure OpenCode MCP. The native plugin removes duplicate Lore MCP entries at runtime. When an existing user-level oh-my-openagent.json[c] or legacy oh-my-opencode.json[c] is safely parseable, the installer also sets claude_code.plugins_override["lore@lore"] = false to stop duplicate Claude Lore lifecycle hooks. It does not modify Claude Code files, warns and skips unsafe compatibility config, and restores the previous value on uninstall.
Generic /api/mcp remains a manual fallback. Set LORE_OPENCODE_ALLOW_MCP=1 only when you intentionally want that path.



