← 返回 Skills 市场
huaweicloud

huawei-cloud-find-skills

作者 HuaweiCloud · GitHub ↗ · v0.0.1 · MIT-0
cross-platform ⚠ suspicious
49
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install huawei-cloud-find-skills
功能描述
Invoke this skill to search, discover, browse, find and install any Huawei Cloud (华为云) agent skill.Triggers include: "华为云","华为云有什么skill","华为云相关skill","华为云age...
使用说明 (SKILL.md)

[!IMPORTANT] For any Huawei Cloud query or management task:

  1. Search — use this skill (huawei-cloud-find-skills) to find the relevant Skill.
  2. Install — install the matched Skill (see Step 3).
  3. Execute — follow the installed Skill's instructions to fulfill the request.

Huawei Cloud Agent Skills Search and Discovery

This skill enables users to efficiently search, discover, and install Huawei Cloud skills hosted on GitHub.

Scenario Description

This skill enables users to:

  • Search Skills: Find skills by keyword, category, or both (matched against name, description, and triggers)
  • Browse Categories: Explore available skill categories
  • View Skill Details: Fetch full SKILL.md content from GitHub for specific skills
  • Install Skills: Guide users through skill installation via npx skills add

Architecture: Pre-built index (references/index.json) → Smart search → GitHub raw fetch for details → Install

Use Cases

  • "Find a skill for managing ECS instances"
  • "What Huawei Cloud skills are available for OBS?"
  • "华为云有哪些 VPC 相关的 skill?"
  • "Browse all available Huawei Cloud skills"
  • "Install a skill for RDS management"
  • "帮我找一个华为云网络相关的skill"

Repository Info

REPO=huaweicloud/huaweicloud-skills
BRANCH=master
RAW_BASE=https://raw.githubusercontent.com/$REPO/$BRANCH
INDEX=references/index.json

Core Workflow

Step 1: Search Skills

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):

  • Name contains keyword → +10 points
  • Any trigger contains keyword → +8 points
  • Description contains keyword → +5 points

Results are sorted by score descending.

Search modes:

  • Keyword only: search-skills -Keyword "ECS" — matches across name/description/triggers
  • Category only: search-skills -Category "storage" — filters by category field
  • Combined: search-skills -Keyword "OBS" -Category "storage" — both constraints

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.

Step 2: View Skill Details (optional)

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.

Step 3: Install Skill

Trigger the installation routine corresponding to the desired skill.

# Option A: Using npx skills add (default)
npx skills add huaweicloud/huaweicloud-skills --skill \x3Cskill-name>

# Option B: Using npx clawhub install (OpenClaw ecosystem)
npx clawhub install \x3Cskill-name>

Restart (optional) Agent to verify and load the new skill.

Parameters

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

Reference Documentation

Document Description
references/index.json Pre-built skill index with 37 entries (name, description, triggers, category, service)

Search Heuristics

Optional reference for keyword-to-category hints. The agent can infer categories from index.json without these.

  • Cloud infrastructure keywords (ecs, bms, vpc, obs, rds, ...) → likely computing, network, storage, etc.
  • Tool keywords (cli, terraform, koo) → likely devtools
  • Management keywords (monitoring, alarm, log) → likely monitoring

Troubleshooting

Issue: raw.githubusercontent.com returns 404

Cause: File path incorrect or default branch is not master Solution: Verify the skill's category, service, and name from references/index.json

Issue: Search returns no results

Cause: Keywords don't match any skill Solution:

  1. Try broader keywords
  2. Switch between Chinese and English keywords (e.g., "对象存储" → "obs")
  3. List all skills from the index

Notes

  • This skill is read-only and does not create any cloud resources
  • No cache management needed — index is pre-built and shipped with the skill
  • Offline search — index is local, only Step 2 requires network
  • Repo: https://github.com/huaweicloud/huaweicloud-skills (branch: master)
安全使用建议
Review before installing. Use it only for explicit Huawei Cloud skill discovery, and do not let it automatically install or execute matched skills. Before installing any suggested skill, check the publisher, source, permissions, and whether it can modify cloud resources or expose credentials such as kubeconfigs, AK/SK values, or tokens.
能力评估
Purpose & Capability
The stated finder/discovery purpose is coherent, but the runtime workflow expands into installing and executing other Huawei Cloud skills, including indexed skills that can create/delete cloud resources, retrieve kubeconfigs, handle credentials, run scripts, and deploy infrastructure.
Instruction Scope
The instructions say to use this skill for any Huawei Cloud query or management task, then install and execute the matched skill. That scope is broader than discovery and can redirect ordinary cloud questions into third-party skill installation.
Install Mechanism
The artifact provides npx-based install commands for external skills, but does not clearly require explicit user approval, source review, publisher trust checks, or explain that installation downloads code and changes the agent environment.
Credentials
Local index search and optional detail fetching are proportionate, but automatic installation/execution of matched skills is not proportionate for generic Huawei Cloud questions, especially because the index includes high-impact cloud-management skills.
Persistence & Privilege
The skill itself has no executable scripts, background workers, or direct credential storage, but installing matched skills persists new agent behavior and can introduce skills that use sensitive cloud credentials or kubeconfigs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install huawei-cloud-find-skills
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /huawei-cloud-find-skills 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.0.1
- Initial release: Enables searching, discovering, browsing, and installing Huawei Cloud agent skills via a local index. - Supports keyword and category-based skill search, with a scoring algorithm for results. - Provides fallback strategies if initial search yields no matches. - Allows viewing detailed skill descriptions fetched dynamically from GitHub. - Guides users through skill installation using npx commands. - No resource creation; operates as a read-only agent skill marketplace browser.
元数据
Slug huawei-cloud-find-skills
版本 0.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

huawei-cloud-find-skills 是什么?

Invoke this skill to search, discover, browse, find and install any Huawei Cloud (华为云) agent skill.Triggers include: "华为云","华为云有什么skill","华为云相关skill","华为云age... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 49 次。

如何安装 huawei-cloud-find-skills?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install huawei-cloud-find-skills」即可一键安装,无需额外配置。

huawei-cloud-find-skills 是免费的吗?

是的,huawei-cloud-find-skills 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

huawei-cloud-find-skills 支持哪些平台?

huawei-cloud-find-skills 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 huawei-cloud-find-skills?

由 HuaweiCloud(@huaweicloud)开发并维护,当前版本 v0.0.1。

💬 留言讨论