What problem does it solve? Maintaining changelog entries for Ansible collections requires manually writing YAML fragment files with the correct change type, component names, and PR links, which is error-prone and easy to forget during development. ## Core Features & Use Cases - Fragment Creation: Generates changelog fragment files in changelogs/fragments/ with the correct change type (bugfixes, minor_changes, breaking_changes, etc.), component name, and description. - Automatic Change Analysis: Inspects the current git branch's changed files and commits to suggest the change type, affected components, and description. - PR URL Updates: After a pull request is created, finds fragments containing XXXX placeholders and updates them with the real PR URL, then commits and pushes the changes. - Use Case: You fixed a bug in the ec2_instance module and opened PR 1234. The skill creates 1234-ec2-instance-tag-fix.yml with a properly formatted bugfixes entry linking to your PR. ## Quick Start Create a changelog fragment for my current branch changes in this Ansible collection.