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.
Install
npx skillscat add jeheskielsunloy77/agent-skills/chat-commit-message Install via the SkillsCat registry.
SKILL.md
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
typefrom intent described in chat (feat,fix,refactor,docs,test,chore, etc.). - Infer commit
scopefrom module names mentioned in chat. If no module scope is clearly present, useglobal. - 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 (
BREAKING CHANGE: ..., issue references, co-authors).
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.