Commit creator
A collection of practical AI agent skills for app development and code workflows.
npx -y skills add lteawoo/skills --skill commit-creatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
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.md
1.3 KB, as published. Nobody here has run it
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
typevalues: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 conflictsfeat: improve duplicate-upload UX flowrefactor: clean up upload exception handling flow
When generating the real output, the summary line should still be written in Korean.