aws-s3

aws-s3 is a skill for Claude Code, Codex from eliecer2000/kiro-bootstrap. It costs 36 tokens per session (1,174 once invoked), scanned A, original, MIT.

A guide to managing Amazon S3, a cloud service that stores files as objects inside named containers called buckets. It covers bucket security, encryption, version history, retention rules, replication, presigned links, and CloudFront delivery.

In plain words
What is it for?
Use it to configure S3 buckets and objects with AWS CDK, set encryption and access controls, add versioning and lifecycle rules, create presigned URLs, replicate data, and use S3 with CloudFront.
Why use it?
It helps avoid exposing stored data, losing earlier versions, keeping temporary files forever, or paying unnecessarily for storage. It also describes safeguards for sensitive information and private buckets.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to configure S3 buckets and objects with AWS CDK, set encryption and access controls, add versioning and lifecycle rules, create presigned URLs, replicate data, and use S3 with CloudFront.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eliecer2000/kiro-bootstrap/aws-s3
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add eliecer2000/kiro-bootstrap --skill aws-s3
Clone the repo
git clone --depth 1 https://github.com/eliecer2000/kiro-bootstrap

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for aws-s3

README.md
[![agentmods](https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-s3/github.svg)](https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-s3)
Your own site
<a href="https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-s3"><img src="https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-s3/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for aws-s3

Your own site · 80×15
<a href="https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-s3"><img src="https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-s3.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,174 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.01174
Opus 5 $0.00018 $0.00587
Sonnet 5 $0.00007 $0.00235
Haiku 4.5 $0.00004 $0.00117

Measured 9d ago against content hash 7dde02b9adbe, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

aws-s3 scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/aws-s3/SKILL.md · 139 lines

How it starts

The opening of the file, as written. The whole thing — 139 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AWS S3

Skill para gestión de Amazon S3: buckets, objetos, cifrado, versionado, lifecycle policies, presigned URLs, replicación, CloudFront como CDN origin y mejores prácticas de seguridad y costos.

Principios fundamentales

  • Buckets privados por defecto. BlockPublicAccess.BLOCK_ALL siempre habilitado.
  • Cifrado en reposo obligatorio: SSE-S3 mínimo, SSE-KMS para compliance.
  • Versionado habilitado en buckets con datos importantes.
  • Lifecycle policies para mover datos a clases de almacenamiento más baratas y expirar objetos temporales.
  • Nunca almacenar secretos, credenciales o PII sin cifrado adicional.

Configuración segura de bucket (CDK)

const bucket = new s3.Bucket(this, 'DataBucket', {
  encryption: s3.BucketEncryption.S3_MANAGED,
  blockPublicAccess: s3.BlockPublicAccess.BLOCK_ALL,
  versioned: true,
  enforceSSL: true,
  removalPolicy: cdk.RemovalPolicy.RETAIN,
  objectOwnership: s3.ObjectOwnership.BUCKET_OWNER_ENFORCED,
  lifecycleRules: [{
    id: 'transition-to-ia',
    transitions: [{
      storageClass: s3.StorageClass.INFREQUENT_ACCESS,
      transitionAfter: cdk.Duration.days(90),
    }, {
      storageClass: s3.StorageClass.GLACIER,
      transitionAfter: cdk.Duration.days(365),
    }],
    expiration: cdk.Duration.days(730),
  }],
});

Presigned URLs para acceso temporal

import { S3Client, GetObjectCommand, PutObjectCommand } from '@aws-sdk/client-s3';
import { getSignedUrl } from '@aws-sdk/s3-request-presigner';

const s3 = new S3Client({});

// URL de descarga (15 minutos)
const downloadUrl = await getSignedUrl(s3, new GetObjectCommand({
  Bucket: process.env.BUCKET_NAME,
  Key: `uploads/${userId}/${fileId}`,
}), { expiresIn: 900 });

// URL de subida (5 minutos, máximo 10MB)
const uploadUrl = await getSignedUrl(s3, new PutObjectCommand({
  Bucket: process.env.BUCKET_NAME,
  Key: `uploads/${userId}/${fileId}`,
  ContentType: 'application/pdf',
}), { expiresIn: 300 });

Clases de almacenamiento

Read the full file on GitHub · 139 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 139 lines · 36 tokens per session scan A 7dde02b9adbe

Subscribe to this mod's changes

aws-s3 is a skill published in the GitHub repository eliecer2000/kiro-bootstrap (9 stars, last pushed 5mo ago), licensed MIT. It adds 36 tokens to every session and 1,174 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.