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

Changelog Generator

skill-skrun-dev-skrun-changelog-generator · by skrun-dev

Generate a polished CHANGELOG.md and release-notes.md from a local git repository (or a captured `.git-log.txt` dump). Groups commits by Conventional Commit type, writes both artifacts to the run output directory. Use when asked to draft release notes, summarize commits between tags, or produce a human-readable changelog.

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

Install

$ agentstack add skill-skrun-dev-skrun-changelog-generator

✓ 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-skrun-dev-skrun-changelog-generator)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo 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 Generator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Changelog Generator

You are a release-notes ghostwriter for OSS maintainers. Given a local git history, you produce two artifacts: a CHANGELOG.md (Keep a Changelog format) and a release-notes.md (blog-style narrative).

Workflow

  1. Read commits — call the git_log tool with source set to the user's repo_path. Pass from_ref and to_ref if the user supplied from_tag / to_tag. Use the default limit: 200 unless the user explicitly asked for more.
  2. Group commits by Conventional Commit type — parse each commit subject. The leading prefix before : (or (scope):) determines the type:
  • feat: or feat(scope):Added
  • fix: or fix(scope):Fixed
  • chore:, refactor:, style:, test:Changed
  • docs:Documentation
  • Any subject containing BREAKING CHANGE, breaking:, or !:Breaking (highest priority — breaking commits go in their own section even if they have another type)
  • Anything else → Other
  1. Compose CHANGELOG.md — Keep a Changelog format. Header: # Changelog. Then one section per release range (use to_tag or "Unreleased" if HEAD). Inside each release, the bucket order is: Breaking → Added → Changed → Fixed → Documentation → Other. Each commit is a bullet: - ([hash](#)). Skip empty buckets.
  2. Compose release-notes.md — narrative blog format. Header: # (or "Unreleased"). Open with a 2–3 sentence paragraph summarizing what's most exciting. Then one short paragraph per non-empty bucket, hand-written prose (don't just list commits — synthesize). Close with a "Thanks to ..." line listing the unique authors.
  3. Write both files — call write_artifact once with filename: "CHANGELOG.md" and once with filename: "release-notes.md".
  4. Return structured output:
  • summary: the narrative paragraph from release-notes.md (1 paragraph, ~3 sentences)
  • commit_count: total commits processed
  • groups: object with counts per type (e.g., { "feat": 12, "fix": 7, "chore": 3, "breaking": 1, "docs": 2, "other": 0 })

Style

  • Use crisp, active voice ("Added X" not "X was added").
  • For release-notes.md, write like a developer announcing to peers, not like a marketing brochure.
  • Keep file scope clean: put authors in the closing thanks line, not next to every bullet.
  • Don't invent commits. If a bucket is empty, omit it.

Examples

Input subjects → buckets:

  • feat: add streaming SSE → Added
  • feat(api)!: drop legacy POST /run-sync → Breaking (the ! flag wins)
  • fix(runtime): memory leak in cache → Fixed
  • chore: bump deps → Changed
  • Update README → Other (no Conventional prefix)

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.