Install
openclaw skills install pgmemoryPersistent semantic memory for OpenClaw agents — PostgreSQL + pgvector
openclaw skills install pgmemoryGives OpenClaw agents persistent semantic memory backed by PostgreSQL + pgvector.
Agents wake up fresh every session. pgmemory fixes that — decisions, constraints, infrastructure facts, and discoveries persist across sessions and surface automatically when relevant.
Run once after installing:
python3 ~/.openclaw/skills/pgmemory/scripts/setup.py
The wizard handles everything: Docker/PostgreSQL, migrations, embedding provider, AGENTS.md scaffolding, and decay cron.
Read this SKILL.md when:
--doctor)python3 ~/.openclaw/skills/pgmemory/scripts/write_memory.py \
--key "unique.descriptive.key" \
--content "What to remember" \
--category decision \
--importance 3
Categories: decision · constraint · infrastructure · vision · preference · context · task
Importance:
3 = critical — decisions, constraints, infrastructure. Never expires. Always loaded.2 = important — context, preferences. Expires after 180 days if unused.1 = transient — low-value notes. Expires after 30 days.# Semantic search
python3 ~/.openclaw/skills/pgmemory/scripts/query_memory.py "database connection"
# Load all critical memories (importance 3)
python3 ~/.openclaw/skills/pgmemory/scripts/query_memory.py --importance 3 --limit 20
# Stats
python3 ~/.openclaw/skills/pgmemory/scripts/query_memory.py --stats
# List all keys
python3 ~/.openclaw/skills/pgmemory/scripts/query_memory.py --list
# Full health check
python3 ~/.openclaw/skills/pgmemory/scripts/setup.py --doctor
# Validate config
python3 ~/.openclaw/skills/pgmemory/scripts/setup.py --validate
# Run pending migrations
python3 ~/.openclaw/skills/pgmemory/scripts/setup.py --migrate
# Sync pgmemory into all OpenClaw agent workspaces
python3 ~/.openclaw/skills/pgmemory/scripts/setup.py --sync-agents
# Run decay cycle manually
python3 ~/.openclaw/skills/pgmemory/scripts/setup.py --decay
Write immediately when:
Skip writing for:
Each OpenClaw agent gets its own namespace (= agent ID). Run --sync-agents after
adding a new agent to scaffold pgmemory automatically:
openclaw agents add code-writer
python3 ~/.openclaw/skills/pgmemory/scripts/setup.py --sync-agents
Or add --sync-agents to HEARTBEAT.md for automatic pickup within 30 minutes.
After a sub-agent completes, pull its important findings into the primary namespace:
python3 ~/.openclaw/skills/pgmemory/scripts/query_memory.py \
--harvest shopwalk:subagent:task-label
Memories decay based on age and category. Frequently accessed memories stay fresh. Decayed memories move to archive (never deleted). Restored automatically if matched in a future search.
Decay runs daily via cron (configured during setup). Run manually anytime:
python3 ~/.openclaw/skills/pgmemory/scripts/setup.py --decay
Changing providers after setup requires re-embedding all memories — you cannot mix
dimensions in the same database. Run --doctor first to check for mismatches.
⚠️ Provider migration (--re-embed) is planned for v1.1. For now: set up a fresh
database if you need to switch providers.
Minimal (all that's required):
{
"db": { "uri": "postgresql://openclaw@localhost:5432/openclaw" },
"embeddings": { "provider": "voyage", "api_key_env": "VOYAGE_API_KEY" },
"agent": { "name": "main" }
}
Default config is at ~/.openclaw/pgmemory.json. Override with --config <path>.
Full config reference: see references/schema.sql and CHANGELOG.md.
psycopg2-binary, numpy — install via pip install -r requirements.txt