• Projects
  • Service
  • About
  • branding.bz
  • Podcast
  • Tips
  • FAQ
  • Recruit
  • Download
  • Contact
  • branding.bz(ブランド構築SaaS)
  • DESIGN NOW(デザインメディア)
  • X
  • LinkedIn
  • Spotify
  • Facebook

213-0011 神奈川県川崎市高津区久本3-6-7-303

© 2026 ID INC. All rights reserved

claude-skills/スキル
SKILLOfficialdatabase

status

プラグイン
zilliz
ソース
GitHub で見る ↗
説明

次のような場合に使用: ユーザーが現在の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環境の詳細情報を確認するとき
  • クラスターの統計情報を知りたいとき
  • データベースの全体像を把握するとき
  • コレクションの統計情報を確認するとき
本文(日本語訳)

ユーザーの現在の Zilliz Cloud 環境のステータス概要を収集して表示します。構造化データを取得するために --output json オプション付きでコマンドを実行し、整形されたサマリーを提示します。

ステップ 1: 前提条件の確認

CLI がインストールされており、ユーザーがログイン済みであることを確認します:

zilliz auth status

セットアップが完了していない場合は、先に quickstart スキルを使用してください。

ステップ 2: 現在のコンテキストの表示

zilliz context current --output json

コンテキストが設定されていない場合は、zilliz context set --cluster-id <id> の実行を提案してください。

ステップ 3: クラスターの詳細

コンテキストから取得したクラスター ID を使用します:

zilliz cluster describe --cluster-id <cluster-id> --output json

表示項目: クラスター名、ステータス、プラン、リージョン。

ステップ 4: データベース一覧の表示

zilliz database list --output json

ステップ 5: コレクションのサマリー

ステップ 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

ステップ 6: サマリーの提示

結果を読みやすいサマリー形式で整形します:

Cluster: <name> (<cluster-id>) Status: RUNNING | Region: <region> | Plan: <plan>

各データベースについて、そのコレクションを表示します:

Database: <db-name>

コレクション 行数 ロード状態 インデックス
my_collection 10,000 Loaded vector_idx (AUTOINDEX)
... ... ... ...

クラスターが一時停止中の場合は、データ操作が利用できない旨の警告を表示してください。

原文(English)を表示

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.

Step 1: Check Prerequisites

Verify CLI is installed and user is logged in:

zilliz auth status

If not set up, use the quickstart skill first.

Step 2: Show Current Context

zilliz context current --output json

If no context is set, suggest running zilliz context set --cluster-id <id>.

Step 3: Cluster Details

Using the cluster ID from context:

zilliz cluster describe --cluster-id <cluster-id> --output json

Present: cluster name, status, plan, region.

Step 4: Database List

zilliz database list --output json

Step 5: Collections Summary

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

Step 6: Present Summary

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 による自動翻訳です。