Create a new Git Flow release branch from develop with version bumping and changelog generation
<version>sonnetgit/# Git Flow Release Branch Create new release branch: **$ARGUMENTS** ## Current Repository State - Current branch: !`git branch --show-current` - Git status: !`git status --porcelain` - Latest tag: !`git describe --tags --abbrev=0 2>/dev/null || echo "No tags found"` - Commits since last tag: !`git log $(git describe --tags --abbrev=0 2>/dev/null)..HEAD --oneline 2>/dev/null | wc -l | tr -d ' '` - Package.json version: !`cat package.json 2>/dev/null | grep '"version"' | head -1 || echo "No package.json found"` - Recent commits: !`git log --oneline -10` ## Task Create a Git Flow release ...
Safely prepare project for public GitHub release by sanitizing files, checking documentation, and validating configuration.
Safely prepare project for public GitHub release by sanitizing files, checking documentation, and validating configuration.
リリースプロセス自動化(CHANGELOG更新、バージョン更新、タグ作成)
Comprehensive release preparation workflow including quality gates, security audit, changelog generation, version bumping, tagging, and publishing
Complete automated release workflow with platform detection (GitHub/GitLab/Bitbucket) and release creation