git-flow
Installation
SKILL.md
Git Flow Best Practices (2026)
Workflow Choice
| Strategy | When | Verdict |
|---|---|---|
| Trunk-based (direct main) | Solo dev, prototypes, strong CI | OK if you have automated tests |
| GitHub Flow (feature branch → PR → merge → delete) | Teams, OSS, code review | ✅ Default |
| Git Flow (develop/release/hotfix) | Heavy release cycles | ❌ Outdated for most projects |
fuse-commit-pro default: GitHub Flow.
Branch Naming Convention
Format: <type>/<scope-or-summary> (kebab-case).