npx skills add majiayu000/claude-skill-registry --skill embeddings-alsk1992-cloddsbot --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Embeddings - Complete API Reference Configure embedding providers, manage vector storage, and perform semantic search. --- ## Chat Commands ### View Config ``` /embeddings Show current settings /embeddings status Provider status /embeddings stats Cache statistics ``` ### Configure Provider ``` /embeddings provider openai Use OpenAI embeddings /embeddings provider voyage Use Voyage AI /embeddings provider local Use local model /embeddings model text-embedding-3-small Set model ``` ### Cache Management ``` /embeddings cache stats View cache stats /embeddings cache clear Clear cache /embeddings cache size Total cache size ``` ### Testing ``` /embeddings test "sample text" Generate test embedding /embeddings similarity "text1" "text2" Compare similarity ``` --- ## TypeScript API Reference ### Create Embeddings Service ```typescript import { createEmbeddingsService } from 'clodds/embeddings'; const embeddings = createEmbeddingsService({ // Provider provider: 'openai', // 'openai' | 'voyage' | 'local' | 'cohere' apiKey: process.env.OPENAI_API_KEY, // Model model: 'text-embedding-3-small', dimensions: 1536, // Caching cache: true, cacheBackend: 'sqlite', cachePath: './embeddings-cache.d
- Chat Commands
- View Config
- Configure Provider
- Cache Management
- Testing
- TypeScript API Reference
- Create Embeddings Service
- Generate Embeddings
- Semantic Search
- Similarity
- Store Vectors
- Provider Configuration
- Providers
- Models
What does the embeddings skill do?
Vector embeddings configuration and semantic search
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill embeddings-alsk1992-cloddsbot --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.
