commit
스타13
포크2
업데이트2026년 3월 22일 05:56
Generate a conventional commit message from staged changes and commit.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Generate a conventional commit message from staged changes and commit.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when the user asks you to research, evaluate, or compare a programming framework, library, or runtime. Triggers on "research X", "tell me about X framework", "should I use X", "compare X and Y frameworks", "evaluate X".
Proof read a text document
Research a code related problem, approach or library
Explains code with visual diagrams and analogies. Use when explaining how code works, teaching about a codebase, or when the user asks "how does this work?"
| name | commit |
| description | Generate a conventional commit message from staged changes and commit. |
git diff --staged to inspect what is staged. If nothing is staged, run git diff HEAD and inform the user nothing is staged.feat, fix, refactor, chore, docs, test, ci, perf, style, buildsrc/auth/ → auth). Omit scope if changes span many unrelated areas.<type>(<scope>): <summary> — omit parens if no scopeBREAKING CHANGE: <description> if any public API, export, or interface was removed or renamed. Add Closes #<n> if the current branch name contains an issue number.git commit -m "<message>" with the generated message.✔ feat(auth): add OAuth2 token refresh logic
No other output. Do not explain what you did.
| Argument | Behaviour |
|---|---|
--dry-run | Print the proposed message and stop. Do not commit. |
--split | If staged changes touch logically unrelated areas, create multiple commits — one per area — in a sensible order. |
--no-scope | Omit the scope segment regardless of what changed. |
--split before proceeding.--dry-run was passed.