with one click
minor-release
// Write the changelog entry for a new minor or major Storybook release. Use when preparing a CHANGELOG.md entry for a X.Y.0 version.
// Write the changelog entry for a new minor or major Storybook release. Use when preparing a CHANGELOG.md entry for a X.Y.0 version.
| name | minor-release |
| description | Write the changelog entry for a new minor or major Storybook release. Use when preparing a CHANGELOG.md entry for a X.Y.0 version. |
| allowed-tools | Bash, Read, Write, Edit |
Assembles and writes a polished changelog entry for a Storybook minor or major (X.Y.0) release into CHANGELOG.md.
.agents/skills/minor-release/get-minor-changelog-summary.ts and .agents/skills/minor-release/write-minor-changelog-section.ts. Do not search for them anywhere else in the repo. Do not look in scripts/, package.json, AGENTS.md, or elsewhere. Do not read the script source files. Just run them.CHANGELOG.md or CHANGELOG.prerelease.md before running the scripts. The scripts handle version detection and entry collection automatically.CHANGELOG.md for style guidance. The style examples in Step 3 of this skill are the authoritative reference. Do not grep or read the changelog to infer format.Run the helper script to see all unique changelog entries from the prereleases, with patch-backported changes filtered out:
node .agents/skills/minor-release/get-minor-changelog-summary.ts [version]
[version] to auto-detect from the most recent prerelease in CHANGELOG.prerelease.md--verbose to see which prerelease versions were found and how many patch PRs were filtered- Entry text lines, one per changeRead the output carefully — you will use these entries in Step 2 to choose highlights.
From the entries collected in Step 1, identify the 4–8 most significant changes to feature as highlights. If fewer than 4 significant changes exist, include all available significant changes rather than padding the list with minor items. Good candidates:
Exclude from highlights (they still belong in the full list):
Based on the entries from Step 2, write the highlights section — the text that goes between the ## X.Y.0 heading and the full entry list. This is what you will pass to the write script. Follow the Writing style rules below.
The highlights text should contain only these parts, in order:
> _..._Do not include the ## X.Y.0 heading — the script adds that.
The default format is:
> _Tagline phrase_
Storybook X.Y [intro sentence]:
- 🔣 Highlight one: brief description
- 🔣 Highlight two: brief description
- 🔣 Highlight three: brief description
For releases with 7-8 highlights, a second group of bullets with its own intro sentence is fine (see 10.1.0 example).
Style rules:
> _italics_. It is a short (5–10 word) noun phrase summarising the release theme — no verbs, no "we".Storybook X.Y contains hundreds of fixes and improvements including: for most releases. For a major version, the intro is more impactful (see 10.0.0 example).10.3.0 — a typical release with a single highlight group:
> _Improved developer experience, AI-assisting tools, and broader ecosystem support_
Storybook 10.3 contains hundreds of fixes and improvements including:
- 🤖 Storybook MCP: Agentic component dev, docs, and test (Preview release for React)
- ⚡ Vite 8 support
- ▲ Next.js 16.2 support
- 📝 ESLint 10 support
- 〰️ Addon Pseudo-States: Tailwind v4 support
- 🔧 Addon-Vitest: Simplified configuration - no more setup files required
- ♿ Numerous accessibility improvements across the UI
10.1.0 — a release with multiple highlight groups:
> _Easier to setup, more accessible to use_
Storybook 10.1 focuses on two key improvements: installation and accessibility:
- ♿ UI overhaul to fix hundreds of a11y issues
- 🧑💻 CLI overhaul for faster, more reliable install
- ✅ Checklist-based onboarding guide for new users
The release also contains compatibility fixes for:
- 🅰️ Angular 21 support
- 🦀 RSbuild install support in CLI
- ⚡️ Preact support for Vitest addon
Finally, it contains two highly-requested experimental features:
- 📋 Component manifest for Storybook MCP
- ⚛️ Improved JSX code snippets for React
10.0.0 — a major release with a more impactful intro (no > tagline, two-sentence intro):
Storybook 10 contains one breaking change: it's ESM-only. This simplifies our distribution and reduces install size by 29% while simultaneously unminifying dist code for easier debugging.
It also includes features to level up your UI development, documentation, and testing workflows:
- 🧩 Module automocking for easier testing
- 🏭 Typesafe CSF factories Preview for React
- 💫 UI editing and sharing optimizations
- 🏷️ Tag filtering exclusion and configuration for sidebar management
- 🔀 Next 16, Vitest 4, Svelte async components, and more!
Pass the highlights text to the write script via stdin. The script will call the summary script internally, combine the full entry list with your highlights, and write the complete section to CHANGELOG.md — inserting at the top or overwriting any existing section for this version.
node .agents/skills/minor-release/write-minor-changelog-section.ts [version] << 'HIGHLIGHTS'
> _Your tagline here_
Storybook X.Y contains hundreds of fixes and improvements including:
- 🔣 Highlight one
- 🔣 Highlight two
HIGHLIGHTS
Use --dry-run to preview the composed section before writing:
node .agents/skills/minor-release/write-minor-changelog-section.ts --dry-run << 'HIGHLIGHTS'
...
HIGHLIGHTS
[HINT] Download the complete skill directory including SKILL.md and all related files