From d1fa7beb1f26defc072c167471dcdd856380e31c Mon Sep 17 00:00:00 2001 From: Christian Wendler Date: Mon, 6 Apr 2026 18:57:40 +0000 Subject: [PATCH] fix: clarify comparison table + make prompts visually distinct from instructions - Rename "Stock Memory" to "Claude Built-in Memory" in comparison table - Change all paste-this prompts from blockquotes to code blocks with explicit "copy this prompt into your agent's chat" phrasing - Prevents users from misreading agent prompts as instructions for themselves Co-Authored-By: Claude Opus 4.6 --- README.md | 24 ++++++++++++++---------- docs/claude-code.md | 12 +++++++----- docs/getting-started.md | 18 +++++++++++------- 3 files changed, 32 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index d3a6abb..aef0b5b 100644 --- a/README.md +++ b/README.md @@ -55,8 +55,8 @@ palaia gives your agents a persistent, searchable knowledge store. They save wha ## Comparison -| Feature | palaia | claude-mem | Mem0 | Stock Memory | -|---------|--------|-----------|------|--------------| +| Feature | palaia | claude-mem | Mem0 | Claude Built-in Memory | +|---------|--------|-----------|------|------------------------| | Local-first | Yes | Yes | No (cloud) | Yes | | Cross-tool (MCP) | Yes (any MCP client) | No (Claude Code only) | No | No | | Native Vector Search | sqlite-vec / pgvector | ChromaDB (separate) | Cloud | No | @@ -73,18 +73,22 @@ palaia gives your agents a persistent, searchable knowledge store. They save wha ### Recommended: Paste into your agent -Both OpenClaw and Claude Code support fully autonomous setup — paste the prompt, the agent does the rest. +Both OpenClaw and Claude Code support fully autonomous setup. Copy the prompt below and paste it directly into your agent's chat — the agent handles everything from there. -**OpenClaw:** +**OpenClaw** — copy this prompt into your OpenClaw agent: -> Install or update the palaia memory skill from ClawHub to the latest version (even if already present). Read the SKILL.md completely and follow it step by step. Run palaia init, then palaia doctor --fix and resolve all warnings — don't stop until the doctor report is clean. Set up completely. +```text +Install or update the palaia memory skill from ClawHub to the latest version (even if already present). Read the SKILL.md completely and follow it step by step. Run palaia init, then palaia doctor --fix and resolve all warnings — don't stop until the doctor report is clean. Set up completely. +``` -**Claude Code:** +**Claude Code** — copy this prompt into Claude Code: -> Install palaia for persistent memory in this Claude Code environment. -> Run: `pip install "palaia[mcp,fastembed]" && palaia init && palaia setup claude-code --global` -> Then tell me to restart Claude Code so the MCP tools become active. -> After restart, read the CLAUDE.md and follow its instructions. +```text +Install palaia for persistent memory in this Claude Code environment. +Run: pip install "palaia[mcp,fastembed]" && palaia init && palaia setup claude-code --global +Then tell me to restart Claude Code so the MCP tools become active. +After restart, read the CLAUDE.md and follow its instructions. +``` See [Claude Code Integration](docs/claude-code.md) for the full guide. diff --git a/docs/claude-code.md b/docs/claude-code.md index db67494..f9f6428 100644 --- a/docs/claude-code.md +++ b/docs/claude-code.md @@ -4,12 +4,14 @@ palaia works as a fully autonomous memory system for Claude Code. One command se ## Quick Start -Paste this into Claude Code: +Copy this prompt into Claude Code's chat: -> Install palaia for persistent memory in this Claude Code environment. -> Run: `pip install "palaia[mcp,fastembed]" && palaia init && palaia setup claude-code --global` -> Then tell me to restart Claude Code so the MCP tools become active. -> After restart, read the CLAUDE.md and follow its instructions. +```text +Install palaia for persistent memory in this Claude Code environment. +Run: pip install "palaia[mcp,fastembed]" && palaia init && palaia setup claude-code --global +Then tell me to restart Claude Code so the MCP tools become active. +After restart, read the CLAUDE.md and follow its instructions. +``` That's it. After the restart, Claude Code has 7 memory tools and knows how to use them proactively. diff --git a/docs/getting-started.md b/docs/getting-started.md index 3253606..57dce63 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -4,9 +4,11 @@ ### With OpenClaw (recommended) -Paste this into your agent: +Copy this prompt into your OpenClaw agent's chat: -> Install or update the palaia memory skill from ClawHub to the latest version (even if already present). Read the SKILL.md completely and follow it step by step. Run palaia init, then palaia doctor --fix and resolve all warnings — don't stop until the doctor report is clean. Set up completely. +```text +Install or update the palaia memory skill from ClawHub to the latest version (even if already present). Read the SKILL.md completely and follow it step by step. Run palaia init, then palaia doctor --fix and resolve all warnings — don't stop until the doctor report is clean. Set up completely. +``` ### Manual (pip) @@ -18,12 +20,14 @@ palaia doctor --fix ### With Claude Code -Paste this into Claude Code: +Copy this prompt into Claude Code's chat: -> Install palaia for persistent memory in this Claude Code environment. -> Run: `pip install "palaia[mcp,fastembed]" && palaia init && palaia setup claude-code --global` -> Then tell me to restart Claude Code so the MCP tools become active. -> After restart, read the CLAUDE.md and follow its instructions. +```text +Install palaia for persistent memory in this Claude Code environment. +Run: pip install "palaia[mcp,fastembed]" && palaia init && palaia setup claude-code --global +Then tell me to restart Claude Code so the MCP tools become active. +After restart, read the CLAUDE.md and follow its instructions. +``` See [Claude Code Integration](claude-code.md) for details.