Release Notes Generator
Transform technical tickets, PRDs, or internal changelogs into polished, user-facing release notes. Backs the release-notes mode of /sprint.
Brain Context
Load if available:
brain/style/writing.md — the product's voice; release notes must match it (tone, reading level, banned words)
brain/knowledge/product/roadmap.md — to confirm what actually shipped this cycle and link entries back to features
brain/knowledge/product/features/ — for the user problem each shipped feature solved (lead with that benefit)
brain/knowledge/users/personas.md — to pitch each change to the segment it affects
Context
You are writing release notes for the shipped work the PM provides.
If the user provides files (Jira exports, Linear tickets, PRDs, Git logs, or internal changelogs), read them first. Cross-reference against brain/knowledge/product/features/ so the "why it matters" comes from the real user problem, not a guess.
Instructions
Gather raw material: Read all provided tickets, changelogs, or descriptions. Extract:
- What changed (feature, improvement, or fix)
- Who it affects (which user segment)
- Why it matters (the user benefit)
Categorize changes:
- New Features: Entirely new capabilities
- Improvements: Enhancements to existing features
- Bug Fixes: Issues resolved
- Breaking Changes: Anything that requires user action (migrations, API changes)
- Deprecations: Features being sunset
Write each entry following these principles:
- Lead with the user benefit, not the technical change
- Use plain language — avoid jargon, internal codenames, or ticket numbers
- Keep each entry to 1-3 sentences
- Include visuals or screenshots if the user provides them
Example transformations:
Technical: "Implemented Redis caching layer for dashboard API endpoints"
User-facing: "Dashboards now load up to 3× faster, so you spend less time waiting and more time analyzing."
Technical: "Fixed race condition in concurrent checkout flow"
User-facing: "Fixed an issue where some orders could fail during high-traffic periods."
Structure the release notes:
# [Product Name] — [Version / Date]
## Highlights
[1-2 sentence summary of the most important change]
## New Features
- **[Feature name]**: [1-2 sentence description of what it does and why it matters]
## Improvements
- **[Area]**: [What got better and how it helps]
## Bug Fixes
- Fixed [issue description in user terms]
## Breaking Changes (if any)
- **Action required**: [What users need to do]
Adjust tone to match the product's voice from brain/style/writing.md — professional for B2B, friendly for consumer, developer-focused for APIs. Follow the voice rules in CLAUDE.md § Voice and Output Style (no jargon, benefits before features, 8th-grade reading level for user-facing copy).
Output
Save to outputs/<YYYY-MM-DD>-release-notes-<slug>.md. Offer to reformat for different channels (blog post, in-app, email, Slack announcement). If the user wants HTML or another format, convert accordingly.
1---2name: release-notes3description: Generate user-facing release notes from tickets, PRDs, or changelogs. Creates clear, engaging summaries organized by category (new features, improvements, fixes). Use when writing release notes, creating changelogs, announcing product updates, or summarizing what shipped.4---56## Release Notes Generator78Transform technical tickets, PRDs, or internal changelogs into polished, user-facing release notes. Backs the `release-notes` mode of `/sprint`.910### Brain Context1112Load if available:13- `brain/style/writing.md` — the product's voice; release notes must match it (tone, reading level, banned words)14- `brain/knowledge/product/roadmap.md` — to confirm what actually shipped this cycle and link entries back to features15- `brain/knowledge/product/features/` — for the user problem each shipped feature solved (lead with that benefit)16- `brain/knowledge/users/personas.md` — to pitch each change to the segment it affects1718### Context1920You are writing release notes for the shipped work the PM provides.2122If the user provides files (Jira exports, Linear tickets, PRDs, Git logs, or internal changelogs), read them first. Cross-reference against `brain/knowledge/product/features/` so the "why it matters" comes from the real user problem, not a guess.2324### Instructions25261. **Gather raw material**: Read all provided tickets, changelogs, or descriptions. Extract:27 - What changed (feature, improvement, or fix)28 - Who it affects (which user segment)29 - Why it matters (the user benefit)30312. **Categorize changes**:32 - **New Features**: Entirely new capabilities33 - **Improvements**: Enhancements to existing features34 - **Bug Fixes**: Issues resolved35 - **Breaking Changes**: Anything that requires user action (migrations, API changes)36 - **Deprecations**: Features being sunset37383. **Write each entry** following these principles:39 - Lead with the user benefit, not the technical change40 - Use plain language — avoid jargon, internal codenames, or ticket numbers41 - Keep each entry to 1-3 sentences42 - Include visuals or screenshots if the user provides them4344 **Example transformations**:45 - Technical: "Implemented Redis caching layer for dashboard API endpoints"46 - User-facing: "Dashboards now load up to 3× faster, so you spend less time waiting and more time analyzing."4748 - Technical: "Fixed race condition in concurrent checkout flow"49 - User-facing: "Fixed an issue where some orders could fail during high-traffic periods."50514. **Structure the release notes**:5253 ```54 # [Product Name] — [Version / Date]5556 ## Highlights57 [1-2 sentence summary of the most important change]5859 ## New Features60 - **[Feature name]**: [1-2 sentence description of what it does and why it matters]6162 ## Improvements63 - **[Area]**: [What got better and how it helps]6465 ## Bug Fixes66 - Fixed [issue description in user terms]6768 ## Breaking Changes (if any)69 - **Action required**: [What users need to do]70 ```71725. **Adjust tone** to match the product's voice from `brain/style/writing.md` — professional for B2B, friendly for consumer, developer-focused for APIs. Follow the voice rules in `CLAUDE.md § Voice and Output Style` (no jargon, benefits before features, 8th-grade reading level for user-facing copy).7374### Output7576Save to `outputs/<YYYY-MM-DD>-release-notes-<slug>.md`. Offer to reformat for different channels (blog post, in-app, email, Slack announcement). If the user wants HTML or another format, convert accordingly.