| name | create-release-version |
| description | Create or update a release version entry in version.md. Use when drafting a new version, cutting a release, or when the user asks to create or update release notes. |
Create release version
Release note structure
Every version entry in version.md must include at least one of ## Added or ## Changed.
# X.Y.Z
## Added
- short description
## Changed
- short description
# X.Y.Z — Version as H1. Must be the very first line of the block.
## Added — New features. Omit if nothing added.
## Changed — Behavior/UI changes. Omit if nothing changed.
Content guidelines: User-facing changes only. Skip internal refactors unless they affect behavior. One bullet = one line. Keep it short.
Instructions
- Add a new H1 block at the top of version.md (above existing versions).
- Every version needs at least one of
## Added or ## Changed. No empty sections.
- Initial release:
## Added with one sentence describing what the app does. No ## Changed.
- Later releases: use whichever sections apply. One line per change is fine.
Example: initial release
# 0.1.0
## Added
- Initial release. Tag-based file reviewer: play clips, assign tags, rename files.
Example: later release
# 0.61
## Added
- Click empty window to open file picker.
## Changed
- Migrations consolidated into a single initial schema.
File
- version.md — Single file at repo root. Prepend new version blocks; keep older versions below.
- The GitHub Actions release workflow reads the first line (
# VERSION) to determine the release tag.