在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用aws-cli
星标3
分支0
更新时间2026年2月17日 15:54
AWS CLI for S3, EC2, Lambda, CloudWatch, RDS, and ECS
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
AWS CLI for S3, EC2, Lambda, CloudWatch, RDS, and ECS
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Google Calendar — list, create, and manage events via gcal CLI
Manage HubSpot CRM — contacts, companies, deals, tickets
Manage Shopify store — products, orders, customers, inventory
Configure audio transcription and image/video understanding for channels
Google Calendar — list, create, and manage events via gcal CLI
Google Cloud CLI for Compute, Cloud Run, GCS, and BigQuery
| name | aws-cli |
| description | AWS CLI for S3, EC2, Lambda, CloudWatch, RDS, and ECS |
| metadata | {"openclaw":{"always":false,"emoji":"☁️"}} |
Manage AWS services via the aws CLI.
Check if installed:
command -v aws && aws --version
Install:
# macOS
brew install awscli
# Official installer (Linux/macOS)
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip && sudo ./aws/install && rm -rf aws awscliv2.zip
Credentials: Use the vault for secrets. Stored keys are auto-injected as env vars (UPPERCASE).
# Save to vault (key names lowercase)
vault_save aws_access_key_id "AKIA..."
vault_save aws_secret_access_key "secret..."
vault_save aws_default_region "us-east-1"
# Or interactive: aws configure
# List buckets
aws s3 ls
# List objects
aws s3 ls s3://<bucket>/<prefix>/
# Upload/Download
aws s3 cp <file> s3://<bucket>/<key>
aws s3 cp s3://<bucket>/<key> <file>
# Sync
aws s3 sync <dir> s3://<bucket>/<prefix>/
aws s3 sync s3://<bucket>/<prefix>/ <dir>
# Remove
aws s3 rm s3://<bucket>/<key>
aws s3 rm s3://<bucket>/<prefix>/ --recursive
# List instances
aws ec2 describe-instances --query 'Reservations[].Instances[].[InstanceId,State.Name,InstanceType,PublicIpAddress,Tags[?Key==`Name`].Value|[0]]' --output table
# Start/Stop
aws ec2 start-instances --instance-ids <id>
aws ec2 stop-instances --instance-ids <id>
# Security Groups
aws ec2 describe-security-groups --group-ids <sg-id>
# List functions
aws lambda list-functions --query 'Functions[].[FunctionName,Runtime,LastModified]' --output table
# Invoke
aws lambda invoke --function-name <name> --payload '{"key":"value"}' output.json
# Logs
aws logs filter-log-events --log-group-name /aws/lambda/<name> --limit 20
# List log groups
aws logs describe-log-groups --query 'logGroups[].logGroupName'
# Search logs
aws logs filter-log-events --log-group-name <group> --filter-pattern "ERROR" --limit 20
# Metrics
aws cloudwatch get-metric-statistics --namespace AWS/EC2 --metric-name CPUUtilization --dimensions Name=InstanceId,Value=<id> --start-time <iso> --end-time <iso> --period 300 --statistics Average
# List instances
aws rds describe-db-instances --query 'DBInstances[].[DBInstanceIdentifier,DBInstanceStatus,Engine,Endpoint.Address]' --output table
# Clusters
aws ecs list-clusters
# Services
aws ecs list-services --cluster <cluster>
aws ecs describe-services --cluster <cluster> --services <service>
# Tasks
aws ecs list-tasks --cluster <cluster> --service-name <service>
aws ecs describe-tasks --cluster <cluster> --tasks <task-arn>
--output table for readable output--query (JMESPath) to filter fields--profile <name> for multiple accounts--region <region> when neededaws configure or env vars AWS_ACCESS_KEY_ID + AWS_SECRET_ACCESS_KEY