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: git 커밋 생성 --- ## 컨텍스트 - 현재 git 상태: !`git status` - 현재 git diff (스테이징된 변경 및 스테이징되지 않은 변경): !`git diff HEAD` - 현재 브랜치: !`git branch --show-current` - 최근 커밋: !`git log --oneline -10` ## 당신의 작업 기존 변경 사항을 검토한 다음, 컨벤셔널 커밋 형식에 따라 git 커밋을 생성합니다. 만약 하나 이상의 개별적인 변경 사항이 있다고 생각되면, 다음을 생성할 수 있습니다 ...