Changelog
Generate a CHANGELOG.md entry from git log since last tag — invoked via /changelogFrom its SKILL.md
npx -y skills add puukis/lstack --skill changelogAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.2 KB, 508 tokens by cl100k_base, as published. Nobody here has run it
Changelog — generate changelog entry from git history
Activation
Invoked via /changelog. Use before any release or when CHANGELOG.md needs updating.
Process
-
Find the last git tag: Bash: git describe --tags --abbrev=0 2>/dev/null || echo "none"
-
Get commits since that tag (or all commits if no tag): Bash: git log --oneline --no-merges [last-tag]..HEAD 2>/dev/null If no tag: git log --oneline --no-merges | head -30
-
Read the existing CHANGELOG.md to understand the format.
-
Categorize the commits into: Added / Changed / Fixed / Removed / Security Use the commit message as the source of truth. Ignore: chore, docs, style, test commits unless they are significant. Keep each item to one line, past tense, user-facing language.
-
Determine the version number:
- If the user specified one, use it.
- Otherwise, read the latest version from CHANGELOG.md and suggest the next patch version (e.g. 1.0.0 → 1.0.1).
- Use AskUserQuestion to confirm the version: AskUserQuestion({ questions: [{ question: "Which version is this release?", header: "Version", multiSelect: false, options: [ { label: "[suggested patch]", description: "Increment patch version" }, { label: "[suggested minor]", description: "Increment minor version" }, { label: "[suggested major]", description: "Increment major version" }, { label: "I'll type it", description: "Provide a custom version string" } ] }] })
-
Write the new entry to CHANGELOG.md, inserting it after the
[Unreleased] section (or at the top if none exists).
Format: ## [X.Y.Z] - YYYY-MM-DD
### Added - ... ### Fixed - ... -
Confirm: "CHANGELOG.md updated. Review it before tagging."
Constraints
- Never invent changes not in git log.
- Never include internal refactoring or test changes unless significant.
- Never overwrite existing entries — only insert above them.
- Max 15 items total per entry. Summarize if more.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.