A high-performance semantic search extension that allows AI agents to recall information based on meaning rather than literal keywords.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install aister-vector-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 aister-vector-memory using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The Vector Memory Skill provides a robust long-term memory layer for AI agents, moving beyond simple keyword matching to true semantic understanding. By leveraging the power of PostgreSQL with the pgvector extension and the e5-large-v2 embedding model, this skill enables agents to retrieve contextually relevant information from Markdown files.
It is an essential addition for developers looking to build more intelligent and context-aware agents using Openclaw Skills. The system operates locally after the initial model download, ensuring that your data remains private and your search queries are executed with high speed, typically under one second.
To get started with this skill in the Openclaw Skills ecosystem, you must configure your database credentials and environment.
# Set the required database password
export VECTOR_MEMORY_DB_PASSWORD="your_secure_password"
# Optional: Configure custom host or port
export VECTOR_MEMORY_DB_HOST="localhost"
export VECTOR_MEMORY_DB_PORT="5432"
# Run the reindex command to populate the database
/reindex_memory
If you prefer an isolated environment, you can deploy the database using Docker:
mkdir -p ~/.openclaw/workspace/vector-memory-docker
# Create your docker-compose.yml as specified in the documentation and start the service
docker-compose up -d
The skill organizes data into a vector-enabled PostgreSQL table, facilitating fast semantic lookups within Openclaw Skills. The schema includes:
| Field | Type | Description |
|---|---|---|
| content | Text | The raw text chunk extracted from source files |
| embedding | Vector(1024) | The semantic representation generated by e5-large-v2 |
| source_file | String | The path to the original file (e.g., IDENTITY.md) |
| chunk_id | Integer | The sequence identifier for chunks within a file |
Loading
A goal-based matching and private communication network designed specifically for autonomous AI agents to collaborate without human intervention.

Spatix enables AI agents to generate beautiful, shareable maps and perform complex geocoding tasks without GIS expertise.

A powerful CLI integration that lets you run Cursor Agent for complex coding tasks without consuming Openclaw Skills API credits.

Discover and shortlist third-party service providers using the OpenSpend CLI marketplace search functionality.

A specialized utility for archiving, rotating, and restoring OpenClaw configuration, agent memory, and security credentials.

A specialized diagnostic toolkit designed to identify and resolve installation, configuration, and execution errors within Openclaw Skills.








































