Release Notes Generator

Generates clear, user-friendly release notes from a git log or list of PRs.

8 stars

Best use case

Release Notes Generator is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Generates clear, user-friendly release notes from a git log or list of PRs.

Teams using Release Notes Generator should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/release-notes-generator/SKILL.md --create-dirs "https://raw.githubusercontent.com/Notysoty/openagentskills/main/skills/release-notes-generator/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/release-notes-generator/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How Release Notes Generator Compares

Feature / AgentRelease Notes GeneratorStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Generates clear, user-friendly release notes from a git log or list of PRs.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Release Notes Generator

## What this skill does

This skill takes raw git log output or a list of PR titles/descriptions and turns them into polished, user-facing release notes. It groups changes by category, rewrites technical commit messages into plain English, and formats the output as clean markdown ready to paste into GitHub Releases, a CHANGELOG.md, or a blog post.

Use this before every release to save time and produce consistent, readable changelogs your users will actually understand.

## How to use

### Claude Code / Cline

Copy this file to `.agents/skills/release-notes-generator/SKILL.md` in your project root.

Then run:
```bash
git log v1.2.0..v1.3.0 --oneline
```
Paste the output and ask:
- *"Use the Release Notes Generator skill to turn this git log into release notes for v1.3.0."*
- *"Generate release notes from these PR titles using the Release Notes Generator skill."*

### Cursor

Add the "Prompt / Instructions" section below to your `.cursorrules` file, then paste your git log or PR list into the chat.

### Codex

Paste your git log or PR descriptions directly into the chat along with the instructions below. Include PR body text when available — it gives Codex more context for accurate categorization.

## The Prompt / Instructions for the Agent

When asked to generate release notes, follow these steps:

1. **Parse the input.** Accept any of:
   - `git log --oneline` output (hash + short message)
   - Full `git log` with commit bodies
   - A numbered or bulleted list of PR titles
   - A list of PR titles + descriptions

2. **Categorize each change** into one of these buckets:
   - **New Features** — new capabilities, pages, commands, or options added
   - **Improvements** — enhancements to existing features (faster, easier to use, more options)
   - **Bug Fixes** — things that were broken and are now fixed
   - **Breaking Changes** — anything that requires users to update their code, config, or workflow
   - **Security** — security patches, dependency updates for known CVEs
   - **Under the Hood** — refactors, dependency bumps, CI changes (only include if relevant to devs)

   If a change doesn't clearly fit a category, use your best judgment. Omit pure chore commits (`chore: update lockfile`) unless they affect users.

3. **Rewrite each entry in user-friendly language.**
   - Remove jargon, ticket numbers, and internal references
   - Write from the user's perspective: "You can now..." / "Fixed a bug where..."
   - Keep each bullet to one sentence
   - Do not mention internal file names, function names, or variable names unless they are part of a public API

4. **Order the sections** as: Breaking Changes (if any, always first) → New Features → Improvements → Bug Fixes → Security → Under the Hood.

5. **Write an optional summary paragraph** (2–3 sentences) at the top highlighting the most important changes in this release.

6. **Output format:**

```markdown
## v[VERSION] — [DATE]

[Optional 2–3 sentence summary of the release highlights.]

### Breaking Changes
- ...

### New Features
- ...

### Improvements
- ...

### Bug Fixes
- ...

### Security
- ...

### Under the Hood
- ...
```

Omit any section that has no entries.

7. **If a "Breaking Changes" section exists**, add a migration hint for each breaking change — a one-line note on what users need to do.

## Example

**Input to Agent:**
> "Use the Release Notes Generator skill on this git log for v2.1.0:
>
> ```
> a3f2c1e feat(auth): add OAuth2 login with Google and GitHub
> 9b1d4a7 fix(dashboard): chart not rendering on Safari 16
> cc8e302 perf(api): reduce response time by 40% with query caching
> 5f3a991 chore: bump eslint from 8.0 to 9.0
> 2d7c14e feat(export): add CSV export for all report types
> b8a0f3c fix(upload): files over 10MB silently failed
> e1c5529 refactor(db): replace raw SQL with query builder
> 7fa3318 BREAKING: rename config key api_url to apiUrl
> ```"

**Output from Agent:**
> ## v2.1.0 — 2026-03-15
>
> This release adds Google and OAuth2 login, a long-requested CSV export, and a significant API speed improvement. One configuration key has been renamed — see the breaking change note below.
>
> ### Breaking Changes
> - The configuration key `api_url` has been renamed to `apiUrl`. Update your config file before upgrading.
>
> ### New Features
> - Sign in with Google or GitHub using OAuth2 — no password required.
> - Export any report as a CSV file with a single click.
>
> ### Improvements
> - API responses are now up to 40% faster thanks to query result caching.
>
> ### Bug Fixes
> - Fixed charts not rendering correctly in Safari 16.
> - Fixed an issue where file uploads larger than 10 MB would fail silently with no error message.

Related Skills

Sprint Summary Generator

8
from Notysoty/openagentskills

Converts a list of completed tickets or commits into a clear sprint summary for stakeholders.

SEO Metadata Generator

8
from Notysoty/openagentskills

Generates optimized title tags, meta descriptions, Open Graph tags, and structured data for any web page.

FAQ Generator

8
from Notysoty/openagentskills

Generates a comprehensive FAQ section for any product, API, or documentation page.

Docker Compose Generator

8
from Notysoty/openagentskills

Generates production-ready docker-compose.yml files for any application stack.

Blog Outline Generator

8
from Notysoty/openagentskills

Generates a detailed, SEO-optimized blog post outline with H2/H3 structure, key points per section, and a hook.

API Documentation Generator

8
from Notysoty/openagentskills

Generates OpenAPI-compatible documentation for REST API endpoints from code or route definitions.

Unit Test Writer

8
from Notysoty/openagentskills

Generates comprehensive unit tests for any function or module with edge cases.

Unit Test Improver

8
from Notysoty/openagentskills

Reviews existing unit tests for gaps, weak assertions, and missing edge cases, then rewrites them to be more robust.

Troubleshooting Guide Builder

8
from Notysoty/openagentskills

Builds a structured troubleshooting guide with symptom → cause → fix format for any tool or system.

Tech Debt Auditor

8
from Notysoty/openagentskills

Identifies and prioritizes technical debt in a codebase with an effort/impact matrix.

Technical Blog Post Writer

8
from Notysoty/openagentskills

Writes engaging, accurate technical blog posts targeted at developer audiences.

Stack Trace Analyzer

8
from Notysoty/openagentskills

Interprets error stack traces to pinpoint root cause, explain what went wrong, and suggest fixes.