Skip to main content

Local, cloud-free memory for OpenClaw agents.

Project description

             .__         .__
___________  |  | _____  |__|____
\____ \__  \ |  | \__  \ |  \__  \
|  |_> > __ \|  |__/ __ \|  |/ __ \_
|   __(____  /____(____  /__(____  /
|__|       \/          \/        \/

The Knowledge System for AI Agent Teams

Your agents forget. palaia doesn't.

CI PyPI Python 3.9+ License: MIT OpenClaw Plugin


What palaia Does

AI agents are stateless by default. Every session starts from scratch — no memory of past decisions, no shared knowledge between agents, no context that survives a restart.

palaia gives your agents a persistent, searchable knowledge store. They save what they learn. They find it again by meaning, not keyword. They share it across tools and sessions — automatically.


What palaia Is Not

  • Not a chatbot or prompt manager
  • Not a cloud service (everything runs locally)
  • Not a vector database you manage yourself (it manages itself)
  • Not limited to one tool — works across OpenClaw, Claude Code, and any MCP client

What You Get

Capability What it means
Agents remember across sessions Knowledge survives restarts, tool switches, and team handoffs
Find anything by meaning Hybrid BM25 + vector search across 6 embedding providers
Zero-config local setup SQLite with native SIMD vector search — no separate database process
Works everywhere via MCP OpenClaw and Claude Code: paste a prompt, done. Claude Desktop, Cursor, any MCP host: manual config.
Multi-agent ready Private, team, and public scopes — agents see what they should
Agent isolation --isolated mode for strict per-agent memory boundaries
Crash-safe by default SQLite WAL mode survives power loss, kills, OOM
Fast Embed server keeps model in RAM — CLI queries ~1.5s, MCP/Plugin <500ms
WebUI memory explorer palaia ui — browse, search, create entries in the browser. Localhost only.
Scales when needed Swap to PostgreSQL + pgvector for distributed teams, no code changes

Comparison

Feature palaia claude-mem Mem0 OpenClaw Built-in
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) 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 External (5+)
Open Source MIT AGPL-3.0 Apache 2.0 MIT
Crash-safe (WAL) Yes Yes (WAL) Partial (SQLite, not primary) No

Install

Recommended: Paste into your agent

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

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.

See Claude Code Integration for the full guide.

Manual Setup

OpenClaw:

pip install "palaia[fastembed]"
palaia init
openclaw plugins install @byte5ai/palaia
palaia doctor --fix

Then activate the memory slot in your OpenClaw config:

// openclaw.json
{
  plugins: {
    slots: { memory: "palaia" }
  }
}

Restart the gateway: openclaw gateway restart

Claude Code:

pip install "palaia[mcp,fastembed]"
palaia init
palaia setup claude-code --global

Restart Claude Code after setup.

Other MCP Clients (Claude Desktop, Cursor)

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

Add to your MCP config:

  • Claude Desktop: ~/.config/claude/claude_desktop_config.json
  • Cursor: .cursor/mcp.json
{
  "mcpServers": {
    "palaia": {
      "command": "palaia-mcp"
    }
  }
}

Note: These clients require manual MCP configuration. palaia provides the memory tools, but you need to instruct the agent yourself.

Optional Extras

pip install "palaia[curate]"       # Knowledge curation
pip install "palaia[postgres]"     # PostgreSQL + pgvector backend

Note: palaia[fastembed] already includes sqlite-vec for native vector search and the embed-server auto-starts on first query. No manual optimization needed.

Upgrading? palaia upgrade — auto-detects install method, preserves extras, runs doctor.

Quick Start

palaia write "API rate limit is 100 req/min" \
  --type memory --tags api,limits                   # Save knowledge
palaia query "what's the rate limit"                # Find it by meaning
palaia status                                        # Check health

Documentation

Document Description
Getting Started Installation, first steps, quick tour
Storage & Search SQLite, PostgreSQL, sqlite-vec, pgvector, embedding providers
Claude Code Claude Code integration, setup command, paste-this prompt
MCP Server Setup for Claude Desktop, Cursor, tool reference, read-only mode
Embed Server Performance optimization, socket transport, daemon mode
Multi-Agent Scopes, agent identity, team setup, aliases
Configuration All config keys, embedding chain, tuning
CLI Reference All commands with flags and examples
Migration Guide Import from other systems, flat-file migration
Architecture Module map, data flows, design decisions
SKILL.md Agent-facing documentation (what agents read)
Contributing Versioning, release process, development setup
Changelog Release history

Development

git clone https://github.com/byte5ai/palaia.git
cd palaia
pip install -e ".[dev]"
pytest

Links


MIT — (c) 2026 byte5 GmbH

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

palaia-2.7.3.tar.gz (329.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

palaia-2.7.3-py3-none-any.whl (225.7 kB view details)

Uploaded Python 3

File details

Details for the file palaia-2.7.3.tar.gz.

File metadata

  • Download URL: palaia-2.7.3.tar.gz
  • Upload date:
  • Size: 329.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for palaia-2.7.3.tar.gz
Algorithm Hash digest
SHA256 ab7ca868690e65890dbeb1380af7b79d76789e8471069381249b3b47d46f02f8
MD5 9b94dfb0f0083dc85b414dec131da939
BLAKE2b-256 b8c7e73644ee9d9d5e12e006c0d572fc818f33b7cff32446e1bfb0a4b09fa388

See more details on using hashes here.

File details

Details for the file palaia-2.7.3-py3-none-any.whl.

File metadata

  • Download URL: palaia-2.7.3-py3-none-any.whl
  • Upload date:
  • Size: 225.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for palaia-2.7.3-py3-none-any.whl
Algorithm Hash digest
SHA256 aaceb52685cdc1acd90e6025410f4cd6c9aaf62bfe0dd6abc0fff294cb9a0a91
MD5 689c5923b2302b3abe636b4ce0c36fed
BLAKE2b-256 34fbfbec7e3378b46d4e6aaf513a6fffd73deb7a45e1cf6ed71370a36ce62a80

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page