| name | commit-creator |
| description | Generate Korean Conventional Commit messages from a change summary or diff. Use it when you need to write, refine, or propose commit message candidates. |
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
- Format:
<type>: <one-line summary>
- Allowed
type values: feat|fix|refactor|test|docs|chore
- Write the summary in Korean, concise style, at roughly 50 characters or fewer.
- Add a body when needed:
- what changed
- why it changed
- cautions or migration notes
- Use factual phrasing without exaggeration.
- 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.