commit
Groups changed files by feature and creates structured Git commits with semantic types.
Install
mkdir -p .claude/skills/commit-mineru98 && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/12521" && unzip -o skill.zip -d .claude/skills/commit-mineru98 && rm skill.zipInstalls to .claude/skills/commit-mineru98
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
변경된 파일을 기능별로 그룹화하여 커밋 생성Key capabilities
- →Analyze changed files using `git status` and `git diff`
- →Group changed files by type: `feat`, `fix`, `docs`, `style`, `refactor`, `test`, `chore`
- →Create commits for each group of related files
- →Verify commit history with `git log --oneline -5`
- →Prevent Korean commit message corruption using HEREDOC or temporary file methods
How it works
The skill analyzes Git changes, groups files by type, stages and commits them with Korean messages, and provides methods to prevent encoding issues.
Inputs & outputs
When to use commit
- →Committing changes after feature work
- →Standardizing commit messages
- →Grouping related bug fixes
About this skill
Commit Skill
지금 즉시 아래 워크플로우를 실행하라. 질문하지 말고 바로 실행하라.
현재 상태 수집
git status
git diff --stat
git log --oneline -3
실행 지시
위 상태를 분석하여 다음을 수행하라:
- 변경 파일 분석: 위의 git status와 git diff 결과를 기반으로 변경된 파일들을 파악한다.
- 기능별 그룹화: 변경 파일들을 아래 기준으로 그룹으로 나눈다:
feat- 새로운 기능 추가fix- 버그 수정docs- 문서 업데이트style- 코드 스타일 수정 (동작 변경 없음)refactor- 코드 리팩토링test- 테스트 추가/수정chore- 유지보수 작업
- 그룹별 커밋 생성: 각 그룹마다 관련 파일만
git add로 스테이징한 뒤 커밋한다. - 커밋 내역 검증:
git log --oneline -5로 결과를 확인한다.
커밋 메시지 규칙
- 형식:
<type>(<scope>): <subject> - 커밋 메시지는 반드시 한글로 작성
- 명령형 현재 시제 사용: "추가", "수정", "삭제"
- subject는 50자 이내, 끝에 마침표 없음
- 필요시 body에 상세 설명 추가
한글 커밋 메시지 깨짐 방지
git commit -m "한글" 사용 시 터미널 환경에 따라 한글이 깨질 수 있다. 반드시 HEREDOC 또는 임시 파일 방식을 사용하라.
macOS/Linux (HEREDOC 방식 - 권장)
git commit -m "$(cat <<'EOF'
feat(auth): JWT 로그인 및 미들웨어 추가
- JWT 토큰 생성 구현
- 보호된 라우트용 인증 미들웨어 추가
Co-Authored-By: Codex
EOF
)"
Windows PowerShell (임시 파일 방식)
PowerShell에서는 -m 옵션으로 한글 전달 시 인코딩 문제가 발생한다. UTF-8 임시 파일을 사용하라:
chcp 65001
# commit_msg.txt에 UTF-8로 메시지 작성 후:
git commit -F commit_msg.txt
Remove-Item commit_msg.txt
사용자 힌트: $ARGUMENTS
When not to use it
- →When commit messages are not required to be in Korean
- →When the task is not about grouping changes by feature
- →When not using Git for version control
Limitations
- →It requires commit messages to be in Korean
- →It enforces a specific commit message format
- →It provides platform-specific methods for handling Korean encoding
How it compares
This skill automates the process of grouping changes and creating commits with specific Korean formatting rules, including solutions for encoding issues, which differs from standard `git commit` usage.
Compared to similar skills
commit side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| commit (this skill) | 0 | 3mo | Review | Beginner |
| resolve-conflicts | 81 | 8mo | Review | Intermediate |
| openspec-onboard | 10 | 6mo | Review | Beginner |
| codex-cli-bridge | 9 | 9mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by Mineru98
View all by Mineru98 →You might also like
resolve-conflicts
antinomyhq
Use this skill immediately when the user mentions merge conflicts that need to be resolved. Do not attempt to resolve conflicts directly - invoke this skill first. This skill specializes in providing a structured framework for merging imports, tests, lock files (regeneration), configuration files, and handling deleted-but-modified files with backup and analysis.
openspec-onboard
studyzy
Guided onboarding for OpenSpec - walk through a complete workflow cycle with narration and real codebase work.
codex-cli-bridge
alirezarezvani
Bridge between Claude Code and OpenAI Codex CLI - generates AGENTS.md from CLAUDE.md, provides Codex CLI execution helpers, and enables seamless interoperability between both tools
skill-sync
KyleKing
Syncs Claude Skills with other AI coding tools like Cursor, Copilot, and Codeium by creating cross-references and shared knowledge bases. Invoke when user wants to leverage skills across multiple tools or create unified AI context.
github-workflow-automation
ruvnet
Advanced GitHub Actions workflow automation with AI swarm coordination, intelligent CI/CD pipelines, and comprehensive repository management
git-advanced-workflows
wshobson
Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.