← 返回 Skills 市场
275
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install watadot-aws-ec2
功能描述
Elastic compute management by Watadot Studio. Deployment, scaling, and state monitoring.
使用说明 (SKILL.md)
AWS EC2 Skills
Management and orchestration patterns for Elastic Compute Cloud.
🚀 Core Commands
Instance Discovery
# List running instances with Name and Public IP
aws ec2 describe-instances --filters "Name=instance-state-name,Values=running" --query "Reservations[].Instances[].{Name:Tags[?Key==\`Name\`].Value | [0], IP:PublicIpAddress, ID:InstanceId}" --output table
# Find expensive instances (G or P family)
aws ec2 describe-instances --query "Reservations[].Instances[?contains(InstanceType, 'g') || contains(InstanceType, 'p')].[InstanceId, InstanceType]"
Lifecycle Control
# Start/Stop instances by ID
aws ec2 start-instances --instance-ids \x3Cid1> \x3Cid2>
aws ec2 stop-instances --instance-ids \x3Cid>
# Terminate instance (DANGER)
aws ec2 terminate-instances --instance-ids \x3Cid>
Network & Security
# Describe security group rules
aws ec2 describe-security-groups --group-ids \x3Csg-id> --query "SecurityGroups[].IpPermissions"
# Add ingress rule (Port 22 from specific IP)
aws ec2 authorize-security-group-ingress --group-id \x3Csg-id> --protocol tcp --port 22 --cidr \x3Cyour-ip>/32
🧠 Best Practices
- Tag Everything: Use standard tagging (Name, Env, Owner) for billing and discovery.
- Instance Profiles: Use IAM Roles instead of storing hard-coded credentials on instances.
- Spot Instances: Use Spot for stateless workloads (like Remotion rendering) to save up to 90%.
- Security Groups: Default to "Deny All" and only open specific ports for required CIDRs.
安全使用建议
This skill just provides aws-cli command snippets for EC2 and requires an installed aws binary and configured AWS credentials to be useful. It won't install software, but if the agent runs these commands it will act with whatever AWS identity is configured on the host (including the ability to stop/terminate instances). Before installing or invoking: ensure the agent or environment uses a low-privilege AWS profile (or read-only credentials) if you only want discovery; avoid giving it credentials that allow destructive operations; and verify you trust the skill source since it will execute aws commands against your account.
功能分析
Type: OpenClaw Skill
Name: watadot-aws-ec2
Version: 1.0.0
The watadot-aws-ec2 skill bundle contains standard AWS CLI commands for managing EC2 instances, such as listing, starting, stopping, and configuring security groups. The SKILL.md file provides helpful documentation and follows security best practices, such as recommending IAM roles over hard-coded credentials, with no evidence of malicious intent or prompt injection.
能力评估
Purpose & Capability
Name/description match the content: SKILL.md is a collection of aws cli EC2 commands for discovery, lifecycle control, and security-group management. Requiring the aws binary is appropriate for this purpose.
Instruction Scope
Instructions are limited to aws-cli commands relevant to EC2. They include destructive operations (start/stop/terminate, modify security groups) which are within the stated scope but require caution. SKILL.md does not specify an AWS profile or limit scope of actions.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest-risk install surface.
Credentials
The skill declares no env vars, which is coherent, but the aws cli requires AWS credentials from environment/config files/profiles at runtime. The skill will operate with whatever AWS identity is available — grant minimal, scoped permissions if you use it.
Persistence & Privilege
always is false and the skill does not request persistent or elevated platform privileges or attempt to modify other skills or global agent config.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install watadot-aws-ec2 - 安装完成后,直接呼叫该 Skill 的名称或使用
/watadot-aws-ec2触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of watadot-aws-ec2.
- Provides commands for EC2 instance discovery, lifecycle control, and network/security management.
- Includes best practices for tagging, IAM usage, spot instances, and security group configuration.
元数据
常见问题
Watadot Aws Ec2 是什么?
Elastic compute management by Watadot Studio. Deployment, scaling, and state monitoring. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 275 次。
如何安装 Watadot Aws Ec2?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install watadot-aws-ec2」即可一键安装,无需额外配置。
Watadot Aws Ec2 是免费的吗?
是的,Watadot Aws Ec2 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Watadot Aws Ec2 支持哪些平台?
Watadot Aws Ec2 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Watadot Aws Ec2?
由 ordiy(@ordiy)开发并维护,当前版本 v1.0.0。
推荐 Skills