aws-infra
Installation
SKILL.md
AWS Infrastructure Management / AWS 인프라 관리
MCP 없이 boto3/CLI로 직접 인프라를 관리합니다.
When to Use / 사용 시점
- "AWS 리소스 목록" / "List AWS resources"
- "CloudFormation 스택 관리" / "Manage CF stacks"
- "EKS 클러스터 정보" / "EKS cluster info"
- "ECS 서비스 상태" / "ECS service status"
Cloud Control API (Any Resource) / 모든 리소스
List/Get/Create Resources / 리소스 조회/생성
import boto3
cc = boto3.client('cloudcontrol')
# List S3 buckets / S3 버킷 목록
cc.list_resources(TypeName='AWS::S3::Bucket')