# Commit Creator

> Generate Korean Conventional Commit messages from a change summary or diff. Use it when you need to write, refine, or propose commit message candidates.

- Skill: `lteawoo/commit-creator` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add lteawoo/commit-creator`
- Raw SKILL.md: https://api.skillmd.com/api/skills/lteawoo/commit-creator/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: lteawoo (https://skillmd.com/u/lteawoo)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/lteawoo/commit-creator

---


# Commit Creator

## Purpose
Generate Korean commit messages in Conventional Commits format from a set of changes.

## Inputs
- Change summary (required)
- Affected file list (optional)
- Whether the change is breaking (optional)

## Rules
1. Format: `<type>: <one-line summary>`
2. Allowed `type` values: `feat|fix|refactor|test|docs|chore`
3. Write the summary in Korean, concise style, at roughly 50 characters or fewer.
4. Add a body when needed:
   - what changed
   - why it changed
   - cautions or migration notes
5. Use factual phrasing without exaggeration.
6. If the change spans multiple concerns, propose three candidate messages.

## Output Format
- One recommended message
- Two alternatives
- Optionally, one version with a body included

## Example
Input: Add an overwrite confirmation modal when file upload conflicts occur
Output:
- `fix: add overwrite confirmation modal for upload conflicts`
- `feat: improve duplicate-upload UX flow`
- `refactor: clean up upload exception handling flow`

When generating the real output, the summary line should still be written in Korean.

