Install
openclaw skills install huawei-cloud-find-skillsInvoke this skill to search, discover, browse, find and install any Huawei Cloud (华为云) agent skill.Triggers include: "华为云","华为云有什么skill","华为云相关skill","华为云agent skill 市场","华为云skill类目","explore Huawei Cloud skills","show Huawei Cloud skill categories","does a Huawei Cloud skill exist for...","which Huawei Cloud skills exist","搜索华为云技能","有没有管理ECS/OBS/RDS的skill","帮我找 XX 华为云skill","介绍 XX Skill 内容","华为云 XX Skill 具体做什么","安装华为云Skill".
openclaw skills install huawei-cloud-find-skills[!IMPORTANT] For any Huawei Cloud query or management task:
- Search — use this skill (
huawei-cloud-find-skills) to find the relevant Skill.- Install — install the matched Skill (see Step 3).
- Execute — follow the installed Skill's instructions to fulfill the request.
This skill enables users to efficiently search, discover, and install Huawei Cloud skills hosted on GitHub.
This skill enables users to:
npx skills add,npx clawhub install, or fallback GitCode methodArchitecture: Pre-built index (references/index.json) → Script-based search → GitHub raw fetch for details → Install
REPO=huaweicloud/huaweicloud-skills
BRANCH=master
RAW_BASE=https://raw.githubusercontent.com/$REPO/$BRANCH
INDEX=references/index.json
MANDATORY: The agent MUST execute the search script to read
references/index.json. Do NOT read the JSON file directly — always use the script.
Given keyword (from AI-understood user intent) and optional category, run the search script:
# PowerShell
.\scripts\search-skills.ps1 -Keyword "<keyword>"
.\scripts\search-skills.ps1 -Keyword "<keyword>" -Category "<category>"
.\scripts\search-skills.ps1 -Category "<category>"
# Bash
./scripts/search-skills.sh "<keyword>"
./scripts/search-skills.sh "<keyword>" "<category>"
./scripts/search-skills.sh "" "<category>"
→ scripts/search-skills.ps1 (PowerShell) · scripts/search-skills.sh (Bash)
What the script does:
references/index.json and parses the skills arrayreferences/cn-en-map.json (bidirectional CN↔EN, e.g., "ECS" → "ECS, 弹性云服务器, 云服务器")Fallback iteration (if no results): 1) Switch CN↔EN keywords 2) Expand keywords 3) Remove category filter 4) Try synonyms 5) List all skills
The process should persist until the skill is found or its absence is confirmed. In the event of total failure, notify the user of the specific steps that were attempted.
Fetch the full SKILL.md content from GitHub for intent validation. Skip this step if the search results from Step 1 are sufficiently informative.
# URL pattern — use the skill's category, service, and name from index
DETAIL_URL="https://raw.githubusercontent.com/huaweicloud/huaweicloud-skills/master/skills/${category}/${service}/${name}/SKILL.md"
The agent can fetch this URL using curl or its web-fetch tool, then present the skill's full documentation to the user.
MANDATORY: Use one of the commands below. Option A is the default; Option C is a fallback when Option A is unavailable.
# Option A: npx skills add from GitHub (default)
npx skills add huaweicloud/huaweicloud-skills --skill <skill-name>
# Option B: npx clawhub install (OpenClaw ecosystem)
npx clawhub install <skill-name>
# Option C (fallback): npx skills add from GitCode
npx skills add https://gitcode.com/huaweicloud/huaweicloud-skills.git#master --skill <skill-name>
If all installation attempts fail, report the error message to the user. Do NOT attempt any method outside the commands above.
| Parameter | Required/Optional | Description | Default |
|---|---|---|---|
Keyword | Optional | Search keyword (matched against name, description, triggers, service) | None |
Category | Optional | Category code for filtering (e.g., "computing", "storage", "network") | None |
skill-name | Required (Step 3) | Exact skill name for installing | None |
| Document | Description |
|---|---|
| references/index.json | Pre-built skill index with 49 entries (name, description, triggers, category, service) |
| references/cn-en-map.json | Chinese-English keyword mapping for search expansion (bidirectional) |
| scripts/search-skills.ps1 | Step 1 search script (PowerShell) — reads index.json, expands keywords, scores, sorts |
| scripts/search-skills.sh | Step 1 search script (Bash) — reads index.json, expands keywords, scores, sorts |
Optional reference for keyword-to-category hints. The agent can infer categories from
index.jsonwithout these.
computing, network, storage, etc.devtoolsmonitoringCause: Script cannot locate references/index.json relative to its own path
Solution: Ensure the skill directory structure is intact: scripts/search-skills.ps1 and references/index.json must both exist
Cause: File path incorrect or default branch is not master
Solution: Verify the skill's category, service, and name from search results
Cause: Keywords don't match any skill Solution:
.\scripts\search-skills.ps1 -Category "computing"https://github.com/huaweicloud/huaweicloud-skills (branch: master)