记忆

huawei-cloud-storage-query

试用

Queries Huawei Cloud storage resources (EVS/OBS/SFS/CBR). Covers cloud disks (volumes/snapshots/types/quotas/recycle bin), OBS buckets (ACL/metadata/notifica...

它能做什么

Queries Huawei Cloud storage resources (EVS/OBS/SFS/CBR). Covers cloud disks (volumes/snapshots/types/quotas/recycle bin), OBS buckets (ACL/metadata/notifications/policies/objects), SFS Turbo file systems (shares/perm rules/backend targets/quotas/LDAP/AD), and CBR backups (vaults/policies/backups/tasks/agents/protectables). No write operations. Use this skill when the user needs to query disk info, list buckets/objects, check file system status, or view backup/policy details. Triggers: 云硬盘, EVS, 对象存储, OBS, 文件系统, SFS, 备份, CBR, 存储库, 快照, 桶, volume, bucket, backup, vault.

技能文档

Huawei Cloud Resource Query

⚠️ Execution Method (Must Read): This skill executes queries via local Python scripts. Using hcloud, openstack, or other CLI tools or direct API calls is prohibited.

  • Query scripts are located under the skill directory scripts// (e.g., scripts/as/list_scaling_groups.py)
  • All scripts and environment check scripts are inside the skill package, must be executed using skill action=exec, do not run them directly in the shell
  • For specific script paths and parameters, refer to references//guide.md
  • Do not attempt hcloud, openstack, curl IAM, or other CLI/API methods; this skill does not depend on those tools
  • All paths are relative to the skill directory, which is the directory where this SKILL.md resides

Overview

This skill is a standalone read-only query skill that uses local Python scripts to call the Huawei Cloud Python SDK to query Huawei Cloud resources, available specifications, and existing resource information.

This skill is applicable to the following scenarios:

  1. Query available cloud resource specifications in a given region
  2. Query available images for a given OS type
  3. Query disk types and existing disk information
  4. Query existing resources and their key attributes
  5. Query resources not created via Terraform or other IaC tools
  6. Prepare real parameters for automated configuration, resource verification, or environment inventory
  7. Obtain reusable information such as resource ID, name, specification, image, network, disk, etc.

This skill does NOT handle the following:

  1. Creating resources
  2. Modifying resources
  3. Deleting resources
  4. Guessing or fabricating information that has not been queried

Capabilities

This skill provides query capabilities through categorized scripts in the scripts directory, and usage instructions through categorized guides in the references directory.

The capabilities provided by this skill include:

  1. Query resource lists
  2. Query individual resource details
  3. Query available specifications, images, disk types, and other selection information
  4. Query key identifiers and dependency relationships of existing resources

Usage Principles

Important: Script paths executed within this skill are all relative to the skill directory, which is the directory where this SKILL.md resides

  1. This skill only performs queries, no write operations
  2. Prefer explicitly specified region, project, AZ, resource name, resource ID, etc. from the user
  3. Query results must be based on actual API responses, not inferred from experience
  4. Returned results should prioritize key fields for subsequent reuse
  5. When the result set is large, narrow the scope first using conditions like region, name, id, status, tag, etc.
  6. If no corresponding script or guide exists for the current resource type, clearly state that it is unsupported; do not return unreliable results
  7. If the user has not provided necessary scope information and no default values exist in the environment, confirm before executing the query
  8. Execute directly according to guide.md; do not read the script contents in the scripts directory
  9. Cache output when it is large
  10. Before executing each script, always run -h first to view usage
  11. Do not fabricate script names; execute according to the script names in guide.md. If a script name is not found in guide.md, it means it is not supported

Prerequisites

Before use, you must run the environment check script to complete environment validation and dependency installation in one step:

  • Linux / macOS: skill action=exec: bash skill://scripts/check_env.sh
  • Windows: skill action=exec: powershell -ExecutionPolicy Bypass -File skill://scripts/check_env.ps1

Windows Note: Do not use && to chain commands (PowerShell 5.x does not support it); use semicolons if you need to change directories first

The script will check in sequence: Python >= 3.6 → install dependencies → validate SDK → validate credentials → validate service availability. If the environment check fails, fix the issues before proceeding with other scripts.

Environment Variables:

VariableRequiredDescription
HW_ACCESS_KEYYesHuawei Cloud AK
HW_SECRET_KEYYesHuawei Cloud SK
HW_REGION_NAMENoDefault cn-north-4
HW_PROJECT_IDNoProject ID (automatically obtained via IAM API when not set)
HW_SECURITY_TOKENNoRequired for temporary AK/SK

Do not output the values of the above environment variables. For additional parameters required by other resource scripts (availability zone, enterprise project, etc.), refer to the corresponding guide.md.


Execution Flow

When this skill is invoked, the following steps must be executed without waiting for the user to prompt again:

Step 1: Environment Preparation

Run the environment check script to ensure dependencies are installed and credentials are configured:

  • Linux / macOS: skill action=exec: bash skill://scripts/check_env.sh
  • Windows: skill action=exec: powershell -ExecutionPolicy Bypass -File skill://scripts/check_env.ps1

If the environment check fails, fix as prompted and re-run until it passes.

Step 2: Identify and Execute Query Script

  1. Based on the user's query intent, read references//guide.md to determine the script path and parameters to execute
  2. First run -h to view script usage:
    • Linux / macOS: skill action=exec: skill://.venv/bin/python3 skill://scripts//.py -h
    • Windows: skill action=exec: skill://.venv/Scripts/python3.exe skill://scripts//.py -h
  3. Assemble parameters based on user requirements and execute the script:
    • Linux / macOS: skill action=exec: skill://.venv/bin/python3 skill://scripts//.py
    • Windows: skill action=exec: skill://.venv/Scripts/python3.exe skill://scripts//.py
  4. Format the results and return to the user

Important:

  • All scripts and environment check scripts are inside the skill package, must be executed using skill action=exec, do not run them directly in the shell
  • The venv is automatically created by the check_env script; on Linux/macOS Python is located at .venv/bin/python3, on Windows at .venv/Scripts/python3.exe
  • Do not execute scripts directly with python3
  • Do not read the script source code in the scripts directory; just follow the instructions in guide.md
  • Cache results when output is large
  • The --project_id parameter is optional; when not provided, it is automatically obtained via IAM API based on region

Directory Structure

The directory conventions are as follows (all paths are relative to the skill directory):

  1. scripts// contains the corresponding Python query scripts. No need to read script contents; execute scripts according to the usage instructions in guide.md
  2. references//guide.md contains the corresponding resource usage guide
  3. Each script is responsible for a single, clear query action
  4. Each resource category maintains at least one guide.md to describe script capabilities, parameters, and usage

Parameter Confirmation

Before executing a query script, confirm the following parameters:

ParameterRequiredDescription
regionYesHuawei Cloud region, e.g., cn-north-4
--project_idNoProject ID, automatically obtained when not provided
--availability_zoneNoAvailability zone, required for some resource queries

For other script-specific parameters, refer to references//guide.md.


Output Format

Query results are output in JSON format, containing the following common fields:

  • total: Total number of matched resources
  • items: Resource list, each resource contains key fields such as id, name, status, etc.
  • Specific fields vary by resource type; see individual guide.md for details

Verification Method

  1. Run the environment check script to confirm dependencies and credentials are available
  2. Use the -h parameter to view script usage and confirm parameters are correct
  3. Execute queries against known resources and compare with console data to verify result accuracy
  4. Check that the returned total count is reasonable

Best Practices

  1. Narrow the query scope first (specify region, availability zone, etc.) to avoid returning too much data
  2. Use --help to view the complete list of parameters supported by the script
  3. Cache large query results locally to avoid repeated requests
  4. When multiple resource information is needed, query in dependency order (e.g., query VPC first, then subnets)
  5. When script execution fails, check environment variables and network connectivity first

Reference Documentation

  • Service query script usage guides: references//guide.md

Notes

  1. This skill only provides read-only query capabilities; no write operations are performed
  2. Do not output the values of HW_ACCESS_KEY, HW_SECRET_KEY, and other environment variables
  3. All scripts must be executed via skill action=exec; do not run them directly in the shell
  4. Do not guess script names; strictly execute according to the names in guide.md
  5. The environment check script must be run before querying
  6. When using temporary AK/SK, HW_SECURITY_TOKEN must be set

相关技能

Query Huawei Cloud OBS (Object Storage Service) statistics: list buckets with capacity and object counts, query extranet/intranet download traffic with month...

作者 huaweicloud-skills-team1 次安装

Skill specialized for creating buckets on Huawei Cloud OBS. Use this skill when users need to create OBS buckets, set bucket properties, configure access per...

作者 huaweicloud-skills-team1 次安装

Query the current Huawei Cloud backup (VBS/Volume Backup Service) list. Lists all backups in the user's project, with optional filtering by status, name, resource type, vault, and time range. The legacy VBS service has been superseded by CBR (Cloud Backup and Recovery), so this skill queries backups through the CBR ListBackups API/CLI. Use when the user wants to: (1) list all backups / VBS backup list, (2) check backup status and details, (3) filter backups by name, status, resource type, vault, or time range, (4) inspect backup inventory for daily inspection or troubleshooting. Triggers include: "VBS", "备份列表", "备份", "云硬盘备份", "backup list", "list backups", "备份状态", "CBR", "Cloud Backup", "vbs list"

通过本地 Python 脚本只读查询华为云 ECS、BMS、IMS、AS 资源。

作者 huaweicloud-skills-team2 次安装

Queries the total storage size of Huawei Cloud OBS (Object Storage Service) buckets and returns ONLY the size value — a single number, in bytes by default. Supports querying the total size of one bucket or the combined total across all buckets under the account. Uses the KooCLI obsutil-backed `hcloud OBS ls ... -du -bf=raw` command (primary) or the huaweicloudsdkobs Python SDK (fallback). Read-only — never creates, modifies or deletes any resource. Use this skill whenever the user wants to know the total size of an OBS bucket or the overall OBS storage usage, e.g. for capacity review, cost estimation or storage planning. Triggers include: OBS total size, OBS bucket size, total storage usage, bucket capacity, OBS大小, OBS总大小, OBS容量, 桶大小, 查询OBS大小, 存储占用, OBS存储量.

Queries Huawei Cloud ECS (Elastic Cloud Server) resources in read-only mode. Covers ECS instances, flavors, keypairs, quotas, server groups, block devices, NICs, VNC console, launch templates, recycle bin, scheduled events, and tags. No write operations. Use this skill when the user needs to query ECS instance details, list flavors, check server status, view block devices, or inspect ECS resource attributes. Triggers include: 查询ECS, ECS实例查询, 云服务器查询, 弹性云服务器, ECS规格, ECS配额, 云服务器列表, ECS详情, query ECS, list ECS servers, show server details, ECS flavors, ECS quotas, ECS keypairs, server groups, block devices, ECS inventory, cloud server list, ecs list, ecs query, ecs show.

huaweicloud-skills-team 的更多技能

浏览全部技能

用自然语言控制华为昇腾 NPU,本地或 SSH 远程执行 npu-smi 命令。

作者 huaweicloud-skills-team7 次安装

在华为云昇腾 910B DevServer 上按单机或双机(16 卡)拓扑部署并测试 LLM、VL、Embedding、Rerank 模型。

作者 huaweicloud-skills-team7 次安装

面向华为云资源的只读查询能力,用于资源清点、核对与参数发现。

作者 huaweicloud-skills-team6 次安装

通过本地 Python SDK 只读查询华为云 IAM 资源(用户、用户组、策略、委托、AK/SK、MFA、安全设置)。

作者 huaweicloud-skills-team6 次安装