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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill agentdb-vector-search-bjpl-open-learn-co --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/ai-llm/agentdb-vector-search-bjpl-open-learn-co/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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
Ships with 1 file
  • metadata.json
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 claude-skill-registry
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 majiayu000/claude-skill-registry --skill agentdb-vector-search-bjpl-open-learn-co --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.

Keep going