Create a new Git Flow hotfix branch from main for emergency production fixes
/plugin marketplace add huangdijia/claude-code-plugins/plugin install huangdijia-git-plugins-git-2@huangdijia/claude-code-plugins<hotfix-name># Git Flow Hotfix Branch Create emergency hotfix branch: **$ARGUMENTS** ## Current Repository State - Current branch: !`git branch --show-current` - Git status: !`git status --porcelain` - Latest production tag: !`git describe --tags --abbrev=0 origin/main 2>/dev/null || echo "No tags on main"` - Main branch status: !`git log main..origin/main --oneline 2>/dev/null | head -3 || echo "No remote tracking for main"` - Commits on main since last tag: !`git log $(git describe --tags --abbrev=0 origin/main 2>/dev/null)..origin/main --oneline 2>/dev/null | wc -l | tr -d ' '` ## Task Create a ...