Agent Skills
› elisaterumi-ai/agent-skills-in-practice
› commit-message-generator
commit-message-generator
GitHub根据代码变更生成符合规范的标准化提交信息,包括类型、作用域和描述。
Trigger Scenarios
需要生成 Git commit message
优化现有 commit message
Install
npx skills add elisaterumi-ai/agent-skills-in-practice --skill commit-message-generator -g -y
SKILL.md
Frontmatter
{
"name": "commit-message-generator",
"description": "Generates standardized and meaningful commit messages following best practices. Use when writing or improving commit messages."
}
Instructions
When generating a commit message:
- Understand the purpose of the changes
- Identify the main impact
- Use concise and clear language
- Prefer imperative tone (e.g., "Add", "Fix", "Update")
- Optionally include additional details
Output Format
type(scope): short description
- bullet points explaining changes (optional)
Examples
feat(auth): add login with Google
fix(api): handle null response in user endpoint
refactor(ui): simplify navbar component
Version History
- 281cc81 Current 2026-07-24 16:49


