Commit message generator
Skill elisaterumi-ai/agent-skills-in-practice/examples/commit-message-generator
Learn what AI skills are and how to design, structure, and use them in real-world agent systems.
npx -y skills add elisaterumi-ai/agent-skills-in-practice --skill commit-message-generatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Generates standardized and meaningful commit messages following best practices. Use when writing or improving commit messages.
SKILL.md
0.7 KB, as published. Nobody here has run it
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