chat-commit-message
Original:🇺🇸 English
Translated
Write detailed Conventional Commit messages using only the active chat conversation as context. Use when the user asks for commit messages based on discussion history, requests module-scoped commit subjects, or explicitly forbids checking git logs, diffs, or code files.
3installs
Added on
NPX Install
npx skill4agent add jeheskielsunloy77/agent-skills chat-commit-messageTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Chat Commit Message
Workflow
- Read only the current conversation context in the chat window.
- Do not inspect git history, staged changes, repository files, or command output.
- Infer commit from intent described in chat (
type,feat,fix,refactor,docs,test, etc.).chore - Infer commit from module names mentioned in chat. If no module scope is clearly present, use
scope.global - Produce a Conventional Commit subject line in this format:
<type>(<scope>): <short summary> - Add a detailed body explaining what was requested and what was done, based only on chat context.
- Add optional footer lines only when relevant (, issue references, co-authors).
BREAKING CHANGE: ...
Output Rules
- Return plain text only.
- Do not use markdown formatting symbols.
- Keep the message easy to copy and paste into .
git commit - Use English for all user-facing text.
Quality Checklist
- Subject uses Conventional Commit format.
- Scope is module-specific when available; otherwise .
global - Body details are factual and grounded in chat context.
- No claims based on repository inspection.
- No markdown syntax in final output.
Example
feat(crm): add lead activity timeline filters
Implement timeline filtering controls for lead activity views as discussed in the conversation.
Define filter behavior for date range and activity type and align naming with existing CRM module terminology.
Document the expected behavior in the commit body using only conversation-provided context.