A slash command for Claude Code to perform (a) commit(s) following the conventional style.
--- allowed-tools: Bash(git add:*), Bash(git status:*), Bash(git commit:*) description: Créer un commit git --- ## Contexte - Statut git actuel: !`git status` - Diff git actuel (modifications stagées et non stagées): !`git diff HEAD` - Branche actuelle: !`git branch --show-current` - Commits récents: !`git log --oneline -10` ## Votre tâche Examinez les modifications existantes, puis créez un commit git en suivant le format de commit conventionnel. Si vous pensez qu'il y a plus d'un changement distinct, vous pouvez créer ...