Smart Commit
Installation
SKILL.md
Smart Commit Guidelines
This skill helps the agent generate high-quality commit messages based on project rules.
Core Rules
- Language: MUST be in Korean (한국어). No exceptions.
- Format: Follow Conventional Commits (
type: subject). - Context Aware: content must be based on actual
git diffchanges.
Conventional Commits Types
| Type | Description |
|---|---|
feat |
새로운 기능 추가 |
fix |
버그 수정 |
docs |
문서 수정 |
style |
코드 포맷팅, 세미콜론 누락 등 (비즈니스 로직 변경 없음) |
refactor |
코드 리팩토링 (기능 변경 없음) |
test |
테스트 코드 추가 또는 수정 |
chore |
빌드 업무 수정, 패키지 매니저 설정 등 |