What problem does it solve? Exposing an Agno agent as a production HTTP API on AWS involves many decisions: how to adapt FastAPI to Lambda events, how to package heavy dependencies, how to handle the 29-second API Gateway timeout, and how to manage LLM keys and conversation state in a stateless environment. This Skill provides a complete, opinionated blueprint covering all of these concerns. ## Core Features & Use Cases - Two deployment paths: FastAPI + Mangum with Lambda Layers as the default, or a container image with the AWS Lambda Web Adapter when dependencies exceed the 250 MB limit. - Full SAM infrastructure: template.yaml covering API Gateway, Lambda, Lambda Layer, Secrets Manager, and DynamoDB for sessions and memory. - Response patterns: synchronous requests, streaming via StreamingResponse or response-stream invoke mode, and asynchronous 202 + polling with SQS for long-running agents. - Use Case: You built an Agno chat agent locally and need to ship it as a secured REST endpoint. Follow the Skill to write the FastAPI routes, package dependencies into a Layer, store the OpenAI key in Secrets Manager, persist sessions in DynamoDB, and deploy with sam deploy --guided. ## Quick Start Ask the AI to scaffold a FastAPI app exposing my Agno agent as a POST /chat endpoint and generate the SAM template to deploy it on AWS Lambda behind API Gateway.