次のような場合に使用: ユーザーが現在のZilliz Cloud環境(クラウド上のデータベース管理サービス)について、クラスターの詳細情報、データベース、データ保存単位(コレクション)の統計情報を含めた包括的な全体像を知りたい場合。
Use when the user wants a comprehensive overview of their current Zilliz Cloud environment — context, cluster details, databases, and collections with stats.
ユーザーの現在の Zilliz Cloud 環境のステータス概要を収集して表示します。構造化データを取得するために --output json オプション付きでコマンドを実行し、整形されたサマリーを提示します。
CLI がインストールされており、ユーザーがログイン済みであることを確認します:
zilliz auth status
セットアップが完了していない場合は、先に quickstart スキルを使用してください。
zilliz context current --output json
コンテキストが設定されていない場合は、zilliz context set --cluster-id <id> の実行を提案してください。
コンテキストから取得したクラスター ID を使用します:
zilliz cluster describe --cluster-id <cluster-id> --output json
表示項目: クラスター名、ステータス、プラン、リージョン。
zilliz database list --output json
ステップ 4 で取得した各データベースについて、コレクション情報を収集します:
zilliz collection list --database <db-name> --output json
各コレクションについて、統計情報およびインデックス情報を収集します:
zilliz collection get-stats --name <name> --database <db-name> --output json
zilliz collection get-load-state --name <name> --database <db-name> --output json
zilliz index list --collection <name> --database <db-name> --output json
結果を読みやすいサマリー形式で整形します:
Cluster: <name> (<cluster-id>) Status: RUNNING | Region: <region> | Plan: <plan>
各データベースについて、そのコレクションを表示します:
Database: <db-name>
| コレクション | 行数 | ロード状態 | インデックス |
|---|---|---|---|
| my_collection | 10,000 | Loaded | vector_idx (AUTOINDEX) |
| ... | ... | ... | ... |
クラスターが一時停止中の場合は、データ操作が利用できない旨の警告を表示してください。
Gather and display a status overview of the user's current Zilliz Cloud environment. Run commands with --output json for structured data, then present a formatted summary.
Verify CLI is installed and user is logged in:
zilliz auth status
If not set up, use the quickstart skill first.
zilliz context current --output json
If no context is set, suggest running zilliz context set --cluster-id <id>.
Using the cluster ID from context:
zilliz cluster describe --cluster-id <cluster-id> --output json
Present: cluster name, status, plan, region.
zilliz database list --output json
For each database returned in Step 4, gather collection information:
zilliz collection list --database <db-name> --output json
For each collection, gather stats and index info:
zilliz collection get-stats --name <name> --database <db-name> --output json
zilliz collection get-load-state --name <name> --database <db-name> --output json
zilliz index list --collection <name> --database <db-name> --output json
Format the results as a readable summary:
Cluster: <name> (<cluster-id>) Status: RUNNING | Region: <region> | Plan: <plan>
For each database, show its collections:
Database: <db-name>
| Collection | Rows | Load State | Indexes |
|---|---|---|---|
| my_collection | 10,000 | Loaded | vector_idx (AUTOINDEX) |
| ... | ... | ... | ... |
If the cluster is suspended, show a warning that data operations are unavailable.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。