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
Wann einsetzen: You need an event-driven workflow and want the right service boundaries.
Ablauf
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.✓ Kopiert
→ Architecture diagram + IaC snippets
Observability
Now add CloudWatch alarms and structured logging.✓ Kopiert
→ Specific metric filters and alarm thresholds
Ergebnis: A buildable serverless architecture with monitoring.
Fallstricke
Step Functions costs explode at scale — Skill flags when Express workflows fit better than Standard
👤 Engineers building LLM features on AWS⏱ ~60 minadvanced
Wann einsetzen: You want to use Bedrock for embeddings + generation without piecing it together from blog posts.
Ablauf
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.✓ Kopiert
→ Runnable code with correct Bedrock invoke calls and embedding model IDs
Ergebnis: A first-pass RAG scaffold on AWS-native services.
Fallstricke
Using Dynamo for vector search at scale — Skill notes when OpenSearch or pgvector is a better fit