一键导入
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).