Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill changelog-management명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | changelog-management |
| description | > Use when this capability is needed. |
This skill provides a comprehensive approach to managing this project's
CHANGELOG.md file. It merges the efficiency of automated git analysis with the
high-quality formatting standards of "Keep a Changelog" and helps automate
Semantic Versioning.
docs:, test:, refactor:,
chore:, etc.) that do not impact the user-facing behavior of the software.Added for new features. (feat:)Changed for changes in existing functionality. (change:)Performance for performance improvements. (perf:)Deprecated for soon-to-be-removed features. (deprecate:)Removed for now-removed features. (remove:)Fixed for any bug fixes. (fix:, bug:)Security in case of vulnerabilities. (security:)BREAKING CHANGE: ...) and will lead to a MAJOR version bump.refactor: commits may affect public APIs. If a refactor
changes user-facing behavior or APIs, recategorize it accordingly.x.0.0): If any commit introduces a BREAKING CHANGE.1.x.0): If Added commits exist (new features).1.2.x): If only Fixed, Security, or other minor Changed
commits exist.version field
in moon.pkg.json to match the new version number.Each MoonBit package maintains its own version and changelog:
moon.pkg.json contains a "version" fieldCHANGELOG.md in the package directorymoon.mod.json version is for library releases (separate concern)When updating a package changelog:
CHANGELOG.md"version" in moon.pkg.json to matchmoon.mod.json) unchanged unless releasing the libraryExample package structure:
event-graph-walker/
├── moon.mod.json # Module version (library release)
├── rle/
│ ├── moon.pkg.json # "version": "0.3.0"
│ └── CHANGELOG.md # ## [0.3.0] - 2026-01-29
├── text/
│ ├── moon.pkg.json # "version": "0.1.0"
│ └── CHANGELOG.md # ## [0.1.0] - ...
"Generate a changelog for commits since the last release and suggest the next version number.""Draft a new changelog section from the commits on 'develop' since the 1.2.0 tag and tell me what the next version should be.""Generate a changelog including refactor and test changes for a developer release."Prompt: "Generate a changelog from commits since v1.2.3 and suggest the next version."
Generated Output:
Based on the changes, I suggest the next version be 1.3.0.
Here is the draft for your
CHANGELOG.md:## [1.3.0] - 2026-01-26 ### Added - Team Workspaces: You can now create separate workspaces for different projects and invite team members to collaborate. ### Fixed - Resolved an issue that prevented large images from uploading correctly.
Converted and distributed by TomeVault — claim your Tome and manage your conversions.