원클릭으로
release-notes
Generate release notes and prepare the next release for EagleEye
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate release notes and prepare the next release for EagleEye
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Verify architectural consistency and dependency rules in EagleEye
Validate EagleEye documentation matches actual implementation
Generate tests following project conventions
Determine minimum requirements to consume the EagleEye library
Review an EagleEye pull request checking architecture, tests, docs, and completeness
Run the EagleEye build and tests
| name | release-notes |
| description | Generate release notes and prepare the next release for EagleEye |
| trigger | when the user asks to prepare a release, bump version, or generate release notes |
When invoked:
Detect current version from pubspec.yaml:
version: field (e.g., 2.0.2).Get the latest Git tag:
git tag --sort=-v:refname | head -1
Analyze unreleased changes:
git log <latest-tag>..HEAD --oneline
Categorize commits by conventional commit type:
| Category | Keywords |
|---|---|
| Major | breaking, BREAKING CHANGE |
| Minor | feat, feature |
| Patch | fix, docs, chore, refactor, test, changelog |
Determine next semantic version based on the highest category found.
Update version in pubspec.yaml:
version: field with the new version.Create or update CHANGELOG.md:
## X.Y.Z
### Features
- Added ...
### Fixes
- Fixed ...
### Documentation
- Updated ...
Generate a release summary with:
Prompt the user to:
git commit -m "Bump version to X.Y.Z"
git tag vX.Y.Z
git push && git push --tags
Verify publishing metadata:
pubspec.yaml has homepage, description, and valid version.publish_to: none).