Agent skill · Databases

vectordb

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

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill vector-db-lobbi-docs-claude-3 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Allowed tools: -Bash-Read-Write-Edit-Glob-Grep
Path: skills/ai-ml/vector-db-lobbi-docs-claude-3/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Vector Database Skill Provides comprehensive vector database capabilities for the Golden Armada AI Agent Fleet Platform. ## When to Use This Skill Activate this skill when working with: - Semantic search implementation - RAG (Retrieval Augmented Generation) - Embedding storage and retrieval - Similarity search - Vector index management ## Embedding Generation \`\`\`python import openai from anthropic import Anthropic # OpenAI embeddings def get_openai_embedding(text: str) -> list[float]: response = openai.embeddings.create( model="text-embedding-3-small", input=text ) return response.data[0].embedding # Batch embeddings def get_batch_embeddings(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] \`\`\` ## Pinecone \`\`\`python from pinecone import Pinecone, ServerlessSpec # Initialize pc = Pinecone(api_key=os.environ["PINECONE_API_KEY"]) # Create index pc.create_index( name="agents", dimension=1536, metric="cosine", spec=ServerlessSpec( cloud="aws", region="us-west-2" ) ) # Get index index = pc.Index("agents") # Upsert vectors index.upsert( vectors=[ { "id": "a

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Embedding Generation
  3. Pinecone
  4. Chroma
  5. pgvector (PostgreSQL)
  6. Python with pgvector
  7. RAG Implementation
  8. Best Practices
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the vectordb skill do?

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

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill vector-db-lobbi-docs-claude-3 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going