analyzing-release-read…
Trigger a pre-merge release readiness review on a GitHub PR, GitLab MR, or local branch. Use when the user wants to analyze code changes for risk, correctness,…
Create and secure S3 buckets following AWS best practices for access control, encryption, monitoring, and remediation of misconfigurations. Use when the user wants to secure a new bucket, audit an existing bucket, fix a security finding, configure encryption, or enable logging
$ npx -y skills add aws/agent-toolkit-for-aws --skill securing-s3-buckets --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/securing-s3-bucketsContext preview
The summary Claude sees to decide when to auto-load this skill.
Create and secure S3 buckets following AWS best practices for access control, encryption, monitoring, and remediation of misconfigurations. Use when the user wants to secure a new bucket, audit an existing bucket, fix a security finding, configure encryption, or enable logging
name: securing-s3-buckets description: > Create and secure S3 buckets following AWS best practices for access control, encryption, monitoring, and remediation of misconfigurations. Use when the user wants to secure a new bucket, audit an existing bucket, fix a security finding, configure encryption, or enable logging and monitoring. Do NOT use for general S3 data operations, S3 Tables setup, or discovering existing data assets. version: 1
Implements layered S3 security controls across five workflows: securing new buckets, auditing existing configurations, remediating findings, configuring encryption, and enabling monitoring. Follows AWS Well-Architected security best practices.
Execute commands using the AWS MCP server when connected (sandboxed execution, audit logging, observability). Fall back to AWS CLI or shell otherwise.
Check for required tools before starting.
**Constraints:**
See [references/iam-permissions.md](references/iam-permissions.md) for IAM permissions by workflow.
| User intent | Workflow | |---|---| | Secure a new bucket | A: Secure New Bucket | | Audit / review existing bucket | B: Audit Existing Bucket | | Fix a specific finding | C: Remediate Issue | | Configure encryption | D: Configure Encryption | | Enable logging / monitoring | E: Enable Monitoring |
**Constraints:**
These rules apply to ALL workflows that call `put-bucket-policy`:
See [references/workflows.md](references/workflows.md) for full CLI steps.
**Required steps (execute in order, do not skip):**
1. Create bucket with `--bucket-namespace account-regional` 2. Enable versioning 3. Enable encryption (SSE-S3 + Bucket Keys + block SSE-C) 4. Enable logging (ask user which option — conditional) 5. Enforce HTTPS-only via `DenyInsecureTransport` bucket policy 6. Enable ABAC
**Constraints:**
aws s3api create-bucket --bucket <name> --bucket-namespace account-regional --region <region>
aws s3api put-bucket-policy --bucket <name> --policy '{"Version":"2012-10-17","Statement":[{"Sid":"DenyInsecureTransport","Effect":"Deny","Principal":"*","Action":"s3:*","Resource":["arn:aws:s3:::<name>/*","arn:aws:s3:::<name>"],"Condition":{"Bool":{"aws:SecureTransport":"false"}}}]}'See [references/audit-checklist.md](references/audit-checklist.md) for the full checklist.
**Constraints:**
See [references/remediation.md](references/remediation.md) for fix commands by issue type.
**Constraints:**
See [references/encryption.md](references/encryption.md) for encryption options and commands.
**Constraints:**
See [references/workflows.md](references/workflows.md) for full CLI steps.
**Constraints:**
Help AI coding agents build, deploy, and manage applications on AWS. The Agent Toolkit for AWS gives AI coding agents the tools, knowledge, and guardrails they need to work with AWS services.
Repo: aws/agent-toolkit-for-aws
Trigger a pre-merge release readiness review on a GitHub PR, GitLab MR, or local branch. Use when the user wants to analyze code changes for risk, correctness,…
Have a fast, conversational analysis with the AWS DevOps Agent. Use for cost optimization, architecture review, topology mapping, knowledge / runbook…
Coordinate the AWS DevOps Agent across multiple AgentSpaces from one Claude Code session — route questions to the right space (prod vs staging vs knowledge),…
Run a fast AWS Security Agent diff scan on only the changed code since a git ref. Use when the user asks to scan changes, run a diff scan, check what changed…
Run a deep root-cause investigation on the AWS DevOps Agent. Use when the user describes an incident, alarm, outage, or unexplained behavior — keywords like…
Run an AWS Security Agent penetration test against a live web application — registers and verifies the target domain, exercises the supplied endpoints with the…