A skill that teaches AI agents how to operate Zilliz Cloud and Milvus vector databases through zilliz-cli. Instead of memorizing CLI commands, just describe what you want:
- "Create a serverless cluster in us-east-1 and set up a collection with 768-dimension vectors"
- "Search for similar items in my product collection with filter age > 20"
- "Show me the status of all my clusters and collections"
- "Set up a daily backup policy for my production cluster with 7-day retention"
- "Create a role with read-only access to the analytics collection"
- "Import data from S3 into my embeddings collection"
- "Check the status of my import job"
- "Show me this month's usage and invoices"
zilliz/
├── SKILL.md # Main entry — prerequisites, workflows, safety rules
└── references/ # Domain-specific command references (loaded on demand)
├── setup.md # Install, auth, context, config, troubleshooting
├── cluster.md # Cluster create, list, describe, modify, suspend, delete
├── collection.md # Collection CRUD, aliases, load/release, per-collection metrics
├── vector.md # Search, query, insert, hybrid search, filter syntax
├── index.md # Index types, create/drop
├── database.md # Database CRUD (Dedicated clusters only)
├── partition.md # Partition management
├── user-role.md # RBAC: users, roles, privileges
├── backup.md # Backup/restore, policies
├── import.md # Bulk data import from cloud storage
├── billing.md # Usage, invoices, payment
├── monitoring.md # Status overview, collection stats, cluster and per-collection time-series metrics
├── project-region.md # Projects, volumes, cloud providers
└── job.md # Async job tracking
| Area | What You Can Do |
|---|---|
| Clusters | Create, delete, suspend, resume, modify |
| Collections | Create with custom schema, load, release, rename, drop |
| Vectors | Search, query, insert, upsert, delete, hybrid search |
| Indexes | Create (AUTOINDEX), list, describe, drop |
| Databases | Create, list, describe, drop |
| Users & Roles | RBAC setup, privilege management |
| Backups | Create, restore, export, policy management |
| Import | Bulk data import from cloud storage |
| Jobs | Track async operations (backup, restore, migration, import, clone) |
| Partitions | Create, load, release, manage |
| Monitoring | Cluster status, collection stats, load states, cluster and per-collection time-series metrics |
| Billing | Usage, invoices, payment methods |
| Projects | Project and region management |
claude skill add ./zilliz.skillCopy the zilliz/ directory into your skill path and ensure SKILL.md is discoverable by your agent.
- A Zilliz Cloud account (or local Milvus instance)
zilliz-cli(the skill guides installation automatically)
Extracted from the zilliz-plugin Claude Code plugin. The 14 reference files correspond directly to the plugin's skills/ directory.
Apache License 2.0