changelog — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited changelog (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.
Generate or update a changelog file that accumulates history across all releases.
Rules:
## Unreleased section at the top is updated on each run.CHANGELOG.md does not exist, create it from scratch using all tags.Steps:
git tag --sort=-version:refname to list all tags.CHANGELOG.md exists.If `CHANGELOG.md` does not exist, generate the full changelog from scratch. For each tag (newest first), run git log <previous-tag>..<tag> --oneline to get commits for that release (for the oldest tag, use the first commit as the base). Group and format commits under a ## <tag> heading. After all tagged sections, add an ## Unreleased section for commits since the most recent tag; omit it if there are none. Write the full result to CHANGELOG.md.
If `CHANGELOG.md` exists, only update the ## Unreleased section. Run git tag --sort=-version:refname | head -1 to find the most recent tag, then git log <last-tag>..HEAD --oneline to get commits since it. Replace the existing ## Unreleased section with a freshly generated one, or prepend a new one if absent. Leave all other sections untouched.
Formatting rules for each section:
feat), Bug Fixes (fix), Performance (perf), Documentation (docs), Chores & Maintenance (chore, refactor, style, test, ci). Omit empty groups.## Unreleased heading, append the suggested next semver bump in parentheses if the last tag is semver: bump patch for fixes only, minor for any feat, major for any BREAKING CHANGE.$ARGUMENTS
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.