What problem does it solve? Building serverless applications on AWS involves dozens of non-obvious quotas, mutual-exclusivity rules, and error patterns (502 proxy responses, CORS misconfigurations, concurrency throttling, cold starts) that are easy to get wrong and hard to debug without deep platform experience. ## Core Features & Use Cases - Architecture and pattern selection: Route workloads to the right pattern (REST/HTTP API, event processing, orchestration, streaming, fan-out, scheduled jobs) with default-vs-alternative service choices. - Configuration and quota guidance: Exact values for Lambda memory/timeout, concurrency controls (reserved, provisioned, ESM Maximum Concurrency, Provisioned Mode), API Gateway throttling, and event source mapping parameters. - Error-driven troubleshooting: Exact error strings (502, 504, SnapStartException, States.DataLimitExceeded, Function URL 403) mapped to causes and CLI fixes, plus CloudWatch Logs Insights diagnostic queries. - Use Case: A developer's API Gateway endpoint returns 502 errors after connecting a Lambda function. The skill identifies the malformed proxy response shape, provides the corrected handler, and routes to the connecting-lambda-to-api-gateway procedure for CORS and throttling setup. ## Quick Start Ask the assistant to help build or debug an AWS serverless application, for example: help me connect my Lambda function to API Gateway with CORS and fix the 502 errors I'm seeing.