From embedding-manager
Generates vector embeddings from text files, database tables, or API responses using models like OpenAI, Cohere, or Sentence-BERT. Stores results in a vector database with metadata and creates a search index.
How this command is triggered — by the user, by Claude, or both
Slash command
/embedding-manager:generate-embeddingsThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /generate-embeddings - Generate Vector Embeddings Generate vector embeddings for text data using embedding models. ## Steps 1. Ask the user for the input data: text file, database table, or API responses 2. Select the embedding model: OpenAI text-embedding-3, Cohere embed, Sentence-BERT, or local model 3. Preprocess the input text: clean, normalize, truncate to model's max token length 4. Batch the inputs for efficient API calls (batch size based on model limits) 5. Generate embeddings with retry logic for API rate limits and transient errors 6. Validate embedding dimensions match the ...
Generate vector embeddings for text data using embedding models.
6plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub avelikiy/awesome-claude-code-toolkit --plugin embedding-manager/generate-embeddingsGenerates vector embeddings from text files, database tables, or API responses using models like OpenAI, Cohere, or Sentence-BERT. Stores results in a vector database with metadata and creates a search index.
/agent-brain-embeddingsConfigures the embedding provider for vector/semantic search, setting environment variables for the chosen provider and model.
/index-docsIndexes documents from directories, URLs, databases, or APIs into a vector store for retrieval-augmented generation. Supports semantic chunking, embedding generation, and incremental updates.
/rag-setupScaffolds a production-ready RAG pipeline for a given data source and stack, generating ingestion scripts, a retrieval chain with Claude, and an operational checklist.
/indexIndexes a folder of documents for semantic search: scans supported files, extracts text, stores embeddings in local vector database. Reports files indexed, skipped, and errors.
/addAdd a specific feature to an existing RAG pipeline project. Features include document, search, embeddings, vectordb.