A slash command for Claude Code to perform (a) commit following the conventional style.
1---2allowed-tools: Bash(git add:*), Bash(git status:*), Bash(git commit:*)3description: Create a git commit4---56## Context78- Current git status: !`git status`9- Current git diff (staged and unstaged changes): !`git diff HEAD`10- Current branch: !`git branch --show-current`11- Recent commits: !`git log --oneline -10`1213## Your task1415Review the existing changes and then create a git commit following the conventional commit format. If you think there are more than one distinct change you can create multiple commits.