·vectordb
""

vectordb

Vector database operations for embeddings and semantic search. Activate for Pinecone, Weaviate, Chroma, pgvector, RAG, and similarity search.

20Installs·0Trend·@lobbi-docs

Installation

$npx skills add https://github.com/lobbi-docs/claude --skill vectordb

How to Install vectordb

Quickly install vectordb AI skill to your development environment via command line

  1. Open Terminal: Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.)
  2. Run Installation Command: Copy and run this command: npx skills add https://github.com/lobbi-docs/claude --skill vectordb
  3. Verify Installation: Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw

Source: lobbi-docs/claude.

SKILL.md

View raw

Provides comprehensive vector database capabilities for the Golden Armada AI Agent Fleet Platform.

OpenAI embeddings def getopenaiembedding(text: str) -> list[float]: response = openai.embeddings.create( model="text-embedding-3-small", input=text ) return response.data[0].embedding

Batch embeddings def getbatchembeddings(texts: list[str]) -> list[list[float]]: response = openai.embeddings.create( model="text-embedding-3-small", input=texts ) return [item.embedding for item in response.data] \\\`

Vector database operations for embeddings and semantic search. Activate for Pinecone, Weaviate, Chroma, pgvector, RAG, and similarity search. Source: lobbi-docs/claude.

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/lobbi-docs/claude --skill vectordb
Category
""Writing
Verified
First Seen
2026-03-06
Updated
2026-03-11

Browse more skills from lobbi-docs/claude

Quick answers

What is vectordb?

Vector database operations for embeddings and semantic search. Activate for Pinecone, Weaviate, Chroma, pgvector, RAG, and similarity search. Source: lobbi-docs/claude.

How do I install vectordb?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/lobbi-docs/claude --skill vectordb Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw

Where is the source repository?

https://github.com/lobbi-docs/claude