What problem does it solve? Writing AWS Lambda functions and event-driven architectures involves many pitfalls: non-idempotent handlers, missing error handling, hardcoded configuration, and incorrect API Gateway or SQS/S3 event integration. This Skill provides proven patterns and code templates for building serverless applications correctly. ## Core Features & Use Cases - Lambda Function Patterns: Idempotent, stateless handler design with environment variable configuration and structured error handling for services like DynamoDB. - Event-Driven Integrations: Ready-to-use code for S3 event triggers, SQS batch message processing, and API Gateway proxy integration with CORS support. - Serverless Framework Configuration: Complete serverless.yml examples defining functions, events, environment variables, and DynamoDB table resources. - Use Case: You need to build an API backed by Lambda that processes uploaded files. Use this Skill to generate the S3 trigger handler, API Gateway routing with CORS headers, and the serverless.yml deployment configuration. ## Quick Start Write an AWS Lambda function triggered by S3 uploads that processes each file and deploys with the Serverless Framework.