A high-performance PostgreSQL extension for storing embeddings and performing vector similarity searches in AI applications.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install pgvector
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 pgvector using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The pgvector skill provides a robust bridge between relational data and high-dimensional vector search. By integrating directly with PostgreSQL, it allows developers to store, index, and query embeddings alongside traditional metadata. This makes it an essential tool for anyone using Openclaw Skills to build sophisticated AI systems that require semantic understanding and efficient data retrieval.
To begin using this skill with Openclaw Skills, connect to your PostgreSQL instance and verify the extension:
# Connect to the local instance
psql -h localhost -p 5433 -U damien -d postgres
Enable the extension and create your first vector-enabled table:
CREATE EXTENSION IF NOT EXISTS vector;
CREATE TABLE documents (
id BIGSERIAL PRIMARY KEY,
content TEXT,
embedding vector(1536)
);
The skill utilizes a structured schema within PostgreSQL to manage embeddings and associated metadata efficiently:
| Column | Type | Description |
|---|---|---|
| id | BIGSERIAL | Unique identifier for the document |
| content | TEXT | The source text or data used to generate the embedding |
| embedding | vector(N) | The high-dimensional vector storage (supports up to 16,000 dimensions) |
| metadata | JSONB | Extensible field for storing source info, authors, or tags |
| created_at | TIMESTAMPTZ | Automatic timestamping for record tracking |
Loading
A centralized management utility to audit, categorize, and deduplicate your Openclaw Skills ecosystem.

A robust long-term memory management system for OpenClaw agents utilizing structured PostgreSQL and vector-based semantic search.

An automated design system generator that creates production-ready UI specs and starter code from local datasets.

A protocol for AI agents to enforce explicit state tracking, evidence-based completion, and the elimination of mid-task stalls.

A specialized management utility designed to list, categorize, and identify functional overlaps within your library of Openclaw Skills.

A robust utility for extracting audio from video URLs and converting it into accurate text or subtitles using local models or cloud services.








































