writing-changesets
Installation
SKILL.md
Writing Changesets
Create a changeset file to document user-facing changes for release.
When to Use
Add a changeset when making changes that affect consumers:
- Adding new lexicons
- Modifying existing lexicon schemas (breaking or non-breaking)
- Changing TypeScript type exports
- Renaming any exported constants, types, or functions
- Modifying generation scripts that affect exported code
- Any change that requires a version bump or affects package consumers
Skip changesets for internal changes (build scripts, documentation only).
Format
Related skills