AgentStack
SKILL verified MIT Self-run

Changelog

skill-khaledsaeed18-dotclaude-changelog · by KhaledSaeed18

Generate a changelog or release notes from Git history, grouped by change type, written in user-facing language, with issue/PR links and breaking changes called out. Conventional-Commits aware and Keep a Changelog formatted; respects any existing CHANGELOG or tooling. Use when preparing release notes or updating CHANGELOG.md.

No reviews yet
0 installs
4 views
0.0% view→install

Install

$ agentstack add skill-khaledsaeed18-dotclaude-changelog

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Changelog? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Produce a changelog from what actually shipped: the commits, merged PRs, and references between two points in history. Write it for the people who read releases (users, integrators), not as a raw git log dump.

Hard rules: never break these

  • Base it on real history, never invent. Every entry must trace to a commit, PR, or issue. No speculative or aspirational items.
  • Match the existing format. If CHANGELOG.md or a changelog tool already exists, follow its structure, headings, and conventions exactly. Don't impose a new style on an established file.
  • Never rewrite already-released sections. Add the new version on top; leave shipped entries untouched.
  • Write for humans. Translate commits into user-facing outcomes. Drop pure-noise commits (formatting, CI tweaks, internal refactors) unless they affect users.
  • Surface breaking changes prominently. They're the entries most likely to ruin someone's day if missed.

Step 1: Determine the range

  • Last release to now: git describe --tags --abbrev=0 gives the latest tag; the range is ..HEAD.
  • Between two releases: ...
  • First release ever: use the full history (no lower bound).
  • Honor an explicit range or version the user passed.

Step 2: Gather the raw material

  • Commits in range: git log --no-merges --pretty=format:'%H %s' (and %b for bodies, to catch BREAKING CHANGE: footers).
  • Merge commits / PR numbers: git log --merges and (#123) references in subjects.
  • Parse Conventional Commit prefixes (feat, fix, perf, refactor, docs, etc.), scopes, the ! breaking marker, and issue/ticket references (#123, JIRA-456, CU-abc).
  • Capture authors if the project credits contributors.

Step 3: Detect the project's convention

Look before you write; adopt what's already in use:

  • An existing CHANGELOG.md / CHANGES/HISTORY file → mirror its format (most follow Keep a Changelog).
  • Tooling config that owns the changelog, e.g. conventional-changelog/standard-version, release-please, changesets (.changeset/), git-cliff (cliff.toml), towncrier (newsfragments/), auto, semantic-release. If one is configured, prefer driving it over hand-writing, and explain how to run it.

Step 4: Categorize

Default to Keep a Changelog sections, mapping Conventional Commits onto them:

| Section | Sourced from | | ---------------- | --------------------------------------------- | | Added | feat | | Changed | refactor, perf, behavior-changing updates | | Deprecated | commits marking something deprecated | | Removed | removals | | Fixed | fix | | Security | security fixes (CVE/advisory references) |

List Breaking changes in their own prominent block (from ! markers and BREAKING CHANGE: footers), with the migration path. Omit chore, ci, build, style, and test unless user-visible.

Step 5: Write the entries

  • One concise, imperative, user-facing line per change: describe the outcome, not the diff.
  • Link references: ... (#123), ticket IDs, or commit short-SHAs per the project's style.
  • Deduplicate (squash-merge plus follow-up commits often describe the same change) and merge related items.
  • Order sections by reader impact: Breaking → Added → Changed → Fixed → the rest.

Step 6: Assemble and place

  • Head the section with the version and ISO date: ## [1.4.0] - 2025-06-06. Use ## [Unreleased] if the version isn't cut yet.
  • Prepend under any existing [Unreleased]/top of file; never disturb prior releases.
  • Maintain comparison links at the bottom if the file uses them ([1.4.0]: https://…/compare/v1.3.0...v1.4.0).
  • If a changelog tool owns the file, generate through it instead of editing by hand, and show the command used.

Report the version, the range covered, and any commits you deliberately excluded as noise, so the result is auditable.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.