What problem does it solve? Teams deploying Agno agents to AWS often create resources manually in the console, ship bloated Lambda packages, and misuse boto3 clients, leading to slow cold starts, over-permissive IAM, and fragile deployments. This Skill standardizes infrastructure-as-code with AWS SAM, package optimization, and correct boto3 usage. ## Core Features & Use Cases - SAM Template Standards: Enforces template.yaml with Globals, arm64/Graviton, HTTP API, least-privilege SAM policy templates, and environment-based parameters. - Package Optimization: Moves heavy dependencies into Lambda Layers, excludes boto3 from the artifact, uses sam build --use-container, and strips tests and junk files. - boto3 Best Practices: Module-scoped reusable clients, explicit timeouts and adaptive retries via botocore Config, paginators, ClientError handling, and credential-chain-only authentication. - Use Case: When writing a new Lambda function that reads secrets from Secrets Manager and sessions from DynamoDB, apply this Skill to generate the SAM template with least-privilege policies and a shared boto3 client module that also works against LocalStack in development. ## Quick Start Ask the AI to model the agent's AWS infrastructure as a SAM template with least-privilege IAM and an optimized boto3 client layer following the agno-aws standards.