tag-release-ansible — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited tag-release-ansible (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Bump the version in an Ansible Galaxy collection or role, tag the release, and push.
Note: For team repos or any repo with a CI/CD pipeline, automated versioning and publishing via a pipeline (e.g. GitHub Actions triggered on merge to main) is strongly preferred over running this command manually. Use this command for solo projects or when no pipeline is set up.
Steps:
galaxy.yml exists, this is an Ansible collection.meta/main.yml exists but no galaxy.yml, this is an Ansible role.galaxy.yml (field: version) or meta/main.yml (field: version under galaxy_info).git tag --sort=-version:refname | head -1 to find the most recent tag. Run git log <last-tag>..HEAD --oneline to see commits since the last tag. If no tags exist, use all commits. If there are no new commits, tell the user there is nothing to release and stop.major if any commit contains BREAKING CHANGEminor if any commit is type featpatch for all other changesversion field in galaxy.yml or meta/main.yml to the new version.git add galaxy.yml or git add meta/main.yml.CHANGELOG.md exists, regenerate the ## Unreleased section using the same rules as the /changelog command, rename it to ## <new-version>, and stage CHANGELOG.md with git add CHANGELOG.md.git commit -m "chore(release): <new-version>".git tag <new-version> && git push && git push origin <new-version>.$ARGUMENTS
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.