From 06f112cb3f1c6daa8bbe55dc772d8746968ed622 Mon Sep 17 00:00:00 2001 From: Christian Wendler Date: Mon, 6 Apr 2026 21:55:21 +0000 Subject: [PATCH] fix: fact-check comparison table against competitor sources MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Verified all four competitor columns against their GitHub repos and official documentation (April 2026): - Mem0: PostgreSQL→false, Multi-Agent→Yes (user/agent/run), Native Vector→FAISS, Crash-Safe→Partial, License→Apache 2.0, Local-first→Yes (optional cloud) - claude-mem: Crash-Safe→Yes (WAL documented), Structured Types→Yes (6 categories), Multi-Agent→Partial (session isolation) - OpenClaw Built-in: Verified via local code/docs — no changes needed, External Embedding Providers (5+) documented Co-Authored-By: Claude Opus 4.6 --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 689c4bd..e6a57f1 100644 --- a/README.md +++ b/README.md @@ -57,15 +57,15 @@ palaia gives your agents a persistent, searchable knowledge store. They save wha | Feature | palaia | claude-mem | Mem0 | OpenClaw Built-in | |---------|--------|-----------|------|-------------------| -| Local-first | Yes | Yes | No (cloud) | Yes | +| Local-first | Yes | Yes | Yes (optional cloud) | Yes | | Cross-tool (MCP) | Yes (any MCP client) | No (Claude Code only) | No | No (OpenClaw only) | -| Native Vector Search | sqlite-vec / pgvector | ChromaDB (separate) | Cloud | No | -| Structured Types | memory/process/task | decisions/bugfixes | No | No | -| Multi-Agent Scopes | private/team/public | No | Per-user | No | +| Native Vector Search | sqlite-vec / pgvector | ChromaDB (separate) | FAISS (embedded) | No | +| Structured Types | memory/process/task | Yes (6 categories) | No | No | +| Multi-Agent Scopes | private/team/public | Partial (session isolation) | Yes (user/agent/run) | No | | Smart Tiering | HOT/WARM/COLD | No | No | No | -| Embedding Providers | 6 (configurable) | 1 (fixed) | Cloud | None | -| Open Source | MIT | AGPL-3.0 | Partial | MIT | -| Crash-safe (WAL) | Yes | Partial | N/A | No | +| Embedding Providers | 6 (configurable) | 1 (fixed) | Cloud | External (5+) | +| Open Source | MIT | AGPL-3.0 | Apache 2.0 | MIT | +| Crash-safe (WAL) | Yes | Yes (WAL) | Partial (SQLite, not primary) | No | ---