warisskill-workflows-git
Installation
SKILL.md
Git Workflow
Branching strategy: GitHub Flow, unless a project dictates otherwise
Default for greenfield/personal projects:
main (protected, always deployable)
├── feature/user-auth → PR → merge to main
└── fix/login-bug → PR → merge to main
mainis always deployable.- Feature/fix branches off
main, namedfeature/<slug>orfix/<slug>. - No
developbranch, no release branches — that's GitFlow overhead this scale doesn't need.