From superpowers-devops
Use when working with AWS, GCP, or Azure resource management, permissions, or deployments
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers-devops:cloud-operationsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- **Repo mode** — templates in `tooling/cloud/`. Scaffold IAM policies, cloud configs.
tooling/cloud/. Scaffold IAM policies, cloud configs.# Check current identity
aws sts get-caller-identity
# List resources
aws ec2 describe-instances --query 'Reservations[].Instances[].[InstanceId,State.Name,Tags[?Key==`Name`].Value|[0]]' --output table
# CloudWatch logs
aws logs describe-log-groups
aws logs tail /aws/lambda/my-function --follow
# ECS
aws ecs describe-services --cluster my-cluster --services my-service
aws ecs describe-tasks --cluster my-cluster --tasks <task-arn>
| Error | Fix |
|---|---|
AccessDenied | Add required action to IAM policy |
ThrottlingException | Implement exponential backoff retry |
InvalidClientTokenId | Check AWS credentials and region config |
NoSuchBucket | Wrong region or bucket name |
Always scope policies to specific resources:
{
"Effect": "Allow",
"Action": ["s3:GetObject", "s3:PutObject"],
"Resource": "arn:aws:s3:::my-bucket/*"
}
# Check current identity
gcloud auth list
gcloud config get-value project
# View logs
gcloud logging read "severity>=ERROR" --limit=50
# GKE
gcloud container clusters get-credentials my-cluster --zone us-central1-a
kubectl get nodes
# Check current identity
az account show
# View resources
az resource list --output table
# AKS
az aks get-credentials --resource-group my-rg --name my-cluster
tooling/cloud/aws/ — IAM, ECS, Lambda, S3 configstooling/cloud/gcp/ — GKE, Cloud Run, IAM configstooling/cloud/azure/ — AKS, App Service configsnpx claudepluginhub tspry/superpowers-devops --plugin superpowers-devopsProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.