A persistent knowledge substrate for Openclaw Skills that replaces flat-file memory with structured, confidence-scored beliefs and semantic search.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install valence-memory
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install valence-memory using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
Valence Memory transforms your AI agent from a simple conversation logger into a sophisticated knowledge worker by providing a high-fidelity substrate for long-term intelligence. Instead of relying on volatile logs, this skill implements a structured knowledge base where factual statements are treated as beliefs with dimensional confidence scores, domain classification, and strict provenance tracking. It is designed specifically to enhance Openclaw Skills by allowing agents to evolve their understanding of projects, users, and workflows over time.
By leveraging PostgreSQL and pgvector, Valence Memory enables semantic search and auto-recall, ensuring the agent always has the most relevant context without manual intervention. It doesn't just store data; it detects behavioral patterns, surfaces contradictions through tension tracking, and maintains a human-readable disaster recovery fallback through automated MEMORY.md synchronization.
To integrate Valence Memory with your Openclaw Skills, first install the server and database requirements:
# Install the Valence server
pip install ourochronos-valence
# Deploy the database using Docker
docker run -d --name valence-db -e POSTGRES_DB=valence -e POSTGRES_USER=valence -e POSTGRES_PASSWORD=valence -p 5432:5432 pgvector/pgvector:pg17
# Initialize and start the server
valence-server migrate up
valence-server
Then, install and configure the plugin:
openclaw plugins install @ourochronos/memory-valence
Update your openclaw.json to enable the memory slot:
{
"plugins": {
"slots": { "memory": "memory-valence" },
"entries": {
"memory-valence": {
"enabled": true,
"config": { "serverUrl": "http://127.0.0.1:8420", "autoRecall": true }
}
}
}
}
The skill organizes data into a sophisticated relational schema optimized for semantic retrieval:
| Component | Description |
|---|---|
| Beliefs | Factual statements with vector embeddings, confidence scores, and provenance. |
| Entities | Defined concepts, people, or tools and their inter-relationships. |
| Tensions | Metadata tracking logical contradictions between different beliefs for agent resolution. |
| Patterns | Observed recurring behaviors or preferences detected across multiple sessions. |
| Sessions | Complete lifecycle records of agent-user exchanges and insight extraction logs. |
Loading
An automated assistant for managing and editing video storyboards and presentation plans on yboard.online.

Provides AI agents with private, aggregated web search capabilities via a local SearXNG instance.

A specialized search utility to quickly locate and filter documents within the official OpenClaw knowledge base.

A comprehensive A-share market intelligence tool for real-time price tracking, automated sector screening, and personalized investment recommendations.

A specialized tool for rapidly configuring and validating multiple AI agents within Feishu via the OpenClaw framework.

A sophisticated multi-agent orchestration framework for Openclaw Skills that defines clear execution roles and isolation boundaries between specialized AI agents.








































