원클릭으로
md-commit
Git commit using standard layout
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Git commit using standard layout
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | md-commit |
| description | Git commit using standard layout |
| disable-model-invocation | false |
Create a git commit. The context for what needs committing should be clear from the existing conversation. Follow the conventions and template below:
Use commitlint keywords: build chore ci docs feat fix perf refactor revert style test
If we're operating on a known ticket ID, use the format "feat: MYTICKET-123 here's my commit title".
Where below I refer to "you" or "Claude", that means you the agent. "User" or "me" means me.
Wrap output at 72 columns. Do NOT attempt to wrap lines yourself — the ,wrap-message command handles this. See the commit instructions below for details.
TONE: never use superlatives or subjective adjectives to describe changes. No "comprehensive", "robust", "elegant", "streamlined", "enhanced", etc. Stick to plain factual descriptions. Write "add tests for X" not "add comprehensive tests for X". This applies to all sections of the commit message.
<keyword>: <optional ticket> <short summary>
Changes:
- Summarise what changed — don't reproduce the diff.
- Aim for 1–3 bullets. More than 3 is usually too granular
unless it's a genuinely large change.
- Don't list every function rename, every file touched, or
every small edit. Group related changes into one bullet.
- Name specific functions/files only when that's the point
of the change (e.g. "rename fetchUser to getUser").
Context:
- Why we're making the change: the goal and any key takeaways from our chat.
Review:
- Keywords to, where appropriate, tell a reviewer or future reader about the
change to help them understand it. You should include many items when there are
multiple things to say, but don't go very granular on tiny changes.
- COV: what is tested and what isn't. Always include this.
- RISK: any risk we're introducing with this change or associated with this
change.
- MISSING: anything deliberately missing.
- DECISION: any key decision that was made, eg. a tradeoff or design decision.
- LATER: follow-up tasks that will or may be required.
- REFACTOR: where we know we're introducing something that will want
refactoring.
Prompts:
- "This section includes verbatim quotes from the user."
- "Start with the initial prompt(s) that the user provided that led to this work item."
- "Include all quotes from the user verbatim (but wrapped), and in chronological order".
- "If the user was responding to your question (or vice versa), include the question
and answer as a nested bullet. See example below"
If the prompts were part of a question/answer, then include them like this:
Prompts: ...
Prompts: ...
IMPORTANT: You MUST run ,wrap-message and show its output. Do NOT show your own draft to the user — the LLM cannot reliably wrap text. Follow these exact steps in order:
Compose your draft commit message with NO attempt at wrapping — just write natural-length lines.
Wrap and commit in a single command using a heredoc:
,wrap-message <<'DRAFT' | git commit -F -
your message here
DRAFT
This both wraps the message and commits it in one step. The wrapped message will be visible in the command output.
If the user wants changes after seeing the commit, amend by
repeating from step 1 with git commit --amend -F - instead.
Do NOT skip any of these steps. Do NOT show the user text you composed yourself — only show the output of ,wrap-message.