원클릭으로
release-notes
Generate release notes and prepare the next release
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate release notes and prepare the next release
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Compare branch against main and open a pull request via gh CLI
Validate project documentation against actual implementation
Generate tests following the project's existing conventions
Automatically determine minimum requirements for consuming the library
Verify architectural consistency and dependency rules
| name | release-notes |
| description | Generate release notes and prepare the next release |
Generate release notes and prepare the next release.
When invoked:
Detect current version from:
kotlin/jujubasvg/version.properties (property VERSION)flutter/jujuba_svg/pubspec.yaml (field version)Get latest Git tag:
git tag --sort=-v:refname | head -1
Analyze unreleased changes:
git log <latest-tag>..HEAD --oneline
Categorize commits:
| Bump | Patterns |
|---|---|
| Major | breaking, BREAKING CHANGE |
| Minor | feat |
| Patch | fix, docs, chore, refactor, test |
Determine next semantic version based on categorized commits.
Update version file (increment in version.properties or pubspec.yaml).
Create or update CHANGELOG.md:
## X.Y.Z
### Features
- Added ...
### Fixes
- Fixed ...
### Documentation
- Updated ...
Generate a release summary (version, date, highlights).
Prompt the user to:
git commit
git tag v<version>
git push && git push --tags
Verify publishing metadata:
kotlin/jujubasvg/build.gradle.kts for mavenPublishing blockflutter/jujuba_svg/pubspec.yaml for publish configuration