with one click
release-notes
Generate release notes and prepare the next release for EagleEye
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Generate release notes and prepare the next release for EagleEye
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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).