Agent skill · AI & Agents

AgentDB Vector Search

Implement semantic vector search with AgentDB for intelligent document retrieval, similarity matching, and context-aware querying. Use when building RAG systems, semantic search engines, or intelligent knowledge bases.

rUv71,307★ · +1,002/wk · 3 repos on radarProfile →
claude-codecodexMIT
Install
npx skills add ruvnet/ruflo --skill agentdb-vector-search --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 9 KB
Bundled scripts: none
Path: .agents/skills/agentdb-vector-search/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: ruvnet/ruflo
Stars: 67,015 · +629 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# AgentDB Vector Search ## What This Skill Does Implements vector-based semantic search using AgentDB's high-performance vector database with **150x-12,500x faster** operations than traditional solutions. Features HNSW indexing, quantization, and sub-millisecond search (<100µs). ## Prerequisites - Node.js 18+ - AgentDB v1.0.7+ (via agentic-flow or standalone) - OpenAI API key (for embeddings) or custom embedding model ## Quick Start with CLI ### Initialize Vector Database ```bash # Initialize with default dimensions (1536 for OpenAI ada-002) npx agentdb@latest init .$vectors.db # Custom dimensions for different embedding models npx agentdb@latest init .$vectors.db --dimension 768 # sentence-transformers npx agentdb@latest init .$vectors.db --dimension 384 # all-MiniLM-L6-v2 # Use preset configurations npx agentdb@latest init .$vectors.db --preset small # <10K vectors npx agentdb@latest init .$vectors.db --preset medium # 10K-100K vectors npx agentdb@latest init .$vectors.db --preset large # >100K vectors # In-memory database for testing npx agentdb@latest init .$vectors.db --in-memory ``` ### Query Vector Database ```bash # Basic similarity search npx agentdb@latest query .$vectors

What's inside
Steps it walks through
  1. What This Skill Does
  2. Prerequisites
  3. Quick Start with CLI
  4. Initialize Vector Database
  5. Query Vector Database
  6. Import/Export Vectors
  7. Quick Start with API
  8. Core Features
  9. 1. Vector Storage
  10. 2. Similarity Search
  11. 3. Hybrid Search (Vector + Metadata)
  12. Advanced Usage
  13. RAG (Retrieval Augmented Generation)
  14. Batch Operations
Commands it runs
Initialize with default dimensions (1536 for OpenAI ada-002)
npx agentdb@latest init .$vectors.db
Custom dimensions for different embedding models
npx agentdb@latest init .$vectors.db --dimension 768  # sentence-transformers
npx agentdb@latest init .$vectors.db --dimension 384  # all-MiniLM-L6-v2
Use preset configurations
npx agentdb@latest init .$vectors.db --preset small   # <10K vectors
npx agentdb@latest init .$vectors.db --preset medium  # 10K-100K vectors
npx agentdb@latest init .$vectors.db --preset large   # >100K vectors
In-memory database for testing
More from ruflo
All skills →
About this skill
What does the AgentDB Vector Search skill do?

Implement semantic vector search with AgentDB for intelligent document retrieval, similarity matching, and context-aware querying. Use when building RAG systems, semantic search engines, or intelligent knowledge bases.

How do I install it?

Run `npx skills add ruvnet/ruflo --skill agentdb-vector-search --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 ruvnet/ruflo, a repository with 67,015 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.

Keep going