搜索、发现和安装阿里云 Agent Skills。当用户提到阿里云、alicloud、aliyun、 ECS、RDS、OSS 等阿里云服务操作或需要查找阿里云相关 skill 时触发。 典型触发词:"找阿里云 skill"、"搜索 alicloud skills"、"有没有管理 ECS 的 skill"、 "阿里云 skills 有哪些类目"、"安装阿里云 skill"。
71
88%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
通过 Aliyun CLI 的
agentexplorer插件搜索、浏览和安装阿里云官方 Agent Skills。
aliyun version如未安装或版本过低:
# macOS
brew install aliyun-cli
# Linux (x86_64)
curl -fsSL https://aliyuncli.alicdn.com/aliyun-cli-linux-latest-amd64.tgz -o /tmp/aliyun-cli.tgz
tar -xzf /tmp/aliyun-cli.tgz -C /tmp
sudo mv /tmp/aliyun /usr/local/bin/
# Linux (ARM64)
curl -fsSL https://aliyuncli.alicdn.com/aliyun-cli-linux-latest-arm64.tgz -o /tmp/aliyun-cli.tgz
tar -xzf /tmp/aliyun-cli.tgz -C /tmp
sudo mv /tmp/aliyun /usr/local/bin/⚠️ 安全提示:避免使用
curl | bash管道安装模式。先下载脚本审查内容再执行更安全。
aliyun configure list安全规则:
echo $ALIBABA_CLOUD_ACCESS_KEY_ID 严禁执行)aliyun configure set 传入明文凭据值aliyun configure list 检查凭据状态如无有效 profile,告知用户:
aliyun configure 完成配置(不在当前会话中操作)# 启用自动插件安装
aliyun configure set --auto-plugin-install true
# 安装 agentexplorer 插件
aliyun plugin update
aliyun plugin install --names agentexplorer
# 验证
aliyun plugin list | grep agentexplorer所有 aliyun agentexplorer 命令必须携带以下标志:
| 标志 | 值 | 说明 |
|---|---|---|
--endpoint | agentexplorer.aliyuncs.com | 固定端点 |
--user-agent | AlibabaCloud-Agent-Skills/alicloud-find-skills | 请求标识 |
本地管理命令(
aliyun configure、aliyun plugin、aliyun version)不支持--user-agent标志。
分析用户请求,提取:
# 语义搜索(默认,按意图匹配)
aliyun agentexplorer search-skills \
--keyword "<用户意图>" \
--search-mode semantic \
--max-results 20 \
--endpoint 'agentexplorer.aliyuncs.com' \
--user-agent AlibabaCloud-Agent-Skills/alicloud-find-skills
# 关键词搜索
aliyun agentexplorer search-skills \
--keyword "<产品关键词>" \
--search-mode semantic \
--max-results 20 \
--endpoint 'agentexplorer.aliyuncs.com' \
--user-agent AlibabaCloud-Agent-Skills/alicloud-find-skills
# 浏览类目
aliyun agentexplorer list-categories \
--endpoint 'agentexplorer.aliyuncs.com' \
--user-agent AlibabaCloud-Agent-Skills/alicloud-find-skills
# 按类目列出 skills
aliyun agentexplorer search-skills \
--category-code "<category-code>" \
--max-results 20 \
--endpoint 'agentexplorer.aliyuncs.com' \
--user-agent AlibabaCloud-Agent-Skills/alicloud-find-skills
# 类目 + 语义组合搜索
aliyun agentexplorer search-skills \
--keyword "<意图>" \
--category-code "<category-code>" \
--search-mode semantic \
--max-results 20 \
--endpoint 'agentexplorer.aliyuncs.com' \
--user-agent AlibabaCloud-Agent-Skills/alicloud-find-skills首次搜索无明确匹配时,自动调整策略重试:
list-categories 定位类目,再组合搜索每个搜索意图单元至少尝试一次能力导向搜索后才可声明"无对应 Skill"。
aliyun agentexplorer get-skill-content \
--skill-name "<skill-name>" \
--endpoint 'agentexplorer.aliyuncs.com' \
--user-agent AlibabaCloud-Agent-Skills/alicloud-find-skills# OpenClaw 生态安装
npx clawhub install <selected-skill-name>
# 或通过 npx skills add
npx skills add aliyun/alibabacloud-aiops-skills \
--skill <skill-name> \
--full-depth \
--agent qwen-code \
-g -y⚠️ 安装前审查:建议先用
get-skill-content查看待安装 skill 的内容,确认安全后再安装。
安装后验证 skill 出现在可用列表中。
本 skill 仅使用只读 API,所需最小权限:
| API | 权限 | 风险级别 |
|---|---|---|
ListCategories | agentexplorer:ListCategories | Low(只读,公开数据) |
SearchSkills | agentexplorer:SearchSkills | Low(只读,公开数据) |
GetSkillContent | agentexplorer:GetSkillContent | Low(只读,公开数据) |
最小 RAM 策略:
{
"Version": "1",
"Statement": [{
"Effect": "Allow",
"Action": [
"agentexplorer:ListCategories",
"agentexplorer:SearchSkills",
"agentexplorer:GetSkillContent"
],
"Resource": "*"
}]
}权限错误时:告知用户所需权限 → 暂停等待用户授权 → 确认后继续。
| 用户请求 | 搜索命令 |
|---|---|
| "找管理 ECS 的 skill" | --keyword "管理ECS实例" --search-mode semantic |
| "阿里云数据库相关 skill" | --keyword "数据库管理" --search-mode semantic |
| "有哪些类目" | list-categories |
| "计算类目下的 skills" | --category-code "computing" |
| "OSS 文件同步" | --keyword "OSS文件同步" --search-mode semantic |
npx 会从 npm 下载执行代码,确认包来源可信后再安装curl | bashbcef823
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.