AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Changelog Composer

skill-mathews-tom-armory-changelog-composer · by Mathews-Tom

Generates structured changelogs and release notes from git history and PRs, classifying breaking changes, features, fixes, performance, docs. Triggers on: "generate changelog", "write release notes", "what changed since", "prepare release", "release notes for", "diff since tag".

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

Install

$ agentstack add skill-mathews-tom-armory-changelog-composer

✓ 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-mathews-tom-armory-changelog-composer)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Changelog Composer? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Changelog Composer

Transforms raw git history and PR descriptions into polished, audience-appropriate changelogs. Parses conventional commits, classifies changes by impact category, filters internal-only modifications, and produces structured release notes with PR links — following Keep a Changelog conventions.

Reference Files

| File | Contents | Load When | | ------------------------------------ | ------------------------------------------------------------------ | ------------------------------------ | | references/conventional-commits.md | Commit type parsing, scope extraction, breaking change indicators | Repository uses conventional commits | | references/categorization-rules.md | Change classification logic, audience filtering, severity ordering | Always | | references/audience-filter.md | User-facing vs internal change detection, exclusion patterns | Always | | references/changelog-formats.md | Keep a Changelog, GitHub Releases, announcement copy templates | Format selection needed |

Prerequisites

  • git — access to the repository history
  • gh (optional) — GitHub CLI for PR description extraction
  • A tagging strategy (semver tags) for identifying release boundaries

Workflow

Phase 1: Gather Raw Changes

Collect all changes between the previous release and the current state:

  1. Identify boundaries — Find the last release tag: git describe --tags --abbrev=0.

If no tags exist, use the initial commit or a user-specified starting point.

  1. Extract commitsgit log ..HEAD --oneline --no-merges
  2. Extract PR titlesgh pr list --state merged --base main --search "merged:>YYYY-MM-DD"

or parse merge commit messages.

  1. Parse conventional commits — If the repository follows conventional commits

(feat:, fix:, docs:, etc.), extract type, scope, and description. See references/conventional-commits.md.

  1. Collect breaking change indicators — Look for BREAKING CHANGE: in commit

bodies, ! after type (feat!:), or explicit annotations in PR descriptions.

Phase 2: Classify Changes

Categorize each change by its impact:

| Category | Conventional Commit Type | Indicators | | ---------------- | ----------------------------------------------- | ---------------------------------------------- | | Breaking Changes | feat!:, BREAKING CHANGE: | API removal, signature change, behavior change | | Features | feat: | New capability, new endpoint, new command | | Fixes | fix: | Bug correction, error handling improvement | | Performance | perf: | Speed improvement, memory reduction | | Documentation | docs: | README, API docs, guides | | Internal | chore:, ci:, refactor:, test:, build: | No user-facing impact |

For repositories without conventional commits, classify by reading the commit message and changed files. Code changes to public API → Feature or Fix. Test-only changes → Internal.

Phase 3: Filter for Audience

  1. Exclude internal changes by default:
  • CI/CD configuration changes
  • Test additions/modifications
  • Dependency bumps (unless security-relevant)
  • Code refactoring with no behavior change
  • Build system changes
  1. Include internal changes only when:
  • They represent significant architecture shifts users should know about
  • They affect development workflow (contributing guide changes)
  • The changelog targets developers, not end-users
  1. Highlight breaking changes prominently — always at the top, always with migration

guidance.

Phase 4: Compose Entries

For each included change, write a human-readable description:

  1. Lead with the impact — "Users can now..." or "Fixed issue where..."
  2. Be specific — "Reduced memory usage by 40% for large file processing" not

"Performance improvements"

  1. Include migration guidance for breaking changes — what the user must change
  2. Link to source — PR number, issue number, or commit hash

Phase 5: Output

Assemble the changelog in the requested format, ordered by severity:

  1. Breaking Changes (always first)
  2. Features
  3. Fixes
  4. Performance
  5. Documentation

Output Format

## [{version}] - {YYYY-MM-DD}

### Breaking Changes
- **`function_name` parameter renamed** — `old_param` is now `new_param`.
  Migration: find/replace `old_param=` with `new_param=` in all call sites. ([#{pr}]({url}))

### Features
- **{Feature name}** — {What it enables and why it matters}. ([#{pr}]({url}))

### Fixes
- Fixed {symptom} when {condition}. ([#{pr}]({url}))

### Performance
- {Operation} is now {X}x faster / uses {X}% less memory. ([#{pr}]({url}))

### Documentation
- Added {guide/reference} for {topic}. ([#{pr}]({url}))

Configuring Scope

| Mode | Input | Output | When to Use | | --------- | -------------------------- | ------------------------ | ----------------------------- | | release | Tag-to-HEAD | Full changelog entry | Preparing a versioned release | | sprint | Date range or commit range | Summary of changes | Sprint review, status update | | pr | Single PR | One-line changelog entry | PR description template |

Calibration Rules

  1. User impact first. Every entry should answer "what does this mean for the user?"

not "what did the developer do?"

  1. Breaking changes are non-negotiable. Never omit or bury breaking changes. They

go first, with migration guidance.

  1. Specific over vague. "Fixed login timeout on slow connections" beats "Fixed bug."

"Added CSV export for reports" beats "New feature."

  1. Link everything. Every entry links to its source PR or issue. Users who want

details can follow the link.

  1. Exclude noise. Internal refactoring, dependency bumps, and CI changes do not

belong in user-facing changelogs unless they have user-visible impact.

Error Handling

| Problem | Resolution | | ------------------------------------------- | -------------------------------------------------------------------------------------------------- | | No tags exist in repository | Ask for a starting commit or date. Default to the initial commit if the repository is small. | | Repository doesn't use conventional commits | Classify by reading commit messages and changed files. Note reduced classification accuracy. | | PR descriptions are empty or low-quality | Fall back to commit messages. Flag entries that may need manual review. | | Ambiguous change classification | Default to "Features" for additions, "Fixes" for modifications. Mark uncertain entries for review. | | Too many changes for a single release | Group by component/module. Consider whether the release should be split. | | Merge commits obscure individual changes | Use --no-merges to skip merge commits. Parse individual commits within merged PRs. |

When NOT to Compose

Push back if:

  • The user wants to auto-publish release notes without review — changelogs require human judgment
  • The repository has no meaningful commit history (single "initial commit" with everything)
  • The request is for marketing copy, not technical release notes — different skill
  • The changes are not yet merged — changelog is for shipped changes, not in-progress work

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.