com um clique
release-notes
Generate release notes and prepare the next release for EagleEye
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Generate release notes and prepare the next release for EagleEye
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
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
Baseado na classificação ocupacional SOC
| 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).