Agent Skills
› elisaterumi-ai/agent-skills-in-practice
› commit-message-generator
commit-message-generator
GitHub用于生成标准化、符合最佳实践的提交信息。通过分析代码变更目的和影响,采用祈使语气和约定式格式(如 type(scope): description),辅助开发者编写清晰准确的 Git 提交记录。
Trigger Scenarios
编写新的 Git 提交信息
优化或规范化现有的提交描述
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


