> pinecone
Pinecone is a managed vector database for AI and machine learning applications. Learn to create indexes, upsert embeddings, query by similarity, use namespaces and metadata filtering for semantic search and RAG pipelines.
curl "https://skillshub.wtf/TerminalSkills/skills/pinecone?format=md"Pinecone
Pinecone is a fully managed vector database that makes it easy to store, index, and query high-dimensional vectors for similarity search, recommendation systems, and RAG (Retrieval-Augmented Generation).
Installation
# Node.js client
npm install @pinecone-database/pinecone
# Python client
pip install pinecone-client
Create an Index
// create-index.js: Initialize Pinecone and create a serverless index
const { Pinecone } = require('@pinecone-database/pinecone');
const pc = new Pinecone({ apiKey: process.env.PINECONE_API_KEY });
async function createIndex() {
await pc.createIndex({
name: 'knowledge-base',
dimension: 1536, // OpenAI text-embedding-3-small
metric: 'cosine',
spec: {
serverless: {
cloud: 'aws',
region: 'us-east-1',
},
},
});
}
createIndex().catch(console.error);
Upsert Vectors
// upsert.js: Store embeddings with metadata in Pinecone
const index = pc.index('knowledge-base');
// Upsert vectors with metadata
await index.namespace('articles').upsert([
{
id: 'article-1',
values: embedding1, // Float32Array of dimension 1536
metadata: {
title: 'Introduction to Vector Databases',
source: 'blog',
category: 'technology',
published: '2026-01-15',
},
},
{
id: 'article-2',
values: embedding2,
metadata: {
title: 'Building RAG Applications',
source: 'docs',
category: 'ai',
published: '2026-02-01',
},
},
]);
Query Vectors
// query.js: Find similar vectors with metadata filtering
const index = pc.index('knowledge-base');
// Simple similarity search
const results = await index.namespace('articles').query({
vector: queryEmbedding,
topK: 5,
includeMetadata: true,
includeValues: false,
});
results.matches.forEach(match => {
console.log(`${match.id}: ${match.score} — ${match.metadata.title}`);
});
// Query with metadata filter
const filtered = await index.namespace('articles').query({
vector: queryEmbedding,
topK: 10,
filter: {
category: { $eq: 'technology' },
published: { $gte: '2026-01-01' },
},
includeMetadata: true,
});
Python Client
# app.py: Pinecone with Python client
from pinecone import Pinecone
import os
pc = Pinecone(api_key=os.environ['PINECONE_API_KEY'])
index = pc.Index('knowledge-base')
# Upsert
index.upsert(
vectors=[
{'id': 'doc-1', 'values': embedding, 'metadata': {'title': 'Hello'}},
],
namespace='articles',
)
# Query
results = index.query(
namespace='articles',
vector=query_embedding,
top_k=5,
include_metadata=True,
filter={'category': {'$eq': 'technology'}},
)
for match in results['matches']:
print(f"{match['id']}: {match['score']:.3f} — {match['metadata']['title']}")
# List and delete
index.delete(ids=['doc-1'], namespace='articles')
index.delete(delete_all=True, namespace='old-data')
RAG Pipeline Example
// rag.js: Retrieval-Augmented Generation with Pinecone + OpenAI
const { OpenAI } = require('openai');
const { Pinecone } = require('@pinecone-database/pinecone');
const openai = new OpenAI();
const pc = new Pinecone({ apiKey: process.env.PINECONE_API_KEY });
const index = pc.index('knowledge-base');
async function askQuestion(question) {
// 1. Generate embedding for the question
const embeddingRes = await openai.embeddings.create({
model: 'text-embedding-3-small',
input: question,
});
const queryVector = embeddingRes.data[0].embedding;
// 2. Find relevant documents
const searchResults = await index.namespace('articles').query({
vector: queryVector,
topK: 5,
includeMetadata: true,
});
const context = searchResults.matches
.map(m => m.metadata.content)
.join('\n\n');
// 3. Generate answer with context
const completion = await openai.chat.completions.create({
model: 'gpt-4o',
messages: [
{ role: 'system', content: `Answer based on this context:\n\n${context}` },
{ role: 'user', content: question },
],
});
return completion.choices[0].message.content;
}
Index Management
// manage.js: List, describe, and manage Pinecone indexes
// List all indexes
const indexes = await pc.listIndexes();
console.log(indexes);
// Describe index stats
const stats = await index.describeIndexStats();
console.log(stats); // { dimension, totalRecordCount, namespaces: {...} }
// Delete a namespace
await index.namespace('old-data').deleteAll();
// Delete the entire index
await pc.deleteIndex('knowledge-base');
> related_skills --same-repo
> zustand
You are an expert in Zustand, the small, fast, and scalable state management library for React. You help developers manage global state without boilerplate using Zustand's hook-based stores, selectors for performance, middleware (persist, devtools, immer), computed values, and async actions — replacing Redux complexity with a simple, un-opinionated API in under 1KB.
> zod
You are an expert in Zod, the TypeScript-first schema declaration and validation library. You help developers define schemas that validate data at runtime AND infer TypeScript types at compile time — eliminating the need to write types and validators separately. Used for API input validation, form validation, environment variables, config files, and any data boundary.
> xero-accounting
Integrate with the Xero accounting API to sync invoices, expenses, bank transactions, and contacts — and generate financial reports like P&L and balance sheet. Use when: connecting apps to Xero, automating bookkeeping workflows, syncing accounting data, or pulling financial reports programmatically.
> windsurf-rules
Configure Windsurf AI coding assistant with .windsurfrules and workspace rules. Use when: customizing Windsurf for a project, setting AI coding standards, creating team-shared Windsurf configurations, or tuning Cascade AI behavior.