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 addArchitecture: Pre-built index (references/index.json) → Smart 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
Given keyword (from AI-understood user intent) and optional category, read references/index.json and search for matching skills.
Scoring algorithm (per skill, higher = better match):
Results are sorted by score descending.
Search modes:
search-skills -Keyword "ECS" — matches across name/description/triggerssearch-skills -Category "storage" — filters by category fieldsearch-skills -Keyword "OBS" -Category "storage" — both constraintsFallback 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
DETAIL_URL="https://raw.githubusercontent.com/huaweicloud/huaweicloud-skills/master/skills/${category}/${service}/${skill-name}/SKILL.md"
The agent can fetch this URL using curl or its web-fetch tool, then present the skill's full description to the user.
Trigger the installation routine corresponding to the desired skill.
# Option A: Using npx skills add (default)
npx skills add huaweicloud/huaweicloud-skills --skill <skill-name>
# Option B: Using npx clawhub install (OpenClaw ecosystem)
npx clawhub install <skill-name>
Restart (optional) Agent to verify and load the new skill.
| Parameter | Required/Optional | Description | Default |
|---|---|---|---|
Keyword | Optional | Search keyword (matched against name, description, triggers) | None |
Category | Optional | Category code for filtering (e.g., "computing", "storage", "network") | None |
skill-name | Required (Step 3-4) | Exact skill name for viewing details or installing | None |
| Document | Description |
|---|---|
| references/index.json | Pre-built skill index with 37 entries (name, description, triggers, category, service) |
Optional reference for keyword-to-category hints. The agent can infer categories from
index.jsonwithout these.
computing, network, storage, etc.devtoolsmonitoringCause: File path incorrect or default branch is not master
Solution: Verify the skill's category, service, and name from references/index.json
Cause: Keywords don't match any skill Solution:
https://github.com/huaweicloud/huaweicloud-skills (branch: master)