Claude Flow Embeddings

Generate vector embeddings from text using ONNX, OpenAI, and Transformers.js providers.

1|Updated Feb 8, 2026
One-click install
npx skills add https://github.com/ricable/cli-skills-builder --skill claude-flow-embeddings
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Claude Flow Embeddings
Source: https://github.com/ricable/cli-skills-builder/tree/main/.claude/skills/claude-flow-embeddings
Command: npx skills add https://github.com/ricable/cli-skills-builder --skill claude-flow-embeddings

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill streamlines the process of generating vector embeddings for text, enabling efficient semantic search, similarity comparisons, and advanced text analysis.

Core Features & Use Cases

  • Vector Embeddings: Generate numerical representations of text using various providers (OpenAI, ONNX, Transformers.js).
  • Semantic Search: Perform fast and accurate similarity searches within collections of embeddings using HNSW indexing.
  • Text Comparison: Quantify the semantic similarity between different pieces of text.
  • Use Case: Quickly find the most relevant documents in a large knowledge base by searching with a natural language query.

Quick Start

Initialize the embedding subsystem and generate an embedding for the text "Hello, world!".

Frequently Asked Questions about Claude Flow Embeddings

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate vector embeddings for text semantic search?

Semantic search uses vector embeddings to match natural language queries to documents by meaning rather than exact keywords. It generates numerical representations of text using models like ONNX or Transformers.js, enabling accurate similarity comparisons across large collections.

What is the best way to compare text similarity using embeddings?

Comparing text similarity with embeddings involves generating numerical vectors for each text segment and calculating the distance between them. This Skill supports quantifying semantic similarity directly and managing collections of embeddings for fast comparison tasks.

Can I perform semantic search locally using ONNX or Transformers.js?

Yes, you can perform semantic search locally using ONNX or Transformers.js as embedding providers. These options allow you to generate vector embeddings and execute similarity searches without relying solely on external API calls.

How do HNSW indexes improve vector search performance?

HNSW indexes improve vector search performance by organizing embeddings into a hierarchical graph structure, enabling fast and accurate approximate nearest neighbor searches. This facilitates quick retrieval of similar vectors within large embedding collections.

Does this support managing multiple embedding collections?

Yes, it supports managing multiple embedding collections, allowing you to organize and segment vectors for different use cases. You can generate, store, and search across these collections using HNSW indexing to maintain efficient retrieval.