agentsclimarketplace

Aws

Skill sakydev/claude/skills/aws

Use this skill whenever the user asks about AWS — querying resources, debugging infrastructure, reading logs, checking costs, IAM, S3, EC2, RDS, Lambda, ECS, CloudWatch, or any other AWS service. Covers CLI commands, SDK calls, and architectural questions.From its SKILL.md

Install
npx -y skills add sakydev/claude --skill aws

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

4.2 KB, ~1.0k tokens by cl100k_base, as published. Nobody here has run it

AWS Skill

Hard rules

  1. Never destroy data. No delete-*, terminate-*, remove-*, purge-*. No s3 rm. No delete-db-instance. No delete-log-group. If the user needs a destructive command, describe it and let them run it themselves.

  2. Always use a read-only profile. Every command gets --profile <readonly>. Never assume the default profile is safe. If no profile is set, ask before running anything.

  3. Never fetch secrets. No secretsmanager get-secret-value. No ssm get-parameter --with-decryption. Hand the user the command and let them run it privately.

Step 1 — Establish context

Before any command:

  • Profile - which one? Ask if unclear.
  • Region - always pass --region explicitly. Never rely on environment defaults.
  • Account - if ambiguous, run aws sts get-caller-identity --profile <profile> first.

Step 2 — Read-side commands

ServiceUse
S3ls, cp (download only), head-object
EC2describe-*
RDSdescribe-*
Lambdalist-*, get-*
ECSdescribe-*, list-*
CloudWatchget-metric-statistics, filter-log-events, describe-*
IAMlist-*, get-*, simulate-principal-policy
DynamoDBdescribe-*, query, get-item
Cost Explorerget-cost-and-usage

Step 3 — Format output

--output json    # default
--output table   # human-readable
--query '...'    # filter server-side, not with grep

Example:

aws ec2 describe-instances \
  --profile readonly \
  --region us-east-1 \
  --query 'Reservations[*].Instances[*].{ID:InstanceId,State:State.Name,Type:InstanceType}' \
  --output table

Step 4 — Cost awareness

Flag before running anything expensive.

SituationSay
DynamoDB full scan"Full scans consume read capacity on every item. Add --filter-expression or --limit first?"
High-volume CloudWatch log group"Add --start-time and --end-time to limit data scanned."
Cross-region data transfer"Moving data across regions costs money. Confirm the target region."

IAM rules

  • Run simulate-principal-policy before suggesting any IAM change.
  • No * wildcards in resource ARNs unless explicitly asked. Warn about blast radius.
  • Never suggest AdministratorAccess or PowerUserAccess. Offer least-privilege alternatives.
  • Show policies as JSON blocks so the user can review before applying.

Concerns

SituationSay
User asks to delete somethingDescribe the command. Do not run it. Let them verify first.
No --region givenAsk, or use the project's known primary region.
Default profile would be used"Which profile should I use? Not assuming the default."
Production resources targeted"This targets production. Confirm before I proceed."
User asks to fetch a secret"Not retrieving secret values. Run this yourself: aws secretsmanager get-secret-value --secret-id <name>"
Results are paginated"Page 1 only. Use --starting-token <NextToken> to continue."
Cross-account operation"This looks cross-account. Confirm the target account ID."
Borrowed or assumed credentials"Temporary credentials expire. Check aws sts get-caller-identity if you hit auth errors."

Useful patterns

# Who am I?
aws sts get-caller-identity --profile readonly --output table

# Running EC2 instances
aws ec2 describe-instances \
  --profile readonly --region us-east-1 \
  --filters "Name=instance-state-name,Values=running" \
  --query 'Reservations[*].Instances[*].{ID:InstanceId,Type:InstanceType,IP:PrivateIpAddress}' \
  --output table

# Tail Lambda logs
aws logs tail "/aws/lambda/my-function" \
  --profile readonly --region us-east-1 \
  --follow --since 10m

# Check what a role can do
aws iam simulate-principal-policy \
  --profile readonly \
  --policy-source-arn arn:aws:iam::123456789012:role/MyRole \
  --action-names s3:GetObject ec2:DescribeInstances

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.