You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Existing AI memory tools (mem0, Letta, …) are Claude-only or chat-only and bur
13
13
-**One memory hall, many agents.** Claude writes via MCP, Codex writes via CLI, your shell scripts write via curl. They all read the same store.
14
14
-**Cross-session by default.** Every entry is timestamped, agent-tagged, and namespaced. Pick up tomorrow where any agent left off today.
15
15
-**Zero-LLM write path.** Writes are SQLite + embedding only — P99 < 100ms on local-only deployments (Ollama same host, sqlite-vec, single tenant). Optional enrichment runs in the background, never blocks you.
16
-
-**Min local, max distributed.** Runs on a single laptop with `sqlite-vec` and local Ollama embeddings. Scales to a multi-host home AI lab with Qdrant + remote embedder via [memory-gateway](https://github.com/USERNAME/memory-gateway).
16
+
-**Min local, max distributed.** Runs on a single laptop with `sqlite-vec` and local Ollama embeddings. Scales to a multi-host home AI lab with Qdrant + remote embedder via [memory-gateway](https://github.com/MakiDevelop/memory-gateway).
17
17
-**Multi-tenant data model from day one.** Schema-ready for multi-user release; v0.1 runtime ships single-tenant for focus (see [ADR 0002](docs/adr/0002-multi-tenant-from-day-one.md)).
> **Auth note:** the standalone `memory-hall serve` runs in dev mode by default — no HMAC, no nonce, listens on localhost. For production / multi-user / network-exposed deployments, deploy via [`memory-gateway`](https://github.com/USERNAME/memory-gateway), which adds HMAC auth, ACL, and governance APIs on top of memory-hall. See [ADR 0003](docs/adr/0003-engine-library-vs-deployment-platform.md) for the engine/platform split.
36
+
> **Auth note:** the standalone `memory-hall serve` runs in dev mode by default — no HMAC, no nonce, listens on localhost. For production / multi-user / network-exposed deployments, deploy via [`memory-gateway`](https://github.com/MakiDevelop/memory-gateway), which adds HMAC auth, ACL, and governance APIs on top of memory-hall. See [ADR 0003](docs/adr/0003-engine-library-vs-deployment-platform.md) for the engine/platform split.
Copy file name to clipboardExpand all lines: docs/adr/0003-engine-library-vs-deployment-platform.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
## Context
7
7
8
-
The author already maintains [memory-gateway](https://github.com/USERNAME/memory-gateway): a FastAPI service with HMAC auth, ACL, staging, proposals, and event-sourced governance APIs. Started in early 2026, paused mid-flight when its mem0-backed proxy turned out to inherit all of mem0's reliability problems.
8
+
The author already maintains [memory-gateway](https://github.com/MakiDevelop/memory-gateway): a FastAPI service with HMAC auth, ACL, staging, proposals, and event-sourced governance APIs. Started in early 2026, paused mid-flight when its mem0-backed proxy turned out to inherit all of mem0's reliability problems.
9
9
10
10
Now building memory-hall as the replacement memory layer raises an obvious question: **build into memory-gateway, or fork a new repo?**
Copy file name to clipboardExpand all lines: docs/design.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ memory-hall is the **engine library**:
41
41
- Storage, embedder, search, CLI, optional minimal FastAPI server for solo use
42
42
- Pip-installable, runs without auth in local-only setups
43
43
44
-
[`memory-gateway`](https://github.com/USERNAME/memory-gateway) is the **deployment platform** that wraps memory-hall with HMAC auth, ACL, staging, proposals, and event-sourced governance.
44
+
[`memory-gateway`](https://github.com/MakiDevelop/memory-gateway) is the **deployment platform** that wraps memory-hall with HMAC auth, ACL, staging, proposals, and event-sourced governance.
45
45
46
46
Solo users: `memory-hall serve` is enough. Production / multi-user: deploy `memory-gateway`, which embeds memory-hall as a library.
0 commit comments