release
Use when preparing a new version release - generates changelog, updates version, creates tags and GitHub release
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when preparing a new version release - generates changelog, updates version, creates tags and GitHub release
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Use when user wants to create a new validation rule from a Jira ticket (Story type only) - validates ticket, scaffolds rule with tests and Confluence docs
Use when creating a new in-cluster validation rule from scratch - provides rule templates, domain registration, and test scaffolding
Use when user provides a Jira ticket number and wants to implement it - fetches ticket, creates branch, guides implementation, and handles PR creation
基于 SOC 职业分类
| name | release |
| description | Use when preparing a new version release - generates changelog, updates version, creates tags and GitHub release |
Create release notes and prepare for a new version release.
$ARGUMENTS
Review git history since last release to understand what changed:
git log v<last-version>..HEAD --oneline
git diff v<last-version>..HEAD --stat
Follow semantic versioning (MAJOR.MINOR.PATCH):
Update version in pyproject.toml:
[project]
version = "X.Y.Z"
Create a summary of changes organized by category:
Add new section at the top:
## [X.Y.Z] - YYYY-MM-DD
### Added
- Feature 1
- Feature 2
### Changed
- Change 1
### Fixed
- Fix 1
git add pyproject.toml CHANGELOG.md
git commit -m "chore: bump version to X.Y.Z"
git tag -a vX.Y.Z -m "Release version X.Y.Z"
git push origin main --tags
pytest)