con un clic
release-notes
Generate release notes and prepare the next release for EagleEye
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Generate release notes and prepare the next release for EagleEye
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
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
Basado en la clasificación 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).