Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

pgvector-setuppg 向量设置

Agent Skill

用于搭建或维护带检索增强的 RAG 工作流,适合让 Agent 处理知识库问答、向量检索、来源引用和事实核查。它可以辅助整理数据接入、Embedding、向量库、召回参数和回答生成流程。使用时需要确认数据来源、更新频率、召回阈值和引用展示方式,避免把未命中的资料或过期内容包装成确定事实。

总安装

214

周安装

9

GitHub Stars

10

下载量

75
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pgvector-setup(pg 向量设置)
来源仓库:https://github.com/vanman2024/ai-dev-marketplace
仓库路径:skills/pgvector-setup
安装命令:
npx skills add https://github.com/vanman2024/ai-dev-marketplace --skill pgvector-setup
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/vanman2024/ai-dev-marketplace --skill pgvector-setup

简介

用于搭建或维护带检索增强的 RAG 工作流。pgvector-setup 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合处理知识库问答、向量检索、来源引用和事实核查。
  • 可辅助整理数据接入、Embedding、向量库、召回参数和回答生成流程。
  • 使用时需确认数据来源、更新频率、召回阈值和引用展示方式。
  • 避免把未命中或过期内容包装成确定事实,确保信息准确性。

SKILL.md

pgvector-setup

Instructions

This skill provides complete pgvector setup for Supabase databases, enabling vector search capabilities for AI applications, RAG systems, and semantic search.

Phase 1: Enable pgvector Extension

  1. Run the setup script to enable pgvector: bash scripts/setup-pgvector.sh [SUPABASE_DB_URL] This creates the pgvector extension and sets up basic embedding tables.
  2. Choose your embedding dimensions based on your model:

- OpenAI text-embedding-3-small: 1536 dimensions - OpenAI text-embedding-3-large: 3072 dimensions - Cohere embed-english-v3.0: 1024 dimensions - Custom models: Check model documentation

Phase 2: Create Embedding Tables

  1. Use the embedding table template: # Copy template and customize for your use case cat templates/embedding-table-schema.sql
  2. Customize the schema:

- Adjust vector dimensions to match your model - Add metadata columns (tags, timestamps, user_id, etc.) - Configure RLS policies for security

  1. Apply the schema: psql $SUPABASE_DB_URL < templates/embedding-table-schema.sql

Phase 3: Create Vector Indexes

Choose index type based on your data size:

HNSW (Recommended for most cases):

  • Best for: < 1M vectors, high recall requirements
  • Pros: Fast queries, good recall, works well with small-medium datasets
  • Cons: Slower inserts, higher memory usage
  • Run: bash scripts/create-indexes.sh hnsw [TABLE_NAME] [DIMENSION]

IVFFlat:

  • Best for: > 1M vectors, write-heavy workloads
  • Pros: Faster inserts, lower memory
  • Cons: Requires training, lower recall
  • Run: bash scripts/create-indexes.sh ivfflat [TABLE_NAME] [DIMENSION]

Performance Tuning:

  • HNSW m parameter (default 16): Higher = better recall, more memory
  • HNSW ef_construction (default 64): Higher = better quality, slower builds
  • IVFFlat lists (default sqrt(rows)): More lists = faster queries, lower recall

Phase 4: Implement Semantic Search

  1. Create the match function: -- See templates/match-function.sql for complete example create or replace function match_documents(query_embedding vector(1536) match_threshold float match_count int) returns setof documents...
  2. Query from application: const {data} = await supabase.rpc('match_documents', {query_embedding: embedding match_threshold: 0.78 match_count: 10});

Phase 5: Setup Hybrid Search (Optional)

For combining keyword and semantic search:

  1. Run hybrid search setup: bash scripts/setup-hybrid-search.sh [TABLE_NAME]
  2. This configures:

- Full-text search with tsvector and GIN indexes - Vector search with HNSW indexes - RRF (Reciprocal Rank Fusion) for combining results - Weighted scoring for tuning keyword vs semantic importance

  1. Use the hybrid search function: select * from hybrid_search('search query text' query_embedding match_count:= 10 full_text_weight:= 1.0 semantic_weight:= 1.0);

