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