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.
设计与多媒体
huawei-cloud-computing-query
试用通过本地 Python 脚本只读查询华为云 ECS、BMS、IMS、AS 资源。
它能做什么
只读查询华为云 ECS、BMS、IMS、AS 资源信息的技能,由本地 Python 脚本调用华为云 SDK 完成。可查询 ECS 实例、规格、密钥对、配额、服务器组、云硬盘、网卡、VNC 控制台;BMS 裸金属服务器及规格与配额;IMS 镜像、操作系统版本、镜像成员与配额;AS 伸缩组、伸缩配置、伸缩策略、活动日志、生命周期挂钩、暖池与配额。返回 JSON 格式的结果,包含资源 ID、名称、状态等关键字段。所有脚本必须先运行环境检查脚本,再通过 `skill action=exec` 调用,对应的脚本名与参数以 references/<服务>/guide.md 为准。
什么时候用它
- 列出指定 region 下可用的 ECS 实例规格
- 在创建资源前查看镜像 ID 与操作系统版本
- 查看弹性伸缩组的运行状态、策略与活动日志
- 查询 ECS、BMS 或 IMS 的配额以辅助容量规划
技能文档
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. You must use
skill action=execto execute them; do not run them directly in the shell- For specific script paths and parameters, see
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 containing this SKILL.md
Overview
This skill is a standalone read-only query skill that queries Huawei Cloud resources, available specifications, and existing resource information by calling the Huawei Cloud Python SDK via local Python scripts.
This skill is applicable to the following scenarios:
- Query available cloud resource specifications in a given region
- Query available images for a specific operating system
- Query cloud disk types and existing cloud disk information
- Query existing resources and their key attributes
- Query resources not created through Terraform or other IaC tools
- Prepare real parameters for automation configuration, resource verification, or environment inventory
- Obtain reusable information such as resource IDs, names, specifications, images, networks, and disks
This skill does NOT handle the following:
- Creating resources
- Modifying resources
- Deleting resources
- Guessing or fabricating information that was not queried
Capability Scope
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:
- Query resource lists
- Query individual resource details
- Query selection information such as available specifications, images, and disk types
- 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 containing this SKILL.md
- This skill only performs queries; it does not perform any write operations
- Prioritize using information explicitly specified by the user, such as region, project, AZ, resource name, and resource ID
- Query results must be based on actual API responses; do not speculate based on experience
- Returned results should preserve key fields for subsequent reuse
- When the result set is large, prioritize narrowing the scope by conditions such as region, name, id, status, and tag
- If the current resource type does not have a corresponding script or guide, clearly state that it is not supported; do not return unreliable results
- If the user does not provide necessary scope information and there are no default values in the environment, confirm the information before executing the query
- Execute directly according to guide.md; do not read the script contents in the scripts directory
- Cache output when it is large
- You must execute
-hto view usage before executing each script - Do not fabricate script names; execute according to the script names in guide.md. If a script name is not in guide.md, it means it is not supported
Prerequisites
Before use, you must run the environment check script to complete environment verification 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 concatenate commands (PowerShell 5.x does not support this); use semicolons if you need to change directories first
The script will check in order: Python >= 3.6 → install dependencies → verify SDK → verify credentials → verify service availability. If the environment check fails, fix the issue before continuing with other scripts.
Environment Variables:
| Variable | Required | Description |
|---|---|---|
| HW_ACCESS_KEY | Yes | Huawei Cloud AK |
| HW_SECRET_KEY | Yes | Huawei Cloud SK |
| HW_REGION_NAME | No | Default cn-north-4 |
| HW_PROJECT_ID | No | Project ID (automatically obtained via IAM API if not set) |
| HW_SECURITY_TOKEN | No | Required for temporary AK/SK |
Do not output the values of the above environment variables. For other resource scripts that require additional parameters (availability zone, enterprise project, etc.), see the corresponding guide.md.
Execution Flow
When this skill is invoked, you must follow these steps; do not wait for the user to prompt again:
Step 1: Environment Preparation
Execute 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 the issue as prompted and re-execute until it passes.
Step 2: Identify and Execute Query Scripts
- Based on the user's query intent, read
references//guide.mdto determine the script path and parameters to execute - First execute
-hto 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
- Linux / macOS:
- 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
- Linux / macOS:
- Format the results and return them to the user
Important:
- All scripts and environment check scripts are inside the skill package. You must use
skill action=execto execute them; 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 use
python3directly to execute scripts - Do not read script source code in the scripts directory; execute according to the instructions in guide.md
- Cache results when the output is large
- The
--project_idparameter is optional; if not provided, it is automatically obtained via the IAM API based on the region
Directory Structure
The directory conventions are as follows (all paths are relative to the skill directory):
- scripts// contains the Python query scripts for the corresponding resources. You do not need to read the script contents; execute the scripts according to the usage instructions in guide.md
- references//guide.md contains the usage guide for the corresponding resources
- Each script is responsible for a single, clear query action
- Each resource category maintains at least one guide.md to describe script capabilities, parameters, and usage
Parameter Confirmation
Before executing query scripts, confirm the following parameters:
| Parameter | Required | Description |
|---|---|---|
| region | Yes | Huawei Cloud region, e.g., cn-north-4 |
| --project_id | No | Project ID; automatically obtained if not provided |
| --availability_zone | No | Availability zone; required for some resource queries |
For script-specific parameters, see references//guide.md.
Output Format
Query results are output in JSON format, containing the following common fields:
total: Total number of matching resourcesitems: Resource list, each resource containing key fields such as id, name, and status- Specific fields vary by resource type; see individual guide.md files for details
Verification Method
- Execute the environment check script to confirm dependencies and credentials are available
- Use the
-hparameter to view script usage and confirm parameters are correct - Execute a query on a known resource and compare with console data to verify result accuracy
- Check whether the returned
totalcount is reasonable
Best Practices
- Narrow the query scope first (specify region, availability zone, etc.) to avoid returning too much data
- Use
--helpto view the complete list of parameters supported by a script - Cache query results locally when they are large to avoid repeated requests
- When multiple resource information is needed, query in dependency order (e.g., query VPC first, then subnet)
- When script execution fails, check environment variables and network connectivity first
Reference Documentation
- Query script usage guides for each service:
references//guide.md
Notes
- This skill only provides read-only query capabilities; it does not perform any write operations
- Do not output values of environment variables such as HW_ACCESS_KEY and HW_SECRET_KEY
- All scripts must be executed via
skill action=exec; do not run them directly in the shell - Do not fabricate script names; strictly execute according to the names in guide.md
- You must run the environment check script before querying
- When using temporary AK/SK, you need to set HW_SECURITY_TOKEN
相关技能
面向华为云资源的只读查询能力,用于资源清点、核对与参数发现。
Queries Huawei Cloud monitoring and enterprise project resources (CES/EPS). Covers alarm rules, alarm histories, alarm templates, dashboards, notification ma...
通过本地 Python SDK 只读查询华为云 IAM 资源(用户、用户组、策略、委托、AK/SK、MFA、安全设置)。
Queries Huawei Cloud storage resources (EVS/OBS/SFS/CBR). Covers cloud disks (volumes/snapshots/types/quotas/recycle bin), OBS buckets (ACL/metadata/notifica...
Query the list of Huawei Cloud BMS (Bare Metal Server) instances under the current tenant / project, focused on the BMS NAME list. Returns each server's name, id and status; can also output a pure BMS name-only list. Supports filtering by status, name and pagination (limit/offset). Uses the KooCLI command `hcloud BMS ListBareMetalServers --cli-region={region}` (primary) against the v1 API, or the huaweicloudsdkbms Python SDK (fallback). Read-only — never creates, modifies or deletes any bare metal server. Use this skill whenever the user wants to list/inspect the BMS instances of the tenant or query the BMS name list, e.g. for BMS inventory, daily inspection, or cost review. Triggers include: "list BMS", "BMS list", "query BMS names", "BMS name list", "裸金属服务器列表", "查询裸金属服务器", "BMS名称列表", "裸金属服务器名称", "list bare metal servers", "how many BMS".
huaweicloud-skills-team 的更多技能
浏览全部技能用自然语言控制华为昇腾 NPU,本地或 SSH 远程执行 npu-smi 命令。
在华为云昇腾 910B DevServer 上按单机或双机(16 卡)拓扑部署并测试 LLM、VL、Embedding、Rerank 模型。
面向华为云资源的只读查询能力,用于资源清点、核对与参数发现。
通过本地 Python SDK 只读查询华为云 IAM 资源(用户、用户组、策略、委托、AK/SK、MFA、安全设置)。
在华为云 Flexus L 实例上一键部署 OpenClaw AI Agent 平台,并完成模型与通道配置。
在华为云 Flexus L 实例上一键部署 Hermes AI Agent 平台,并完成大模型与机器人通道配置。