Agent skill · AI & Agents

pinecone

Implements vector search with Pinecone for semantic similarity and RAG applications. Use when building embeddings-based search, recommendation systems, or retrieval-augmented generation.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill pinecone-mgd34msu-goodvibes-plugin-2 --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 10 KB
Bundled scripts: none
Path: skills/ai-ml/pinecone-mgd34msu-goodvibes-plugin-2/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

# Pinecone Vector database for similarity search. Store embeddings and query by semantic meaning for RAG, recommendations, and search. ## Quick Start ```bash npm install @pinecone-database/pinecone ``` ### Setup ```typescript import { Pinecone } from '@pinecone-database/pinecone'; const pinecone = new Pinecone({ apiKey: process.env.PINECONE_API_KEY!, }); const index = pinecone.index('my-index'); ``` ## Index Management ### Create Index ```typescript await pinecone.createIndex({ name: 'my-index', dimension: 1536, // OpenAI embedding dimension metric: 'cosine', // cosine, euclidean, dotproduct spec: { serverless: { cloud: 'aws', region: 'us-east-1', }, }, }); ``` ### List Indexes ```typescript const indexes = await pinecone.listIndexes(); console.log(indexes); ``` ### Describe Index ```typescript const description = await pinecone.describeIndex('my-index'); console.log(description); ``` ### Delete Index ```typescript await pinecone.deleteIndex('my-index'); ``` ## Upsert Vectors ### Basic Upsert ```typescript const index = pinecone.index('my-index'); await index.upsert([ { id: 'doc-1', values: [0.1, 0.2, 0.3, ...], // 1536 dimensions metadata: { title: 'Introduction to AI', category:

What's inside
Steps it walks through
  1. Quick Start
  2. Setup
  3. Index Management
  4. Create Index
  5. List Indexes
  6. Describe Index
  7. Delete Index
  8. Upsert Vectors
  9. Basic Upsert
  10. With Namespace
  11. Batch Upsert
  12. Query Vectors
  13. Basic Query
  14. With Metadata Filter
Ships with 1 file
  • metadata.json
Commands it runs
npm install @pinecone-database/pinecone
More from claude-skill-registry
All skills →
About this skill
What does the pinecone skill do?

Implements vector search with Pinecone for semantic similarity and RAG applications. Use when building embeddings-based search, recommendation systems, or retrieval-augmented generation.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill pinecone-mgd34msu-goodvibes-plugin-2 --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