用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zilliztech/zilliz-plugin --skill user-role命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when the user reports that a Zilliz Cloud cluster or Milvus collection is unhealthy, slow, stuck, returning errors, hitting quotas, or otherwise misbehaving — or when they ask "what's wrong with...", "why is ... slow", "diagnose ...", "troubleshoot ...".
Zilliz Cloud onboarding and usage assistant. Helps users understand Zilliz Cloud, choose the right plan, estimate costs, write code, debug issues, and adopt new features like Functions, Volumes, and Global Clusters. Use this skill whenever the user asks about Zilliz Cloud — including plan selection, pricing, cost estimation, capacity planning, cluster configuration, SDK usage, schema design, search patterns, migration, troubleshooting, MCP server setup, Terraform, auto-scaling, metrics/alerts, backup/restore, or any "how do I do X with Zilliz Cloud" question. Also trigger when the user mentions keywords like: "Zilliz", "zilliz cloud", "vector database", "which plan", "serverless vs dedicated", "CU", "vCU", "Milvus cloud", "pymilvus", "collection", "embedding function", "hybrid search", "rerank", "BM25", "global cluster", "BYOC", "tiered storage", "volume", "data import", "MCP server", "partition key", or error messages from Zilliz Cloud.
Use when the user wants to create, list, describe, delete, export, or restore backups, or manage backup policies on Zilliz Cloud.
基于 SOC 职业分类
正在显示 SKILL.md
| name | user-role |
| description | Use when the user wants to manage database users, roles, passwords, or access privileges in Milvus. |
zilliz user create --user <username> --password <password>
Create a new database user.
zilliz user list
List all database users.
zilliz user describe --user <username>
Get details of a user.
zilliz user drop --user <username-to-drop>
Drop a database user.
zilliz user update-password \
--user <username> \
--password <current-password> \
--new-password <new-password>
Update user password.
zilliz user grant-role --user <username> --role <role-name-to-grant>
Grant a role to a user.
zilliz user revoke-role --user <username> --role <role-name-to-revoke>
Revoke a role from a user.
zilliz role create --role <role-name>
Create a new role.
zilliz role list
List all roles.
zilliz role describe --role <role-name>
Get details and privileges of a role.
zilliz role drop --role <role-name-to-drop>
Drop a role.
zilliz role grant-privilege \
--role <role-name> \
--object-type <Global|Collection|Database> \
--object-name <object-name> \
--privilege <privilege-name>
# Optional: --database <database-name>
Grant a privilege to a role.
zilliz role revoke-privilege \
--role <role-name> \
--object-type <Global|Collection|Database> \
--object-name <object-name> \
--privilege <privilege-name>
# Optional: --database <database-name>
Revoke a privilege from a role.
Common privileges by object type:
Search, Query, Insert, Delete, CreateIndex, DropCollectionCreateCollection, AllListCollectionsadmin (full access), public (no privileges by default -- must be granted explicitly).* as object-name to grant privilege on all objects of that type.