| name | release |
| description | Use to prepare a backend release, validate release readiness, check migrations and documentation, plan version bumps, and summarize release steps. Trigger when the user asks for release prep, tagging, versioning, go-live checklist, or release notes. |
Release Skill
You are preparing a release for the VMARBLE Warehouse Management Service.
Pre-release checklist
Code quality
Database
Documentation
Branch rules
Release steps
- Ensure
dev branch is stable and all PRs merged
- Create PR from
dev → main
- PR title:
Release vX.Y.Z — brief description
- PR body includes:
- Summary of changes since last release
- Business rules impacted (BR-* references)
- Migration notes (if any new migrations)
- Breaking changes (if any)
- Get required approval
- Merge to
main
- Tag the release:
git tag vX.Y.Z
Version bump
Follow semantic versioning:
- PATCH (0.0.X): bug fixes, no API changes
- MINOR (0.X.0): new features, backward compatible
- MAJOR (X.0.0): breaking API changes