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

alibabacloud-tair-devtoolset阿里巴巴云 tair 开发工具集

Agent Skill

alibabacloud-tair-devtoolset 用于辅助部署、云资源、容器和基础设施运维,适合在 OpenClaw 中需要检查配置、整理部署步骤或排查环境问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,410

周安装

145

GitHub Stars

公开资料未说明

下载量

1,195
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install alibabacloud-tair-devtoolset

简介

阿里云Tair开发工具集,用于创建企业版实例并配置公网访问。

  • 适用于OpenClaw中云资源部署和容器运维场景。
  • 自动完成实例创建和基础网络配置流程。alibabacloud-tair-devtoolset 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 安装前需验证账号权限和资源配额可用性。
  • 涉及公网暴露时应评估安全风险,建议先测试环境验证。

SKILL.md

name
alibabacloud-tair-devtoolset
description
|
Triggers
tair", "create tair instance", "tair instance".

Tair DevToolset — Instance Creation and Public Network Configuration

Automate Tair Enterprise Edition cloud-native instance creation, public network access configuration, and IP whitelist setup using Aliyun CLI.

Architecture: VPC + VSwitch + Tair Enterprise Instance + Public Endpoint


1. Installation

Pre-check: Aliyun CLI >= 3.3.1 required Run aliyun version to verify >= 3.3.1. If not installed or version too low, see references/cli-installation-guide.md for installation instructions. Then [MUST] run aliyun configure set --auto-plugin-install true to enable automatic plugin installation.
# Verify CLI version
aliyun version

# Enable automatic plugin installation
aliyun configure set --auto-plugin-install true

# Verify jq
jq --version

If jq is not installed:

brew install jq   # macOS

2. Authentication

Pre-check: Alibaba Cloud Credentials Required All credential configurations follow existing aliyun CLI settings, no separate configuration needed in scripts. Security Rules: - NEVER read, echo, or print AK/SK values (e.g., echo $ALIBABA_CLOUD_ACCESS_KEY_ID is FORBIDDEN) - NEVER ask the user to input AK/SK directly in the conversation or command line - NEVER use aliyun configure set with literal credential values - ONLY use aliyun configure list to check credential status ``bash aliyun configure list ` Check the output for a valid profile (AK, STS, or OAuth identity). **If no valid profile exists, STOP here.** 1. Obtain credentials from [Alibaba Cloud Console](https://ram.console.aliyun.com/manage/ak) 2. Configure credentials **outside of this session** (via aliyun configure in terminal or environment variables in shell profile) 3. Return and re-run after aliyun configure list` shows a valid profile

3. RAM Policy

See references/ram-policies.md for RAM permissions required by this Skill.

Core permissions:

RAM ActionDescription
r-kvstore:CreateTairInstanceCreate Tair instance
r-kvstore:DescribeInstanceAttributeQuery instance status
r-kvstore:ModifySecurityIpsModify IP whitelist
r-kvstore:AllocateInstancePublicConnectionAllocate public endpoint
r-kvstore:DescribeDBInstanceNetInfoQuery network info
[MUST] Permission Failure Handling: When any command or API call fails due to permission errors at any point during execution, follow this process: 1. Read references/ram-policies.md to get the full list of permissions required by this SKILL 2. Use ram-permission-diagnose skill to guide the user through requesting the necessary permissions 3. Pause and wait until the user confirms that the required permissions have been granted

4. Parameter Confirmation

IMPORTANT: Parameter Confirmation — Before executing any command or API call, ALL user-customizable parameters (e.g., RegionId, instance names, CIDR blocks, passwords, domain names, resource specifications, etc.) MUST be confirmed with the user. Do NOT assume or use default values without explicit user approval.
ParameterRequiredDescriptionDefault
VPC_IDYesVPC ID, e.g. vpc-bp1xxx
VSWITCH_IDYesVSwitch ID, e.g. vsw-bp1xxx
REGION_IDNoRegion IDcn-hangzhou
ZONE_IDNoZone IDcn-hangzhou-h
INSTANCE_TYPENoInstance seriestair_rdb
INSTANCE_CLASSNoInstance specificationtair.rdb.1g
INSTANCE_NAMENoInstance nametair-benchmark-<timestamp>

Common Specifications

Standard Architecture

InstanceClassMemoryBandwidthMax ConnectionsQPS Reference
tair.rdb.1g1 GB768 Mbps30,000300,000
tair.rdb.2g2 GB768 Mbps30,000300,000
tair.rdb.4g4 GB768 Mbps40,000300,000
tair.rdb.8g8 GB768 Mbps40,000300,000
tair.rdb.16g16 GB768 Mbps40,000300,000
tair.rdb.24g24 GB768 Mbps50,000300,000
tair.rdb.32g32 GB768 Mbps50,000300,000
tair.rdb.64g64 GB768 Mbps50,000300,000

5. Core Workflow

[MUST] Execution Constraints - MUST and ONLY use scripts/create-and-connect-test.sh script to complete instance creation, whitelist configuration, public endpoint allocation, etc. - DO NOT bypass the script to directly call aliyun r-kvstore CLI commands for the above operations - DO NOT write or concatenate aliyun CLI commands to replace script functionality - Model's responsibility is: collect parameters → set environment variables → run script. No improvisation allowed.

Set environment variables with collected parameters and run the all-in-one script:

export VPC_ID="<user-confirmed VPC_ID>"
export VSWITCH_ID="<user-confirmed VSWITCH_ID>"

# Optional parameters
export REGION_ID="cn-hangzhou"
export ZONE_ID="cn-hangzhou-h"
export INSTANCE_TYPE="tair_rdb"
export INSTANCE_CLASS="tair.rdb.1g"
# For NAT environment, manually set public IP
# export MY_PUBLIC_IP="your-public-ip"

bash scripts/create-and-connect-test.sh

The script will automatically complete: Create instance → Wait for ready → Configure whitelist → Allocate public endpoint → Get public connection info.


6. Success Verification

See references/verification-method.md for detailed verification steps.

Quick instance status verification:

aliyun r-kvstore describe-instance-attribute \
  --instance-id "${INSTANCE_ID}" \
  --user-agent AlibabaCloud-Agent-Skills

Confirm InstanceStatus is Normal and public endpoint is allocated.


7. Troubleshooting

IssueSolution
Connection timeoutCheck if whitelist includes current public IP (must be IPv4)
Public endpoint emptyConfirm allocate-instance-public-connection executed successfully and wait for instance to recover to Normal

8. Best Practices

  1. Use pay-as-you-go (PostPaid) for testing
  2. Only add test machine's public IP to whitelist, follow least privilege principle

9. Reference Links

ReferenceDescription
references/cli-installation-guide.mdAliyun CLI Installation and Configuration Guide
references/ram-policies.mdRAM Permission Policy Document
references/related-commands.mdRelated CLI Commands and Parameters
references/verification-method.mdSuccess Verification Method
references/acceptance-criteria.mdAcceptance Criteria

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.43%
按下载量换算877

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills