An agent skill that teaches LLMs how to use pymilvus to operate Milvus vector database.
- SKILL.md — Main skill definition with connection, collection management, vector operations, and index management
- references/ — Detailed reference docs for each feature area:
collection.md— Data types, schema fields, collection operationsvector.md— Insert, search, hybrid search, full-text search, iterators, filtersindex.md— Index types, metric types, create/manage indexespartition.md— Partition CRUDdatabase.md— Database managementuser-role.md— RBAC: users, roles, privilegespatterns.md— Common patterns (RAG, semantic search, hybrid search, full-text search)
claude skill add --url https://github.com/zilliztech/milvus-skill- Connect to Milvus Lite, Standalone, Cluster, or Zilliz Cloud
- Create collections with quick or custom schemas
- Insert, upsert, search, query, get, delete vectors
- Hybrid search with RRF/Weighted reranking
- Full-text search with BM25
- Paginated iteration over large result sets
- Index management (AUTOINDEX, HNSW, IVF_FLAT, etc.)
- Partition, database, and RBAC management
- Python 3.8+
pymilvus(pip install pymilvus)