18 AWS service skills — IAM, Lambda, DynamoDB, S3, ECS, EKS, CloudFormation, Bedrock, and more — with CLI refs and battle-tested patterns.
A LLM-optimized AWS skills collection: one SKILL.md per service covering overview, core concepts, common patterns, CLI reference, best practices, troubleshooting, and external refs. Designed for reasoning, not live calls — Claude writes correct CloudFormation/Terraform/CLI snippets without hallucinating parameters.
Design an EventBridge → Step Functions → Lambda pipeline
👤 Serverless engineers⏱ ~40 minadvanced
Quand l'utiliser : You need an event-driven workflow and want the right service boundaries.
Déroulement
Sketch the flow
Use the eventbridge + step-functions + lambda skills. Design a pipeline that triggers on S3 uploads, orchestrates 3 steps, and writes to DynamoDB.✓ Copié
→ Architecture diagram + IaC snippets
Observability
Now add CloudWatch alarms and structured logging.✓ Copié
→ Specific metric filters and alarm thresholds
Résultat : A buildable serverless architecture with monitoring.
Pièges
Step Functions costs explode at scale — Skill flags when Express workflows fit better than Standard
👤 Engineers building LLM features on AWS⏱ ~60 minadvanced
Quand l'utiliser : You want to use Bedrock for embeddings + generation without piecing it together from blog posts.
Déroulement
Describe the service
Use the bedrock + s3 + dynamodb skills. Scaffold a RAG service: upload docs to S3, embed with Titan, store in DynamoDB, retrieve + generate at query time.✓ Copié
→ Runnable code with correct Bedrock invoke calls and embedding model IDs
Résultat : A first-pass RAG scaffold on AWS-native services.
Pièges
Using Dynamo for vector search at scale — Skill notes when OpenSearch or pgvector is a better fit