Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add ArabelaTso/Skills-4-SE --skill change-log-generatorgit clone --depth 1 https://github.com/ArabelaTso/Skills-4-SEWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/arabelatso/skills-4-se/change-log-generator)<a href="https://agentmods.dev/skills/arabelatso/skills-4-se/change-log-generator"><img src="https://agentmods.dev/badge/skills/arabelatso/skills-4-se/change-log-generator/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/arabelatso/skills-4-se/change-log-generator"><img src="https://agentmods.dev/badge/skills/arabelatso/skills-4-se/change-log-generator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00088 | $0.05318 |
| Opus 5 | $0.00044 | $0.02659 |
| Sonnet 5 | $0.00018 | $0.01064 |
| Haiku 4.5 | $0.00009 | $0.00532 |
Grade A, and why
change-log-generator scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
result = subprocess.run( How it starts
The opening of the file, as written. The whole thing — 779 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Change Log Generator
Automatically generate comprehensive change logs from git history and code changes.
Core Capabilities
This skill helps create change logs by:
- Analyzing git commits - Parse commit messages for changes
- Processing conventional commits - Extract structured information from standardized commits
- Examining diffs/patches - Understand code changes from git diff output
- Categorizing changes - Automatically group by type (features, fixes, docs, etc.)
- Formatting output - Generate Markdown change logs following best practices
Change Log Generation Workflow
Step 1: Gather Change Information
Collect commits and changes for the release period.
Determine Release Range:
# Changes since last tag
git log $(git describe --tags --abbrev=0)..HEAD --oneline
# Changes between two tags
git log v1.2.0..v1.3.0 --oneline
# Changes in last N commits
git log -n 50 --oneline
# Changes since specific date
git log --since="2024-01-01" --oneline
# Changes in current branch vs main
git log main..HEAD --oneline
Get Detailed Commit Information:
# Full commit messages
git log v1.2.0..HEAD --format="%H|%an|%ad|%s|%b" --date=short
# With file changes
git log v1.2.0..HEAD --name-status
# With diff stats
git log v1.2.0..HEAD --stat
Get Pull Request Information:
# Using GitHub CLI
gh pr list --state merged --base main --limit 50
# Get PR details
gh pr view 123 --json title,body,labels,mergedAt
Step 2: Parse Commit Messages
Extract meaningful information from commits.
Conventional Commit Format:
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
Common Types:
feat: New featurefix: Bug fixdocs: Documentation changesstyle: Code style changes (formatting, missing semicolons, etc.)refactor: Code refactoringperf: Performance improvementstest: Adding or updating testsbuild: Build system or external dependency changesci: CI configuration changeschore: Other changes that don't modify src or test files
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 779 lines · 88 tokens per session scan A dc6361a68bd6
change-log-generator is a skill published in the GitHub repository ArabelaTso/Skills-4-SE (252 stars, last pushed 22d ago), licensed Apache-2.0. It adds 88 tokens to every session and 5,318 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
release-skills
A release workflow for preparing and publishing a new version of a software project. A release is a named version that may include updated version files, release notes, tags, or a GitHub Release.
version-release
Choose and apply the correct semantic version bump for this repository. Use for every user-visible release, before merge when a change set should ship as patch, minor, or major, and whenever package/plugin/desktop version metadata must stay synchronized.
changelog-gen
A changelog generator that turns Git history into a version-by-version record of project changes. A changelog is a readable summary of new features, fixes, breaking changes, documentation, and other updates.
changelog
Update per-package CHANGELOG.md files for a Ratel release. Drafts entries with git-cliff (scoped per package), lets you curate, then writes the CHANGELOGs. Handles both RC entries and GA-graduation collapse (merging X.Y.Z-rc. sections into a single X.Y.Z section). Invoke before tagging a release.
get-unpublished-changes
Compare HEAD with the latest published npm versions and list all unpublished changes by release layer. Triggers: unpublished changes, changelog, what changed, whats new.
han-release
Cut a Han release: update CHANGELOG.md with the changes since the last release, bump and tag every plugin that changed as {plugin-name}--v{version} so a version-constrained dependency can resolve, and publish a GitHub release crediting every merged pull request and closed issue to the people behind it. Use when…