aws-cloud-ops
Installation
SKILL.md
AWS Cloud Operations Skill
Installation
The skill invokes the AWS CLI v2. Install and configure:
- Linux x86: Download AWS CLI v2, unzip, then
sudo ./aws/install - macOS:
curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"then run the installer - Windows: Download MSI from AWS CLI v2 or use
msiexec; or install via package managers
Configure: aws configure (access key, secret, region). Verify: aws --version
Cheat Sheet & Best Practices
Identity & config: aws sts get-caller-identity — who am I; aws configure list-profiles — list profiles.
S3: aws s3 ls; aws s3 cp <local> s3://bucket/; aws s3 sync ./dir s3://bucket/; aws s3 rm s3://bucket/key.
Lambda: aws lambda list-functions; aws lambda invoke --function-name X output.json; aws lambda get-function --function-name X.