# Git Workflow Skill

Enforce a structured git workflow:

## Branch Naming

- `feat/description` — new features
- `fix/description` — bug fixes
- `refactor/description` — code restructuring
- `docs/description` — documentation changes

## Commit Messages

Use conventional commits: `type: description`
Types: feat, fix, docs, test, refactor, chore

## PR Process

1. Create feature branch from devel
2. Make focused changes
3. Write tests
4. Open PR against devel
5. Squash merge after approval
