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/<service_category>/ (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/<service>/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:
- Query available cloud resource specifications in a given region
- Query available images for a given OS type
- Query disk types and existing disk information
- Query existing resources and their key attributes
- Query resources not created via Terraform or other IaC tools
- Prepare real parameters for automated configuration, resource verification, or environment inventory
- Obtain reusable information such as resource ID, name, specification, image, network, disk, etc.
This skill does NOT handle the following:
- Creating resources
- Modifying resources
- Deleting resources
- 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:
- Query resource lists
- Query individual resource details
- Query available specifications, images, disk types, and other selection information
- 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
- This skill only performs queries, no write operations
- Prefer explicitly specified region, project, AZ, resource name, resource ID, etc. from the user
- Query results must be based on actual API responses, not inferred from experience
- Returned results should prioritize key fields for subsequent reuse
- When the result set is large, narrow the scope first using conditions like region, name, id, status, tag, etc.
- If no corresponding script or guide exists for the current resource type, clearly state that it is unsupported; do not return unreliable results
- If the user has not provided necessary scope information and no default values exist in the environment, confirm 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
- Before executing each script, always run -h first to view usage
- 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:
| 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 when not set) |
| HW_SECURITY_TOKEN |
No |
Required 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
- Based on the user's query intent, read
references/<service>/guide.md to determine the script path and parameters to execute
- First run
-h to view script usage:
- Linux / macOS:
skill action=exec: skill://.venv/bin/python3 skill://scripts/<service>/<script>.py -h
- Windows:
skill action=exec: skill://.venv/Scripts/python3.exe skill://scripts/<service>/<script>.py -h
- Assemble parameters based on user requirements and execute the script:
- Linux / macOS:
skill action=exec: skill://.venv/bin/python3 skill://scripts/<service>/<script>.py <parameters>
- Windows:
skill action=exec: skill://.venv/Scripts/python3.exe skill://scripts/<service>/<script>.py <parameters>
- 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):
- scripts// contains the corresponding Python query scripts. No need to read script contents; execute scripts according to the usage instructions in guide.md
- references//guide.md contains the corresponding resource usage guide
- 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 a query script, confirm the following parameters:
| Parameter |
Required |
Description |
| region |
Yes |
Huawei Cloud region, e.g., cn-north-4 |
| --project_id |
No |
Project ID, automatically obtained when not provided |
| --availability_zone |
No |
Availability zone, required for some resource queries |
For other script-specific parameters, refer to references/<service>/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
- Run the environment check script to confirm dependencies and credentials are available
- Use the
-h parameter to view script usage and confirm parameters are correct
- Execute queries against known resources and compare with console data to verify result accuracy
- Check that the returned
total count is reasonable
Best Practices
- Narrow the query scope first (specify region, availability zone, etc.) to avoid returning too much data
- Use
--help to view the complete list of parameters supported by the script
- Cache large query results locally to avoid repeated requests
- When multiple resource information is needed, query in dependency order (e.g., query VPC first, then subnets)
- When script execution fails, check environment variables and network connectivity first
Reference Documentation
- Service query script usage guides:
references/<service>/guide.md
Notes
- This skill only provides read-only query capabilities; no write operations are performed
- Do not output the values of HW_ACCESS_KEY, HW_SECRET_KEY, and other environment variables
- All scripts must be executed via
skill action=exec; do not run them directly in the shell
- Do not guess script names; strictly execute according to the names in guide.md
- The environment check script must be run before querying
- When using temporary AK/SK, HW_SECURITY_TOKEN must be set
1---2name: huawei-cloud-storage-query3description: 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.4---5# Huawei Cloud Resource Query
6
7> **⚠️ 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.**
8>
9> - Query scripts are located under the skill directory `scripts/<service_category>/` (e.g., `scripts/as/list_scaling_groups.py`)
10> - 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**
11> - For specific script paths and parameters, refer to `references/<service>/guide.md`
12> - **Do not attempt hcloud, openstack, curl IAM, or other CLI/API methods; this skill does not depend on those tools**
13> - **All paths are relative to the skill directory, which is the directory where this SKILL.md resides**
14
15## Overview
16
17This 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.
18
19This skill is applicable to the following scenarios:
20
211. Query available cloud resource specifications in a given region
222. Query available images for a given OS type
233. Query disk types and existing disk information
244. Query existing resources and their key attributes
255. Query resources not created via Terraform or other IaC tools
266. Prepare real parameters for automated configuration, resource verification, or environment inventory
277. Obtain reusable information such as resource ID, name, specification, image, network, disk, etc.
28
29This skill does NOT handle the following:
30
311. Creating resources
322. Modifying resources
333. Deleting resources
344. Guessing or fabricating information that has not been queried
35
36---
37
38## Capabilities
39
40This skill provides query capabilities through categorized scripts in the scripts directory, and usage instructions through categorized guides in the references directory.
41
42The capabilities provided by this skill include:
43
441. Query resource lists
452. Query individual resource details
463. Query available specifications, images, disk types, and other selection information
474. Query key identifiers and dependency relationships of existing resources
48
49---
50
51## Usage Principles
52
53Important: Script paths executed within this skill are all relative to the skill directory, which is the directory where this SKILL.md resides
54
551. This skill only performs queries, no write operations
562. Prefer explicitly specified region, project, AZ, resource name, resource ID, etc. from the user
573. Query results must be based on actual API responses, not inferred from experience
584. Returned results should prioritize key fields for subsequent reuse
595. When the result set is large, narrow the scope first using conditions like region, name, id, status, tag, etc.
606. If no corresponding script or guide exists for the current resource type, clearly state that it is unsupported; do not return unreliable results
617. If the user has not provided necessary scope information and no default values exist in the environment, confirm before executing the query
628. Execute directly according to guide.md; do not read the script contents in the scripts directory
639. Cache output when it is large
6410. Before executing each script, always run -h first to view usage
6511. 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
66
67---
68
69## Prerequisites
70
71**Before use, you must run the environment check script to complete environment validation and dependency installation in one step:**
72
73- Linux / macOS: `skill action=exec: bash skill://scripts/check_env.sh`
74- Windows: `skill action=exec: powershell -ExecutionPolicy Bypass -File skill://scripts/check_env.ps1`
75
76> Windows Note: Do not use `&&` to chain commands (PowerShell 5.x does not support it); use semicolons if you need to change directories first
77
78The script will check in sequence: Python >= 3.6 → install dependencies → validate SDK →
79validate credentials → validate service availability. If the environment check fails,
80fix the issues before proceeding with other scripts.
81
82**Environment Variables:**
83
84| Variable | Required | Description |
85|----------|----------|-------------|
86| HW_ACCESS_KEY | Yes | Huawei Cloud AK |
87| HW_SECRET_KEY | Yes | Huawei Cloud SK |
88| HW_REGION_NAME | No | Default cn-north-4 |
89| HW_PROJECT_ID | No | Project ID (automatically obtained via IAM API when not set) |
90| HW_SECURITY_TOKEN | No | Required for temporary AK/SK |
91
92**Do not output the values of the above environment variables.** For additional parameters
93required by other resource scripts (availability zone, enterprise project, etc.),
94refer to the corresponding guide.md.
95
96---
97
98## Execution Flow
99
100**When this skill is invoked, the following steps must be executed without waiting for the user to prompt again:**
101
102### Step 1: Environment Preparation
103
104Run the environment check script to ensure dependencies are installed and credentials are configured:
105
106- Linux / macOS: `skill action=exec: bash skill://scripts/check_env.sh`
107- Windows: `skill action=exec: powershell -ExecutionPolicy Bypass -File skill://scripts/check_env.ps1`
108
109If the environment check fails, fix as prompted and re-run until it passes.
110
111### Step 2: Identify and Execute Query Script
112
1131. Based on the user's query intent, read `references/<service>/guide.md` to determine the script path and parameters to execute
1142. First run `-h` to view script usage:
115 - Linux / macOS: `skill action=exec: skill://.venv/bin/python3 skill://scripts/<service>/<script>.py -h`
116 - Windows: `skill action=exec: skill://.venv/Scripts/python3.exe skill://scripts/<service>/<script>.py -h`
1173. Assemble parameters based on user requirements and execute the script:
118 - Linux / macOS: `skill action=exec: skill://.venv/bin/python3 skill://scripts/<service>/<script>.py <parameters>`
119 - Windows: `skill action=exec: skill://.venv/Scripts/python3.exe skill://scripts/<service>/<script>.py <parameters>`
1204. Format the results and return to the user
121
122**Important:**
123
124- 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**
125- 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`
126- Do not execute scripts directly with `python3`
127- Do not read the script source code in the scripts directory; just follow the instructions in guide.md
128- Cache results when output is large
129- The `--project_id` parameter is optional; when not provided, it is automatically obtained via IAM API based on region
130
131---
132
133## Directory Structure
134
135The directory conventions are as follows (all paths are relative to the skill directory):
136
1371. scripts/<resource_category>/ contains the corresponding Python query scripts. No need to read script contents; execute scripts according to the usage instructions in guide.md
1382. references/<resource_category>/guide.md contains the corresponding resource usage guide
1393. Each script is responsible for a single, clear query action
1404. Each resource category maintains at least one guide.md to describe script capabilities, parameters, and usage
141
142---
143
144## Parameter Confirmation
145
146Before executing a query script, confirm the following parameters:
147
148| Parameter | Required | Description |
149|-----------|----------|-------------|
150| region | Yes | Huawei Cloud region, e.g., cn-north-4 |
151| --project_id | No | Project ID, automatically obtained when not provided |
152| --availability_zone | No | Availability zone, required for some resource queries |
153
154For other script-specific parameters, refer to `references/<service>/guide.md`.
155
156---
157
158## Output Format
159
160Query results are output in JSON format, containing the following common fields:
161
162- `total`: Total number of matched resources
163- `items`: Resource list, each resource contains key fields such as id, name, status, etc.
164- Specific fields vary by resource type; see individual guide.md for details
165
166---
167
168## Verification Method
169
1701. Run the environment check script to confirm dependencies and credentials are available
1712. Use the `-h` parameter to view script usage and confirm parameters are correct
1723. Execute queries against known resources and compare with console data to verify result accuracy
1734. Check that the returned `total` count is reasonable
174
175---
176
177## Best Practices
178
1791. Narrow the query scope first (specify region, availability zone, etc.) to avoid returning too much data
1802. Use `--help` to view the complete list of parameters supported by the script
1813. Cache large query results locally to avoid repeated requests
1824. When multiple resource information is needed, query in dependency order (e.g., query VPC first, then subnets)
1835. When script execution fails, check environment variables and network connectivity first
184
185---
186
187## Reference Documentation
188
189- Service query script usage guides: `references/<service>/guide.md`
190
191---
192
193## Notes
194
1951. This skill only provides read-only query capabilities; no write operations are performed
1962. Do not output the values of HW_ACCESS_KEY, HW_SECRET_KEY, and other environment variables
1973. All scripts must be executed via `skill action=exec`; do not run them directly in the shell
1984. Do not guess script names; strictly execute according to the names in guide.md
1995. The environment check script must be run before querying
2006. When using temporary AK/SK, HW_SECURITY_TOKEN must be set