chat-commit-message
2
总安装量
2
周安装量
#70314
全站排名
安装命令
npx skills add https://github.com/jeheskielsunloy77/agent-skills --skill chat-commit-message
Agent 安装分布
opencode
2
antigravity
2
claude-code
2
github-copilot
2
codex
2
kimi-cli
2
Skill 文档
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.