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

vector-db矢量数据库

Agent Skill

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

总安装

353

周安装

15

GitHub Stars

4

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill vector-db

简介

vector-db 用于管理向量数据库,支持高维向量的存储与相似度查询。

  • 适用于推荐系统、语义搜索与 NLP 嵌入检索等 AI/ML 应用场景。
  • 可优化大规模向量数据的索引与召回效率,避免暴力比对。
  • 需配置 Embedding 模型与元数据索引策略,确保查询精度。
  • 数据更新时应监控漂移问题,防止过时信息影响结果可信度。

SKILL.md

vector-db

Purpose

This skill enables the management of vector databases for storing, indexing, and querying high-dimensional vectors, optimizing AI/ML workflows for tasks like similarity searches and embeddings.

When to Use

Use this skill for AI/ML applications requiring fast vector similarity queries, such as building recommendation engines, semantic search in NLP, or image retrieval systems. Apply it when dealing with large-scale vector data (e.g., embeddings from models like BERT) to avoid brute-force comparisons.

Key Capabilities

  • Store vectors with metadata and perform efficient nearest-neighbor searches using indexes.
  • Support distance metrics like cosine, Euclidean, and dot product for similarity calculations.
  • Handle vector dimensions up to 2048 and scale to millions of entries.
  • Integrate with embedding models for real-time vector generation and querying.

Usage Patterns

Invoke this skill via CLI for quick operations or through API calls in code. Always set the environment variable $VECTOR_DB_API_KEY for authentication before use. For CLI, prefix commands with vector-db and use JSON config files for complex setups (e.g., config.json with {"dimension": 768, "metric": "cosine"}). In code, use HTTP requests to the API endpoint, ensuring error checking on responses. Pattern: First, create an index; then, insert vectors; finally, query them.

Common Commands/API

Use the CLI tool vector-db or the API at https://api.openclaw.com/vector-db/v1. Authentication requires $VECTOR_DB_API_KEY in headers.

  • CLI Command: Create an index vector-db create index --name myindex --dimension 768 --metric cosine --file config.json This initializes a new index; ensure config.json specifies additional options like shards.
  • CLI Command: Insert vectors vector-db insert --index myindex --vectors "[0.1, 0.2, 0.3]" --id vec1 Vectors must be in JSON array format; use --batch flag for multiple inserts.
  • API Endpoint: Query vectors POST https://api.openclaw.com/vector-db/v1/indexes/myindex/query Body: {"vector": [0.1, 0.2, 0.3], "top_k": 5} Response: JSON array of nearest neighbors.
  • API Endpoint: Delete index DELETE https://api.openclaw.com/vector-db/v1/indexes/myindex Include header: Authorization: Bearer $VECTOR_DB_API_KEY

Config format: Use JSON files like {"index_name": "myindex", "vector_size": 768, "distance": "cosine"} for CLI operations.

Integration Notes

Integrate with AI/ML tools by exporting vectors from models and using this skill for storage. Set $VECTOR_DB_API_KEY in your environment or.env file. For Python integration, use requests library:

import requests
headers = {'Authorization': f'Bearer {os.environ.get("VECTOR_DB_API_KEY")}' }
response = requests.post('https://api.openclaw.com/vector-db/v1/indexes/myindex/insert', json={'vectors': [[0.1, 0.2]]}, headers=headers)

Ensure the API base URL matches your deployment; handle rate limits by adding retries. For clustering with aimlops, link via shared IDs (e.g., use skill ID "vector-db" in workflows).

Error Handling

Common errors include authentication failures (HTTP 401) from missing $VECTOR_DB_API_KEY, invalid vector dimensions (e.g., mismatch with index), or network issues. To handle:

  • Check for 401 errors and prompt user to set $VECTOR_DB_API_KEY.
  • For invalid inputs, use try-except in code: try: response = requests.post(url, json=data) response.raise_for_status() except requests.exceptions.HTTPError as e: print(f"Error: {e} - Check vector dimensions.")
  • CLI errors show as "Error: Invalid metric specified"; fix by verifying command flags. Always validate inputs before sending requests.

Concrete Usage Examples

  1. Example: Building a simple search engine First, create an index: vector-db create index --name searchindex --dimension 512. Insert embeddings: vector-db insert --index searchindex --vectors '[[0.5, 0.6], [0.7, 0.8]]' --ids 'doc1,doc2'. Query for similarities: Use API POST to /indexes/searchindex/query with body {"vector": [0.5, 0.6], "top_k": 3}. This pattern is ideal for NLP, e.g., searching similar documents based on embeddings.
  2. Example: Image similarity in ML pipeline Generate image embeddings with a model, then store: vector-db insert --index imageindex --vectors '[[0.1, 0.2, 0.3]]' --metadata '{"url": "image1.jpg"}'. Query for similar images: CLI vector-db query --index imageindex --vector [0.1, 0.2, 0.3] --top_k 5. Integrate in code by fetching results and filtering by metadata, useful for recommendation systems.

Graph Relationships

  • Connected to cluster: aimlops (e.g., shares data pipelines with data-processing skills).
  • Relates to: embedding-generation skills (for vector creation) and query-optimization tools (for enhancing searches).
  • Links with: ai skills for ML model integration and ml skills for training data storage.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.74%
按下载量换算43

Claude

31.87%
按下载量换算40

Cursor

20.68%
按下载量换算26

Gemini CLI

9.71%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills