$npx skillfedfor your agent

vectorize

Vectorize is a vector database that runs at the edge, letting you store high-dimensional embeddings and perform similarity queries for RAG pipelines, semantic search, and recommendation systems. Create indexes with preset dimensions or custom configurations, then insert, upsert, query, and delete vectors through a simple API. Integrates seamlessly with Workers AI for generating embeddings.

Vectorize stores and queries vector embeddings at the edge for RAG pipelines, semantic search, and similarity matching.

AI-generated summary based on this skill's SKILL.md

0 0 Apache-2.0updated by null-shot

Decision gist · record as of 2026-01-18

Vectorize stores and queries vector embeddings at the edge for RAG pipelines, semantic search, and similarity matching. Vectorize is a vector database that runs at the edge, letting you store high-dimensional embeddings and perform similarity queries for RAG pipelines, semantic search, and recommendation systems. Create indexes with preset dimensions or custom configurations, then insert, upsert, query, and delete vectors through a simple API. Integrates seamlessly with Workers AI for generating embeddings.

manual: git clone https://github.com/null-shot/cloudflare-skills → cp -r cloudflare-skills/vectorize ~/.claude/skills/vectorize
vectorize/SKILL.md · version 70217792

Use it when

  • Yes.
  • Vectorize integrates seamlessly with Workers AI for generating embeddings.

Verify before relying

Read SKILL.md below before installing (5 files). Open directory: indexed for reading, not audited.

Same gist for agents: .md · .json

Install

null-shot/cloudflare-skills/vectorize · repository language: TypeScript

Open directory. Skills are indexed for reading, not audited. Review a skill's body before installing it.

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

What is Vectorize and how does it store embeddings?

Vectorize is a vector database that runs at the edge, letting you store high-dimensional embeddings and perform similarity queries for RAG pipelines, semantic search, and recommendation systems. You can create indexes with preset dimensions or custom configurations, then insert, upsert, query, and delete vectors through a simple API.

Can I use Vectorize for a RAG pipeline vector storage?

Yes. Vectorize is designed to support RAG (Retrieval Augmented Generation) pipelines by storing embeddings and enabling fast similarity queries. You create indexes, insert your embeddings, and query them to retrieve relevant context for your language models.

How does Vectorize integrate with Workers AI embeddings?

Vectorize integrates seamlessly with Workers AI for generating embeddings. You can use Workers AI to create embeddings from your content, then store those embeddings in Vectorize indexes and perform similarity searches across them.

What can I build with Vectorize for semantic search?

Vectorize enables semantic search implementation without keyword matching by storing embeddings and performing similarity queries. You can build recommendation systems using embedding similarity, find duplicate or similar content using vectors, and implement nearest neighbor search at the edge.

How do I create and manage indexes in Vectorize?

Vectorize lets you create indexes with preset dimensions or custom configurations. Once created, you can insert, upsert, query, and delete vectors through a simple API. This gives you full control over your vector storage and retrieval operations.

Is Vectorize suitable for edge computing applications?

Yes. Vectorize runs at the edge, making it ideal for low-latency semantic search and similarity matching without sending data to centralized servers. This edge-native design supports high-dimensional vector search and real-time recommendation systems.

SKILL.md

Rendered from the published skill. Quoted content, verbatim.

Cloudflare Vectorize

Store and query high-dimensional vector embeddings at the edge for RAG (Retrieval Augmented Generation), semantic search, and similarity matching.

FIRST: Create Index

# Create with preset (auto-configures dimensions and metric)
wrangler vectorize create my-index --preset @cf/baai/bge-base-en-v1.5

# Or create with explicit dimensions
wrangler vectorize create my-index --dimensions 768 --metric cosine

# List indexes
wrangler vectorize list

Add to wrangler.jsonc:

{
  "vectorize": [
    { "binding": "SEARCH_INDEX", "index_name": "my-index" }
  ]
}

When to Use

Use Case Description
RAG Pipelines Store document embeddings for context retrieval with LLMs
Semantic Search Find similar content by meaning, not keywords
Recommendation Systems Match users/items based on embedding similarity

(truncated - see the full file via the links below)

File tree — 5 files
vectorize/SKILL.md
vectorize/references/indexing.md
vectorize/references/limits.md
vectorize/references/querying.md
vectorize/references/testing.md

Let your AI agent find skills like this

Example. Real query, live index.

You found this page by searching. An agent finds it by wishing: SkillFed indexes 56,283 agent skills by what they can do, searchable in plain language.

wish › “Store and query vector embeddings for RAG and semantic search”

Give your agent the search over MCP, or paste the wish link into any chat. No install? Search from any chat →

Related skills

Upstash Vector Db Skills
by gocallum · gocallum/nextjs16-agent-skills

Build vector search capabilities using Upstash's serverless database with automatic embedding and semantic matching. This skill covers index creation, document upserting, namespace isolation for multi-tenant apps, and query operations—all optimized for Vercel deployment. Includes patterns for RAG pipelines and batch indexing with MixBread AI as the recommended embedding provider.

no license declared → metadata onlyupdated Jan 2026
★ 22repo stars
cloudflare-workers-ai
by secondsky · secondsky/claude-skills

Cloudflare Workers AI enables serverless GPU inference directly within Workers, supporting LLMs, embeddings, image generation, and vision models. Stream responses to avoid timeouts and buffer issues, integrate with AI Gateway for caching and cost tracking, and choose from optimized models like Llama, Qwen, and Flux.

MITupdated Jul 2026
★ 196repo stars
upstash-search-js
by upstash · upstash/skills

This skill covers Upstash Search fundamentals for TypeScript and JavaScript developers. It walks through SDK installation, creating indexes, upserting documents, and executing searches with optional filtering and reranking. Use it to understand core concepts like content versus metadata and to implement end-to-end search workflows.

MITupdated Jul 2026
★ 15repo stars
Wrangler
by pedronauck · pedronauck/skills

Wrangler is a tool designed to help you manage and work with web development tasks more effectively. This skill introduces you to Wrangler's fundamental features and explains how it fits into modern development workflows. Gain clarity on what makes Wrangler useful and when to apply it in your projects.

no license declared → metadata onlyupdated Jul 2026
★ 541repo stars
Cloudflare
by hoodini · hoodini/ai-agents-skills

Connect to Cloudflare's edge infrastructure to build and deploy serverless applications using Workers, managed databases, object storage, and AI services. Configure KV namespaces, D1 SQLite databases, R2 buckets, and Durable Objects through a unified platform.

no license declared → metadata onlyupdated Jul 2026
★ 257repo stars
wrangler
by cloudflare · cloudflare/skills

Wrangler is Cloudflare's command-line tool for building and deploying Workers across the edge platform. It handles local development, deployment, and management of Workers alongside bindings for KV storage, R2 buckets, D1 databases, Vectorize indexes, and Workers AI. The skill prioritizes current documentation over cached knowledge to ensure commands and config syntax stay accurate.

Apache-2.0updated Jul 2026
★ 2,499repo stars

More skills 9router-embeddings (MIT) · r2-storage (Apache-2.0)

Tags
edge-computingsemantic-retrievalembedding-storagesimilarity-matchingrag-infrastructurevector-indexingai-integrationcontent-discovery