Agent skill · Data & Analytics

vector-search

Implement semantic vector search for construction data. Build AI-powered search using embeddings and vector databases (Qdrant, ChromaDB) for intelligent querying of specifications, standards, and project documents.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill vector-search-datadrivenconstructi-ddc-skills-for-ai-ag-2 --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 18 KB
Bundled scripts: none
Path: skills/ai-ml/vector-search-datadrivenconstructi-ddc-skills-for-ai-ag-2/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

# Vector Search for Construction ## Overview Based on DDC methodology (Chapter 4.4), this skill implements semantic vector search for construction data. Move beyond keyword matching - find documents and data by meaning, not just words. **Book Reference:** "Современные технологии работы с данными" / "Modern Data Technologies" > "Векторные базы данных позволяют находить семантически похожие документы, даже если они используют разную терминологию." > — DDC Book, Chapter 4.4 ## Quick Start ```python from sentence_transformers import SentenceTransformer from qdrant_client import QdrantClient from qdrant_client.models import VectorParams, Distance, PointStruct # Initialize embedding model model = SentenceTransformer('all-MiniLM-L6-v2') # Create Qdrant client (in-memory for demo) client = QdrantClient(":memory:") # Create collection client.create_collection( collection_name="construction_docs", vectors_config=VectorParams(size=384, distance=Distance.COSINE) ) # Sample construction documents documents = [ "Concrete mix design for C30 grade with water-cement ratio 0.45", "Steel reinforcement specifications for structural columns", "Waterproofing membrane installation for basement walls", "F

What's inside
Steps it walks through
  1. Overview
  2. Quick Start
  3. Vector Database Setup
  4. Qdrant Setup
  5. ChromaDB Alternative
  6. Construction-Specific Applications
  7. Specification Search
  8. Standards and Codes Search
  9. Work Item Search (OpenConstructionEstimate)
  10. RAG for Construction
  11. Retrieval Augmented Generation
  12. Document Indexing Pipeline
  13. Quick Reference
  14. Embedding Models for Construction
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the vector-search skill do?

Implement semantic vector search for construction data. Build AI-powered search using embeddings and vector databases (Qdrant, ChromaDB) for intelligent querying of specifications, standards, and project documents.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill vector-search-datadrivenconstructi-ddc-skills-for-ai-ag-2 --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