Agent skill · DevOps & Cloud

s3

AWS S3 object storage for bucket management, object operations, and access control. Use when creating buckets, uploading files, configuring lifecycle policies, setting up static websites, managing permissions, or implementing cross-region replication.

itsmostafagithub.com/itsmostafaGitHub ↗
claude-codecodexMIT
Install
npx skills add itsmostafa/aws-agent-skills --skill s3 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/s3/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,139
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# AWS S3 Amazon Simple Storage Service (S3) provides scalable object storage with industry-leading durability (99.999999999%). S3 is fundamental to AWS—used for data lakes, backups, static websites, and as storage for many other AWS services. ## Table of Contents - [Core Concepts](#core-concepts) - [Common Patterns](#common-patterns) - [CLI Reference](#cli-reference) - [Best Practices](#best-practices) - [Troubleshooting](#troubleshooting) - [References](#references) ## Core Concepts ### Buckets Containers for objects. Bucket names are globally unique across all AWS accounts. ### Objects Files stored in S3, consisting of data, metadata, and a unique key (path). Maximum size: 5 TB. ### Storage Classes | Class | Use Case | Durability | Availability | |-------|----------|------------|--------------| | Standard | Frequently accessed | 99.999999999% | 99.99% | | Intelligent-Tiering | Unknown access patterns | 99.999999999% | 99.9% | | Standard-IA | Infrequent access | 99.999999999% | 99.9% | | Glacier Instant | Archive with instant retrieval | 99.999999999% | 99.9% | | Glacier Flexible | Archive (minutes to hours) | 99.999999999% | 99.99% | | Glacier Deep Archive | Long-term archive | 9

What's inside
Steps it walks through
  1. Table of Contents
  2. Core Concepts
  3. Buckets
  4. Objects
  5. Storage Classes
  6. Versioning
  7. Common Patterns
  8. Create a Bucket with Best Practices
  9. Upload and Download Objects
  10. Generate Presigned URL
  11. Configure Lifecycle Policy
  12. Event Notifications to Lambda
  13. CLI Reference
  14. High-Level Commands (aws s3)
Ships with 1 file
  • security.md
Commands it runs
Create bucket (us-east-1 doesn't need LocationConstraint)
aws s3api create-bucket \
Enable versioning
aws s3api put-bucket-versioning \
Block public access
aws s3api put-public-access-block \
Enable encryption
aws s3api put-bucket-encryption \
Upload a single file
aws s3 cp myfile.txt s3://my-bucket/path/myfile.txt
More from aws-agent-skills
All skills →
About this skill
What does the s3 skill do?

AWS S3 object storage for bucket management, object operations, and access control. Use when creating buckets, uploading files, configuring lifecycle policies, setting up static websites, managing permissions, or implementing cross-region replication.

How do I install it?

Run `npx skills add itsmostafa/aws-agent-skills --skill s3 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From itsmostafa/aws-agent-skills, a repository with 1,139 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going