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, see
references/<service>/guide.md
- Do not attempt hcloud, openstack, curl IAM, or other CLI/API methods. This skill does not depend on these 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 certain 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 has not been queried
Capability Scope
This skill provides query capabilities through categorized scripts under the scripts directory, and usage instructions through categorized guides under the references directory.
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; 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 based on experience
- Returned results should prioritize retaining key fields for subsequent reuse
- When the result set is large, narrow the scope first using conditions such as region, name, id, status, tag, etc.
- If there is no corresponding script or guide for the current resource type, clearly state that it is not supported; 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 missing information before executing the query
- Execute directly according to guide.md; do not view script contents in the scripts directory
- Cache output when it is large
- You must execute
-h before each script execution to view usage
- Do not guess 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 using, 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 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 when 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 execute
-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 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 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 the IAM API based on region
Directory Structure
Directory conventions are as follows (all paths are relative to the skill directory):
- scripts// contains Python query scripts for the corresponding resources. You do not need to read script contents; just execute scripts according to the usage instructions in guide.md
- references//guide.md contains usage guides for the corresponding resources
- Each script is responsible for only one clear, single 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 script-specific parameters, see 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, where each resource contains key fields such as id, name, status, etc.
- Specific fields vary by resource type; see individual guide.md files 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 correct parameters
- Execute queries on 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 querying multiple resources, follow dependency order (e.g., query VPC first, then subnets)
- When script execution 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 must set HW_SECURITY_TOKEN
1---2name: huawei-cloud-iam-query3description: Queries Huawei Cloud identity and access management resources (IAM) via read-only Python SDK. Covers users, groups, policies, agencies, AK/SK, MFA devices, login/password/ACL policies, security compliance, and account quotas. No write operations. Use this skill when the user needs to query IAM identity info, check policies/permissions, view agency details, or inspect AK/SK/MFA status. Triggers: IAM, 用户, 用户组, 策略, 委托, 权限, AK/SK, MFA, 密码策略, 安全合规, 身份查询, 身份认证, identity, policy, agency.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, see `references/<service>/guide.md`
12> - **Do not attempt hcloud, openstack, curl IAM, or other CLI/API methods. This skill does not depend on these 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 certain operating system
233. Query cloud disk types and existing cloud disk information
244. Query existing resources and their key attributes
255. Query resources not created through 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, and disks
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 under the scripts directory, and usage instructions through categorized guides under the references directory.
41Capabilities provided by this skill include:
42
431. Query resource lists
442. Query individual resource details
453. Query available specifications, images, disk types, and other selection information
464. Query key identifiers and dependency relationships of existing resources
47
48---
49
50## Usage Principles
51
52Important: Script paths executed within this skill are all relative to the skill directory, which is the directory where this SKILL.md resides
53
541. This skill only performs queries; it does not perform any write operations
552. Prioritize using explicitly specified region, project, AZ, resource name, resource ID, etc. provided by the user
563. Query results must be based on actual API responses; do not infer based on experience
574. Returned results should prioritize retaining key fields for subsequent reuse
585. When the result set is large, narrow the scope first using conditions such as region, name, id, status, tag, etc.
596. If there is no corresponding script or guide for the current resource type, clearly state that it is not supported; do not return unreliable results
607. If the user has not provided necessary scope information and there are no default values in the environment, confirm the missing information before executing the query
618. Execute directly according to guide.md; do not view script contents in the scripts directory
629. Cache output when it is large
6310. You must execute `-h` before each script execution to view usage
6411. Do not guess 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
65
66---
67
68## Prerequisites
69
70**Before using, you must run the environment check script to complete environment validation and dependency installation in one step:**
71
72- Linux / macOS: `skill action=exec: bash skill://scripts/check_env.sh`
73- Windows: `skill action=exec: powershell -ExecutionPolicy Bypass -File skill://scripts/check_env.ps1`
74
75> Windows Note: Do not use `&&` to chain commands (PowerShell 5.x does not support it). Use semicolons if you need to change directories first.
76
77The script will check in sequence: Python >= 3.6 → install dependencies → validate SDK → validate credentials → validate service availability.
78If the environment check fails, fix the issues before continuing with other scripts.
79
80**Environment Variables:**
81
82| Variable | Required | Description |
83|------|------|------|
84| HW_ACCESS_KEY | Yes | Huawei Cloud AK |
85| HW_SECRET_KEY | Yes | Huawei Cloud SK |
86| HW_REGION_NAME | No | Default cn-north-4 |
87| HW_PROJECT_ID | No | Project ID (automatically obtained via IAM API when not set) |
88| HW_SECURITY_TOKEN | No | Required when using temporary AK/SK |
89
90**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.
91
92---
93
94## Execution Flow
95
96**When this skill is invoked, you must follow these steps. Do not wait for the user to prompt again:**
97
98### Step 1: Environment Preparation
99
100Run the environment check script to ensure dependencies are installed and credentials are configured:
101
102- Linux / macOS: `skill action=exec: bash skill://scripts/check_env.sh`
103- Windows: `skill action=exec: powershell -ExecutionPolicy Bypass -File skill://scripts/check_env.ps1`
104
105If the environment check fails, fix the issues as prompted and re-run until it passes.
106
107### Step 2: Identify and Execute Query Scripts
108
1091. Based on the user's query intent, read `references/<service>/guide.md` to determine the script path and parameters to execute
1102. First execute `-h` to view script usage:
111 - Linux / macOS: `skill action=exec: skill://.venv/bin/python3 skill://scripts/<service>/<script>.py -h`
112 - Windows: `skill action=exec: skill://.venv/Scripts/python3.exe skill://scripts/<service>/<script>.py -h`
1133. Assemble parameters based on user requirements and execute the script:
114 - Linux / macOS: `skill action=exec: skill://.venv/bin/python3 skill://scripts/<service>/<script>.py <parameters>`
115 - Windows: `skill action=exec: skill://.venv/Scripts/python3.exe skill://scripts/<service>/<script>.py <parameters>`
1164. Format the results and return them to the user
117
118**Important**:
119
120- 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**
121- 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`
122- Do not use `python3` directly to execute scripts
123- Do not read script source code in the scripts directory; just follow the instructions in guide.md
124- Cache results when output is large
125- The `--project_id` parameter is optional; when not provided, it is automatically obtained via the IAM API based on region
126
127---
128
129## Directory Structure
130
131Directory conventions are as follows (all paths are relative to the skill directory):
132
1331. scripts/<resource_category>/ contains Python query scripts for the corresponding resources. You do not need to read script contents; just execute scripts according to the usage instructions in guide.md
1342. references/<resource_category>/guide.md contains usage guides for the corresponding resources
1353. Each script is responsible for only one clear, single query action
1364. Each resource category maintains at least one guide.md to describe script capabilities, parameters, and usage
137
138---
139
140## Parameter Confirmation
141
142Before executing a query script, confirm the following parameters:
143
144| Parameter | Required | Description |
145|------|------|------|
146| region | Yes | Huawei Cloud region, e.g., cn-north-4 |
147| --project_id | No | Project ID; automatically obtained when not provided |
148| --availability_zone | No | Availability zone; required for some resource queries |
149
150For script-specific parameters, see `references/<service>/guide.md`.
151
152---
153
154## Output Format
155
156Query results are output in JSON format, containing the following common fields:
157
158- `total`: Total number of matched resources
159- `items`: Resource list, where each resource contains key fields such as id, name, status, etc.
160- Specific fields vary by resource type; see individual guide.md files for details
161
162---
163
164## Verification Method
165
1661. Run the environment check script to confirm dependencies and credentials are available
1672. Use the `-h` parameter to view script usage and confirm correct parameters
1683. Execute queries on known resources and compare with console data to verify result accuracy
1694. Check whether the returned `total` count is reasonable
170
171---
172
173## Best Practices
174
1751. Narrow the query scope first (specify region, availability zone, etc.) to avoid returning too much data
1762. Use `--help` to view the complete list of supported parameters for a script
1773. Cache large query results locally to avoid repeated requests
1784. When querying multiple resources, follow dependency order (e.g., query VPC first, then subnets)
1795. When script execution fails, check environment variables and network connectivity first
180
181---
182
183## Reference Documentation
184
185- Query script usage guides for each service: `references/<service>/guide.md`
186
187---
188
189## Notes
190
1911. This skill only provides read-only query capabilities; it does not perform any write operations
1922. Do not output the values of environment variables such as HW_ACCESS_KEY, HW_SECRET_KEY, etc.
1933. All scripts must be executed via `skill action=exec`; do not run them directly in a shell
1944. Do not guess script names; strictly execute according to the names in guide.md
1955. You must run the environment check script before querying
1966. When using temporary AK/SK, you must set HW_SECURITY_TOKEN