skills/changelog-version/SKILL.md
Generate changelog entries and suggest semantic version bumps from git history
npx skillsauth add jankneumann/agentic-coding-tools changelog-versionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate changelog entries from git history and suggest semantic version bumps based on conventional commit types.
$ARGUMENTS - Optional flags:
--since <ref> (git ref or tag to start from; default: last changelog update or all commits)--bump (apply the suggested version bump to VERSION and CHANGELOG.md)--dry-run (show what would change without modifying files; default when no flags given)--format <keep-a-changelog|simple> (changelog format; default: keep-a-changelog)type(scope): message)VERSION file in project root (created automatically if missing)CHANGELOG.md in project root (created automatically if missing)Default analysis and --dry-run are read-only. Any invocation that applies a
version bump or writes VERSION / CHANGELOG.md MUST first enter a managed
worktree in local CLI execution:
CHANGE_ID="changelog-version-<version-or-date>"
eval "$(python3 "<skill-base-dir>/../worktree/scripts/worktree.py" setup "$CHANGE_ID")"
cd "$WORKTREE_PATH"
skills/.venv/bin/python skills/shared/checkout_policy.py require-mutation
The script analyzes commits since the last version tag or changelog entry and suggests a bump level:
| Commit Prefix | SemVer Impact | Examples |
|---------------|---------------|----------|
| feat | MINOR bump | New skill, new capability, new API endpoint |
| fix | PATCH bump | Bug fixes, corrections |
| docs | PATCH bump | Documentation-only changes |
| refactor | PATCH bump | Code restructuring without behavior change |
| chore | PATCH bump | Maintenance, dependency updates, archiving |
| test | PATCH bump | Test additions or fixes |
| perf | PATCH bump | Performance improvements |
| BREAKING CHANGE | MAJOR bump | Footer or ! after type signals breaking change |
The highest-impact commit determines the suggestion. For example, if there are 5 fix commits and 1 feat commit, the suggestion is MINOR.
Run the changelog analysis script to scan commits and categorize changes:
python3 <agent-skills-dir>/changelog-version/scripts/changelog.py analyze \
--repo-root <project-root> \
--since <ref-or-tag>
This outputs:
VERSION filePresent the analysis to the user:
VERSIONAsk the user to confirm or override the suggested bump level before applying.
python3 <agent-skills-dir>/changelog-version/scripts/changelog.py apply \
--repo-root <project-root> \
--bump <major|minor|patch> \
--date <YYYY-MM-DD>
This will:
VERSION with the new version number[Unreleased] entries in CHANGELOG.md under a new version heading[Unreleased] sectionAfter applying, commit both files:
git add VERSION CHANGELOG.md
git commit -m "chore(release): bump version to <new-version>"
This skill is designed to be invoked:
/implement-feature — to preview what version bump the new feature warrants/cleanup-feature — to include the changelog entry in the merge PRWhen invoked after implementing a feature, the script automatically detects the OpenSpec change-id from the branch name and highlights commits related to that change.
testing
Create and edit Obsidian Flavored Markdown with wikilinks, embeds, callouts, properties, and other Obsidian-specific syntax. Use when working with .md files in Obsidian, or when the user mentions wikilinks, callouts, frontmatter, tags, embeds, or Obsidian notes.
tools
Interact with Obsidian vaults using the Obsidian CLI to read, create, search, and manage notes, tasks, properties, and more. Also supports plugin and theme development with commands to reload plugins, run JavaScript, capture errors, take screenshots, and inspect the DOM. Use when the user asks to interact with their Obsidian vault, manage notes, search vault content, perform vault operations from the command line, or develop and debug Obsidian plugins and themes.
data-ai
Create and edit Obsidian Bases (.base files) with views, filters, formulas, and summaries. Use when working with .base files, creating database-like views of notes, or when the user mentions Bases, table views, card views, filters, or formulas in Obsidian.
tools
Create and edit JSON Canvas files (.canvas) with nodes, edges, groups, and connections. Use when working with .canvas files, creating visual canvases, mind maps, flowcharts, or when the user mentions Canvas files in Obsidian.