commit
Automates the process of analyzing diffs and creating standardized, conventional commit messages.
Install
mkdir -p .claude/skills/commit-chnu-kim && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/17416" && unzip -o skill.zip -d .claude/skills/commit-chnu-kim && rm skill.zipInstalls to .claude/skills/commit-chnu-kim
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 changes using `git status` and `git diff`
- →Reference existing commit styles from `git log`
- →Determine commit type (feat/fix/refactor/style/test/docs/chore)
- →Generate commit messages in Conventional Commits format
- →Validate build with `pnpm build`
- →Stage and commit changes, excluding sensitive files
How it works
The skill analyzes changes, determines the commit type, generates a Conventional Commits message, validates the build, and then stages and commits the changes.
Inputs & outputs
When to use commit
- →Generate commit message for new feature
- →Automate commit documentation
- →Maintain consistent commit history
About this skill
Git 커밋
변경 사항을 분석하고, Conventional Commits 형식의 한국어 커밋 메시지를 자동 생성하여 커밋한다.
동작
반드시 git-committer 에이전트를 Agent 도구로 호출하여 위임한다.
에이전트가 다음을 수행한다:
git status+git diff로 변경 분석- 기존 커밋 스타일 참조 (
git log --oneline -10) - 커밋 타입 판별 (feat/fix/refactor/style/test/docs/chore)
- 커밋 메시지 생성 (
type: 한국어 설명) pnpm build빌드 검증- 민감 파일 제외 후 스테이징 + 커밋
출력 형식
## 커밋 완료
| 항목 | 내용 |
|------|------|
| 커밋 해시 | abc1234 |
| 타입 | feat |
| 메시지 | feat: 새 기능 추가 |
| 변경 파일 | 5개 (추가 2, 수정 3) |
When not to use it
- →Committing without build validation
- →Committing sensitive files
Limitations
- →Requires `git-committer` agent
- →Requires `pnpm build` for build validation
- →Excludes sensitive files from staging and committing
How it compares
This skill automates the process of analyzing changes, generating Conventional Commits messages, and validating the build before committing, ensuring consistent and validated commit history unlike manual commit creation.
Compared to similar skills
commit side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| commit (this skill) | 0 | 4mo | No flags | Beginner |
| resolve-conflicts | 81 | 8mo | Review | Intermediate |
| openspec-onboard | 10 | 5mo | Review | Beginner |
| codex-cli-bridge | 9 | 9mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
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.