Complete and merge hotfix branch
Automates hotfix completion by updating changelogs, running tests, and merging with git-flow.
/plugin marketplace add fradser/dotclaude/plugin install gitflow@frad-dotclaudeversionhaikufinish-hotfix/Goal: Determine hotfix version from current branch or argument.
Actions:
$ARGUMENTS provided, use it as versiongit branch --show-current (strip hotfix/ prefix)Goal: Run tests before finishing.
Actions:
Goal: Generate changelog from commits.
Actions:
git tag --sort=-v:refname | head -1${CLAUDE_PLUGIN_ROOT}/references/changelog-generation.md${CLAUDE_PLUGIN_ROOT}/examples/changelog.mdchore: update changelog for v$VERSION with Co-Authored-By footerGoal: Complete hotfix using git-flow-next CLI.
Actions:
git flow hotfix finish $VERSION -m "Release v$VERSION"git push origin main develop --tags