Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aj-geddes avatar

Aws S3 Management

  • 541 installs
  • 305 repo stars
  • Updated March 4, 2026
  • aj-geddes/useful-ai-prompts

aws-s3-management is a Claude Code skill that creates and configures AWS S3 buckets with versioning, encryption, lifecycle rules, and replication for developers who need object storage, static sites, or data lakes from a

About

aws-s3-management is a skill in aj-geddes/useful-ai-prompts for provisioning and managing Amazon S3 object storage through an AI coding agent. It covers bucket creation, versioning, server-side encryption, access control policies, lifecycle transitions, and cross-region replication. Developers use it for static website hosting, backup archives, and data lake foundations where durable blob storage is required. The skill follows AWS best practices for secure, scalable object retrieval and pairs with agent sessions that generate CLI commands, SDK calls, or infrastructure snippets. Reach for aws-s3-management when prompts mention S3 buckets, object policies, or storage lifecycle automation.

  • Creates and configures S3 buckets with a single prompt
  • Enables versioning, server-side encryption, and public access blocking
  • Sets up lifecycle policies for archival and cost control
  • Configures cross-region replication for disaster recovery
  • Supports static website hosting and data lake setups

Aws S3 Management by the numbers

  • 541 all-time installs (skills.sh)
  • Ranked #362 of 1,039 Cloud & Infrastructure skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill aws-s3-management

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs541
repo stars305
Last updatedMarch 4, 2026
Repositoryaj-geddes/useful-ai-prompts

How do you configure AWS S3 buckets with encryption and lifecycle rules?

Create, configure, and manage AWS S3 buckets with versioning, encryption, lifecycle rules, and replication directly from an AI coding agent.

Who is it for?

Developers provisioning AWS object storage for static sites, backups, or data lakes who want agent-guided S3 bucket and policy setup.

Skip if: Teams on GCP Cloud Storage or Azure Blob exclusively, or workloads needing block storage rather than S3 object APIs.

When should I use this skill?

User asks to create S3 buckets, configure versioning, encryption, lifecycle rules, replication, or static website hosting on AWS.

What you get

S3 bucket definitions, versioning and encryption settings, lifecycle policies, access controls, and replication configuration.

  • S3 bucket configuration
  • Lifecycle and replication policy definitions

By the numbers

  • Covers five S3 management areas: versioning, encryption, access control, lifecycle, and replication

Files

SKILL.mdMarkdownGitHub ↗

AWS S3 Management

Table of Contents

Overview

Amazon S3 provides secure, durable, and highly scalable object storage. Manage buckets with encryption, versioning, access controls, lifecycle policies, and cross-region replication for reliable data storage and retrieval.

When to Use

  • Static website hosting
  • Data backup and archival
  • Media library and CDN origin
  • Data lake and analytics
  • Log storage and analysis
  • Application asset storage
  • Disaster recovery
  • Data sharing and collaboration

Quick Start

Minimal working example:

# Create bucket
aws s3api create-bucket \
  --bucket my-app-bucket-$(date +%s) \
  --region us-east-1

# Enable versioning
aws s3api put-bucket-versioning \
  --bucket my-app-bucket \
  --versioning-configuration Status=Enabled

# Block public access
aws s3api put-public-access-block \
  --bucket my-app-bucket \
  --public-access-block-configuration \
    BlockPublicAcls=true,IgnorePublicAcls=true,\
    BlockPublicPolicy=true,RestrictPublicBuckets=true

# Enable encryption
aws s3api put-bucket-encryption \
  --bucket my-app-bucket \
  --server-side-encryption-configuration '{
    "Rules": [{
      "ApplyServerSideEncryptionByDefault": {
        "SSEAlgorithm": "AES256"
      }
// ... (see reference guides for full implementation)

Reference Guides

Detailed implementations in the references/ directory:

GuideContents
S3 Bucket Creation and Configuration with AWS CLIS3 Bucket Creation and Configuration with AWS CLI
S3 Lifecycle Policy ConfigurationS3 Lifecycle Policy Configuration
Terraform S3 ConfigurationTerraform S3 Configuration
S3 Access with Presigned URLsS3 Access with Presigned URLs

Best Practices

✅ DO

  • Enable versioning for important data
  • Use server-side encryption
  • Block public access by default
  • Implement lifecycle policies
  • Enable logging and monitoring
  • Use bucket policies for access control
  • Enable MFA delete for critical buckets
  • Use IAM roles instead of access keys
  • Implement cross-region replication

❌ DON'T

  • Make buckets publicly accessible
  • Store sensitive credentials
  • Ignore CloudTrail logging
  • Use overly permissive policies
  • Forget to set lifecycle rules
  • Ignore encryption requirements

Related skills

How it compares

Choose aws-s3-management over generic cloud skills when prompts specifically target Amazon S3 bucket policies, lifecycle, or static hosting setup.

FAQ

What S3 features does aws-s3-management configure?

aws-s3-management covers S3 bucket creation with versioning, encryption, access controls, lifecycle policies, and cross-region replication. It also addresses static website hosting and data lake storage patterns.

When should a developer use aws-s3-management?

Use aws-s3-management when an agent session must provision or tune Amazon S3 for backups, static sites, or data lakes. Trigger on prompts mentioning buckets, object policies, or storage lifecycle automation.

Does aws-s3-management include security best practices?

aws-s3-management follows AWS guidance for secure durable object storage, including encryption and access control configuration. Agents apply it when hardening bucket policies before production deployment.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.