Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

aliyun-skills阿里云技能

Agent Skill

aliyun-skills 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,816

周安装

233

GitHub Stars

公开资料未说明

下载量

1,883
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:aliyun-skills(阿里云技能)
来源仓库:https://github.com/hambaobao/aliyun-skills
安装命令:
openclaw skills install aliyun-skills
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install aliyun-skills

简介

用于通过阿里云 CLI 统一管理各类云资源与服务。

  • 适合在 OpenClaw 中执行批量资源配置与状态巡检任务。
  • 通过 clawhub 安装后,需初始化 aliyun-cli 环境并配置凭证。
  • 使用时建议封装常用命令为脚本,提升操作效率与可维护性。
  • 注意命令执行日志记录,便于后续审计与问题回溯。aliyun-skills 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
aliyun-cli
description
|
including
ECS instances, VPC networking, OSS object storage, RDS databases, SLB/CLB load
metadata
openclaw
emoji
☁️
requires
bins
["aliyun"]
install
kind
brew
formula
aliyun-cli
bins
["aliyun"]
label
Install Aliyun CLI (brew)

Aliyun CLI Skill

This skill teaches you how to use the Aliyun CLI to manage Alibaba Cloud resources. You will construct and explain aliyun commands, interpret their output, and guide users through cloud resource management tasks.

Quick Reference

ResourceReference FileCommon Operations
Setup & Authreferences/setup.mdinstall, configure, switch profiles
ECS (Elastic Compute Service)references/ecs.mdlist, start/stop/reboot, resize disk, create snapshot
VPC (Virtual Private Cloud)references/vpc.mdmanage VPCs, VSwitches, EIPs, NAT gateways, route tables
OSS (Object Storage Service)references/oss.mdbuckets, upload/download, sync, presigned URLs
RDS (Relational Database Service)references/rds.mdinstances, databases, accounts, backups, IP whitelist
SLB / CLB (Load Balancer)references/slb.mdcreate LB, manage listeners, add/remove backend servers
RAM (Resource Access Management)references/ram.mdusers, groups, roles, policies, access keys
DNS (AliDNS)references/dns.mdlist domains, add/update/delete records
ACR (Container Registry)references/acr.mdinstances, namespaces, repositories, image tags, docker login

Read the relevant reference file before responding to a request.

CLI Syntax Pattern

Every aliyun command follows this structure:

aliyun <Product> <Operation> [--Parameter Value ...]
  • Product: service name in PascalCase or lowercase (e.g., ecs, oss, vpc, rds, ram)
  • Operation: API action name in PascalCase (e.g., DescribeInstances, StartInstance)
  • Parameters: prefixed with -- (e.g., --RegionId cn-hangzhou, --InstanceId i-xxxx)

OSS is an exception — it uses a subcommand style like aliyun oss ls, aliyun oss cp.

Always Check These First

Before constructing any command:

  1. Region — Most operations require --RegionId. Common regions:

- cn-hangzhou (Hangzhou), cn-beijing (Beijing), cn-shanghai (Shanghai) - cn-shenzhen (Shenzhen), ap-southeast-1 (Singapore), us-west-1 (US West) - If the user hasn't specified a region, ask or use aliyun configure get to find the default.

  1. Resource IDs — Most mutating operations (start, stop, delete) need a specific resource ID.

If the user hasn't provided one, first run a Describe/List command to find it.

  1. Pagination — Describe* APIs return paginated results. Default page size is typically 10.

Use --PageSize 100 and --PageNumber to retrieve more. Mention this if results seem incomplete.

  1. Dry run — Aliyun CLI does not have a universal dry-run flag. For destructive operations,

always confirm resource IDs with the user before executing.

Output Formats

The CLI supports multiple output formats via the --output flag:

  • Default: JSON (structured, good for parsing)
  • --output cols=<col1>,<col2> — tabular output for quick scanning
  • --output table — aligned table

For human-readable summaries, use --output cols=InstanceId,InstanceName,Status style where available.

zsh gotcha: If you use rows=Instances.Instance[], the [] will be interpreted as a glob by zsh and cause a "no matches found" error. Quote the argument to avoid this:

aliyun ecs DescribeInstances \
  --output 'cols=InstanceId,InstanceName,Status' 'rows=Instances.Instance[]'

Or simply omit rows= and use the default JSON output when tabular formatting isn't critical.

Common Workflow Pattern

When the user asks to perform an operation on a named resource (e.g., "restart my server called web-prod"):

  1. Discover — Run a Describe command to find the resource ID
   aliyun ecs DescribeInstances --RegionId cn-hangzhou
  1. Confirm — Show the result and confirm the target with the user if there's any ambiguity
  2. Act — Run the mutating command with the confirmed resource ID
  3. Verify — Optionally run another Describe to confirm the new state

Error Handling

Common errors and what to do:

ErrorCauseSolution
InvalidAccessKeyIdWrong or expired credentialsRun aliyun configure to reconfigure
Forbidden.RAMInsufficient RAM permissionsCheck RAM policy for required action
IncorrectInstanceStatusWrong instance state for operationDescribe instance status first
InvalidRegionIdUnsupported region for this productCheck product availability in that region
ThrottlingAPI rate limit hitAdd a brief delay and retry

If the user has not yet installed or configured the CLI, read references/setup.md and guide them through it before attempting any commands.

Safety Guidelines

  • For destructive operations (delete instance, release EIP, drop RDS database), always:

1. Show the user what will be deleted with a Describe command first 2. Explicitly ask for confirmation before running the delete command

  • For cost-incurring operations (create ECS, purchase bandwidth), mention the cost implications
  • Never expose or log AccessKey secrets — remind users to use RAM roles or environment variables

instead of hardcoding credentials

Parallelism

When the user needs to operate on multiple resources (e.g., "list all instances in all regions"), you can run several commands and combine the results. For shell loops:

for region in cn-hangzhou cn-beijing cn-shanghai cn-shenzhen ap-southeast-1; do
  echo "=== $region ==="
  aliyun ecs DescribeInstances --RegionId $region
done

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.03%
按下载量换算1,563

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills