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.
pip install "palaia[fastembed]"
palaia init
palaia doctor --fixCopy 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.
See Claude Code Integration for details.
pip install "palaia[mcp,fastembed]"
palaia initAdd to your MCP config (see MCP Server docs for details):
{
"mcpServers": {
"palaia": { "command": "palaia-mcp" }
}
}pip install "palaia[sqlite-vec]" # ~30x faster vector search (SIMD)
pip install "palaia[mcp]" # MCP server
pip install "palaia[curate]" # Knowledge curation
pip install "palaia[postgres]" # PostgreSQL + pgvectorInstall multiple: pip install "palaia[fastembed,mcp,sqlite-vec]"
palaia write "API rate limit is 100 req/min per user" \
--type memory --tags api,limits --project myapppalaia query "what's the rate limit"Results are ranked by hybrid score (BM25 keyword + semantic embedding).
# Process (workflow / SOP)
palaia write "1. Build 2. Test 3. Deploy" --type process --project myapp
# Task with status tracking
palaia write "Fix auth bug in login" --type task --status open --priority high --assignee alicepalaia status # Entry counts, backend, embedding provider, upgrade command
palaia doctor # Full diagnostics
palaia detect # Available embedding providerspalaia upgradeAuto-detects install method, preserves all extras, runs palaia doctor --fix, upgrades OpenClaw plugin if present.
If palaia upgrade is not recognized (versions before v2.3.0), see the SKILL.md update section for manual instructions.
- Storage & Search — Backend options, embedding providers
- Claude Code — Claude Code integration and setup
- MCP Server — Claude Desktop / Cursor setup
- Multi-Agent — Team setup, scopes, aliases
- CLI Reference — All commands and flags
- Configuration — Tuning and config keys