What problem does it solve? When new AWS modules are added to Ansible collections like amazon.aws or community.aws, the aws-terminator repository needs matching terminator classes and IAM permissions to clean up test resources. Manually determining what is missing is slow and error-prone. ## Core Features & Use Cases - PR Analysis: Fetches a pull request via the GitHub CLI, identifies new modules, AWS service clients, and resource creation patterns. - Coverage Check: Searches the local aws-terminator clone for existing terminator classes and IAM policy entries, flagging gaps. - Structured Report: Generates a markdown report with coverage tables, recommended terminator implementations, IAM permission YAML, and next steps. - Use Case: A maintainer reviewing community.aws PR #2353 runs the analysis to discover that a new MediaLive module needs a terminator class in application_services.py plus four new IAM permissions before CI will pass. ## Quick Start Ask the assistant to analyze PR 2353 in ansible-collections/community.aws for missing aws-terminator classes and IAM permissions.