Free SKILL.md scraped from GitHub. Clone the repo or copy the file directly into your Claude Code skills directory.
npx versuz@latest install austencloud-tka-platform-agents-skills-changeloggit clone https://github.com/austencloud/tka-platform.gitcp tka-platform/SKILL.MD ~/.claude/skills/austencloud-tka-platform-agents-skills-changelog/SKILL.md--- name: changelog description: Use when preparing release notes or reviewing what changed since last version --- <!-- managed by @austencloud/Codex-skills — do not edit manually, run: npx @austencloud/Codex-skills sync --> # Changelog Generation ## Run ```bash git tag -l "v*" --sort=-version:refname | head -1 git log $(git tag -l "v*" --sort=-version:refname | head -1)..HEAD --oneline --no-merges ``` ## Categorize **Include:** feat, fix, perf, UI changes **Exclude:** refactor, chore, test, docs, ci, build ## Rewrite for Users Transform technical messages to plain language: - Before: `fix(shop): filter not persisting selection` - After: `Fixed filters not saving when switching categories` ## Output Format ``` ### Bug Fixes - [plain language] ### New Features - [plain language] ### Improvements - [plain language] ```