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. You must use
skill action=exec to execute them. Do not run them directly in a shell.
- For specific script paths and parameters, refer to
references/<service>/guide.md
- Do not attempt hcloud, openstack, curl IAM, or any 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 is located.
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 specific region
- Query available images for a specific OS type
- Query disk types and existing disk information
- Query existing resources and their key attributes
- Query resources that were not created via 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, disks, etc.
This skill does NOT handle the following:
- Creating resources
- Modifying resources
- Deleting resources
- Guessing or fabricating information that has not been 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.
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 where this SKILL.md is located.
- This skill only performs queries; it does not perform any write operations
- Prioritize using explicitly specified region, project, AZ, resource name, resource ID, etc. provided by the user
- Query results must be based on actual API responses; do not infer from experience
- Returned results should prioritize retaining key fields for subsequent reuse
- When the result set is large, narrow the scope first by region, name, id, status, tag, etc.
- If there is no corresponding script or guide 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 there are no default values in the environment, confirm the details before executing the query
- Execute directly according to guide.md; do not read the script contents in the scripts directory
- Cache results when the output is large
- You must run
-h to view usage before executing each script
- Do not invent 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 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 order: 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 if not set) |
| HW_SECURITY_TOKEN |
No |
Required when using 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.), 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
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 the issues as prompted and re-run until it passes.
Step 2: Identify and Execute Query Scripts
- 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 needs 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 them to the user
Important:
- All scripts and environment check scripts are inside the skill package. You must use
skill action=exec to execute them. Do not run them directly in a 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
python3 directly to execute scripts
- Do not read the source code of scripts in the scripts directory; just follow the instructions in guide.md
- Cache results when the output is large
- The
--project_id parameter is optional; if 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/<resource_category>/ contains the Python query scripts for corresponding resources.
You do not need to read the script contents; just execute the scripts according to the usage instructions in guide.md
references/<resource_category>/guide.md contains the usage guide for corresponding resources
- Each script is responsible for only one clear, single query action
- Each resource category must maintain at least one guide.md to document 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/<service>/guide.md.
Output Format
Query results are output in JSON format and contain 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 Methods
- 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 whether 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 supported parameters for a 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 a script fails, check environment variables and network connectivity first
Reference Documentation
- Query script usage guides for each service:
references/<service>/guide.md
Notes
- This skill only provides read-only query capabilities; it does not perform any write operations
- Do not output the values of environment variables such as HW_ACCESS_KEY, HW_SECRET_KEY, etc.
- All scripts must be executed via
skill action=exec; do not run them directly in a shell
- Do not guess 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
1---2name: huawei-cloud-monitoring-query3description: Queries Huawei Cloud monitoring and enterprise project resources (CES/EPS). Covers alarm rules, alarm histories, alarm templates, dashboards, notification masks, resource groups, one-click alarms, and enterprise projects (list/detail/quotas/bound resources/migration records). No write operations. Use this skill when the user needs to check alarm status, view monitoring dashboards, query alarm rules, or manage enterprise project info. Triggers: 云监控, 告警, 告警规则, 告警历史, 仪表盘, 企业项目, CES, EPS, 告警模板, 资源分组, alarm, monitoring, alert.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. **You must use `skill action=exec` to execute them. Do not run them directly in a shell.**
11> - For specific script paths and parameters, refer to `references/<service>/guide.md`
12> - **Do not attempt hcloud, openstack, curl IAM, or any 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 is located.**
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 specific region
222. Query available images for a specific OS type
233. Query disk types and existing disk information
244. Query existing resources and their key attributes
255. Query resources that were not created via Terraform or other IaC tools
266. Prepare real parameters for automation configuration, resource verification, or environment inventory
277. Obtain reusable information such as resource IDs, names, specifications, images, networks, disks, 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## Capability Scope
39
40This skill provides query capabilities through categorized scripts in the scripts directory, and usage instructions through categorized guides in the references directory.
41
42Capabilities provided by this skill include:
43
441. Query resource lists
452. Query individual resource details
463. Query selection information such as available specifications, images, and disk types
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 is located.
54
551. This skill only performs queries; it does not perform any write operations
562. Prioritize using explicitly specified region, project, AZ, resource name, resource ID, etc. provided by the user
573. Query results must be based on actual API responses; do not infer from experience
584. Returned results should prioritize retaining key fields for subsequent reuse
595. When the result set is large, narrow the scope first by region, name, id, status, tag, etc.
606. If there is no corresponding script or guide 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 there are no default values in the environment, confirm the details before executing the query
628. Execute directly according to guide.md; do not read the script contents in the scripts directory
639. Cache results when the output is large
6410. You must run `-h` to view usage before executing each script
6511. Do not invent 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
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 order: Python >= 3.6 → install dependencies → validate SDK → validate credentials → validate service availability.
79If the environment check fails, fix the issues before proceeding with other scripts.
80
81**Environment Variables:**
82
83| Variable | Required | Description |
84|----------|----------|-------------|
85| HW_ACCESS_KEY | Yes | Huawei Cloud AK |
86| HW_SECRET_KEY | Yes | Huawei Cloud SK |
87| HW_REGION_NAME | No | Default cn-north-4 |
88| HW_PROJECT_ID | No | Project ID (automatically obtained via IAM API if not set) |
89| HW_SECURITY_TOKEN | No | Required when using temporary AK/SK |
90
91**Do not output the values of the above environment variables.** For additional parameters required by other resource scripts (availability zone, enterprise project, etc.), see the corresponding guide.md.
92
93---
94
95## Execution Flow
96
97**When this skill is invoked, you must follow these steps. Do not wait for the user to prompt again:**
98
99### Step 1: Environment Preparation
100
101Run the environment check script to ensure dependencies are installed and credentials are configured:
102
103- Linux / macOS: `skill action=exec: bash skill://scripts/check_env.sh`
104- Windows: `skill action=exec: powershell -ExecutionPolicy Bypass -File skill://scripts/check_env.ps1`
105
106If the environment check fails, fix the issues as prompted and re-run until it passes.
107
108### Step 2: Identify and Execute Query Scripts
109
1101. Based on the user's query intent, read `references/<service>/guide.md` to determine the script path and parameters to execute
1112. First run `-h` to view script usage:
112 - Linux / macOS: `skill action=exec: skill://.venv/bin/python3 skill://scripts/<service>/<script>.py -h`
113 - Windows: `skill action=exec: skill://.venv/Scripts/python3.exe skill://scripts/<service>/<script>.py -h`
1143. Assemble parameters based on user needs and execute the script:
115 - Linux / macOS: `skill action=exec: skill://.venv/bin/python3 skill://scripts/<service>/<script>.py <parameters>`
116 - Windows: `skill action=exec: skill://.venv/Scripts/python3.exe skill://scripts/<service>/<script>.py <parameters>`
1174. Format the results and return them to the user
118
119**Important**:
120
121- All scripts and environment check scripts are inside the skill package. **You must use `skill action=exec` to execute them. Do not run them directly in a shell.**
122- 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`
123- Do not use `python3` directly to execute scripts
124- Do not read the source code of scripts in the scripts directory; just follow the instructions in guide.md
125- Cache results when the output is large
126- The `--project_id` parameter is optional; if not provided, it is automatically obtained via IAM API based on region
127
128---
129
130## Directory Structure
131
132The directory conventions are as follows (all paths are relative to the skill directory):
133
1341. `scripts/<resource_category>/` contains the Python query scripts for corresponding resources.
135 You do not need to read the script contents; just execute the scripts according to the usage instructions in guide.md
1362. `references/<resource_category>/guide.md` contains the usage guide for corresponding resources
1373. Each script is responsible for only one clear, single query action
1384. Each resource category must maintain at least one guide.md to document script capabilities, parameters, and usage
139
140---
141
142## Parameter Confirmation
143
144Before executing query scripts, confirm the following parameters:
145
146| Parameter | Required | Description |
147|-----------|----------|-------------|
148| region | Yes | Huawei Cloud region, e.g., cn-north-4 |
149| --project_id | No | Project ID; automatically obtained if not provided |
150| --availability_zone | No | Availability zone; required for some resource queries |
151
152For script-specific parameters, see `references/<service>/guide.md`.
153
154---
155
156## Output Format
157
158Query results are output in JSON format and contain the following common fields:
159
160- `total`: Total number of matched resources
161- `items`: Resource list, each resource contains key fields such as id, name, status, etc.
162- Specific fields vary by resource type; see individual guide.md for details
163
164---
165
166## Verification Methods
167
1681. Run the environment check script to confirm dependencies and credentials are available
1692. Use the `-h` parameter to view script usage and confirm parameters are correct
1703. Execute queries against known resources and compare with console data to verify result accuracy
1714. Check whether the returned `total` count is reasonable
172
173---
174
175## Best Practices
176
1771. Narrow the query scope first (specify region, availability zone, etc.) to avoid returning too much data
1782. Use `--help` to view the complete list of supported parameters for a script
1793. Cache large query results locally to avoid repeated requests
1804. When multiple resource information is needed, query in dependency order (e.g., query VPC first, then subnets)
1815. When a script fails, check environment variables and network connectivity first
182
183---
184
185## Reference Documentation
186
187- Query script usage guides for each service: `references/<service>/guide.md`
188
189---
190
191## Notes
192
1931. This skill only provides read-only query capabilities; it does not perform any write operations
1942. Do not output the values of environment variables such as HW_ACCESS_KEY, HW_SECRET_KEY, etc.
1953. All scripts must be executed via `skill action=exec`; do not run them directly in a shell
1964. Do not guess script names; strictly execute according to the names in guide.md
1975. You must run the environment check script before querying
1986. When using temporary AK/SK, you need to set HW_SECURITY_TOKEN