Skip to content

Latest commit

 

History

History
113 lines (80 loc) · 2.94 KB

File metadata and controls

113 lines (80 loc) · 2.94 KB

Getting Started

Installation

With OpenClaw

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.

Manual (pip)

pip install "palaia[fastembed]"
palaia init
palaia doctor --fix

With 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.

See Claude Code Integration for details.

Other MCP Clients (Claude Desktop, Cursor)

pip install "palaia[mcp,fastembed]"
palaia init

Add to your MCP config (see MCP Server docs for details):

{
  "mcpServers": {
    "palaia": { "command": "palaia-mcp" }
  }
}

Optional Extras

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 + pgvector

Install multiple: pip install "palaia[fastembed,mcp,sqlite-vec]"

First Steps

Write a memory

palaia write "API rate limit is 100 req/min per user" \
  --type memory --tags api,limits --project myapp

Search by meaning

palaia query "what's the rate limit"

Results are ranked by hybrid score (BM25 keyword + semantic embedding).

Structured types

# 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 alice

Check health

palaia status     # Entry counts, backend, embedding provider, upgrade command
palaia doctor     # Full diagnostics
palaia detect     # Available embedding providers

Updating

palaia upgrade

Auto-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.

Next Steps