Phase 6: Test and Validate

  1. Run validation tests: bash scripts/test-vector-search.sh [TABLE_NAME]
  2. This verifies:

- pgvector extension is enabled - Tables have correct vector dimensions - Indexes are created and being used - Query performance is acceptable - Similarity functions return correct results

Key Decisions

Distance Metric Selection:

  • Cosine distance (<=>): Safe default, handles varying vector magnitudes
  • Inner product (<#>): Faster for normalized vectors (OpenAI embeddings)
  • Euclidean distance (<->): Use when absolute distances matter

Index Choice:

  • Start with HNSW for most applications
  • Switch to IVFFlat only if:

- You have > 1M vectors - Insert performance is critical - You can tolerate lower recall

Dimension Size:

  • Higher dimensions = better semantic understanding
  • Lower dimensions = faster queries, less storage
  • Match your embedding model exactly (never truncate)

Common Patterns

Pattern 1: Document Search

  • Store document chunks with metadata
  • Use HNSW index for semantic search
  • Add full-text for hybrid search
  • See: examples/document-search-pattern.md

Pattern 2: User Preference Matching

  • Store user profile embeddings
  • Use cosine similarity for matching
  • Update embeddings as preferences change
  • See: examples/preference-matching-pattern.md

Pattern 3: Product Recommendations

  • Store product feature embeddings
  • Use hybrid search (keywords + semantic)
  • Weight by popularity or ratings
  • See: examples/product-recommendations-pattern.md

Troubleshooting

Slow queries (> 100ms):

  • Check if index is being used: EXPLAIN ANALYZE
  • Increase HNSW ef_search parameter
  • Consider reducing result limit
  • Add WHERE clauses to reduce search space

Poor recall (missing relevant results):

  • Increase match_count
  • Lower match_threshold
  • For HNSW: increase m and ef_construction
  • For IVFFlat: increase lists parameter

High memory usage:

  • HNSW uses ~10KB per vector
  • Reduce m parameter (quality tradeoff)
  • Consider IVFFlat for large datasets
  • Use partial indexes if possible

Insert performance issues:

  • HNSW is slow for bulk inserts
  • Disable index during bulk load, rebuild after
  • Use IVFFlat for write-heavy workloads
  • Batch inserts when possible

Security Considerations

Row Level Security (RLS):

  • Enable RLS on all embedding tables
  • Filter by user_id or organization_id
  • Prevent embedding leakage between users
  • See templates for RLS policy examples

API Key Protection:

  • Never expose embedding API keys
  • Use Supabase Edge Functions for embedding generation
  • Store keys in Supabase secrets
  • Rate limit embedding requests

Files Reference

Scripts:

  • scripts/setup-pgvector.sh - Enable extension and create base tables
  • scripts/create-indexes.sh - Create HNSW or IVFFlat indexes
  • scripts/setup-hybrid-search.sh - Configure hybrid search
  • scripts/test-vector-search.sh - Validate setup

Templates:

  • templates/embedding-table-schema.sql - Table structure with metadata
  • templates/hnsw-index-config.sql - HNSW index with tuning
  • templates/ivfflat-index-config.sql - IVFFlat index configuration
  • templates/hybrid-search-function.sql - Hybrid search with RRF
  • templates/match-function.sql - Basic semantic search function

Examples:

  • examples/embedding-strategies.md - Index selection guide
  • examples/vector-search-examples.md - Common search patterns
  • examples/document-search-pattern.md - Full document search implementation
  • examples/preference-matching-pattern.md - User matching system
  • examples/product-recommendations-pattern.md - Recommendation engine

Plugin: supabase Version: 1.0.0 Last Updated: 2025-10-26

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.54%
按下载量换算28

Claude

29.95%
按下载量换算22

Cursor

19.8%
按下载量换算15

Gemini CLI

8.99%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills