commit
Installation
SKILL.md
Commit
Create git commits with conventional commit messages.
Steps
- Run
git --no-pager diffto review the full changes. - Analyze the changes thoroughly to understand what was modified.
- Create a git commit with a clear, conventional commit message.
Commit Guidelines
Format
- Title: Use conventional commit format (
type: description) - Body: Include brief description linking to the issue
- Language: Always write commits in English
- Newline: Use real newlines in commit message, not
\n - Resolve Issues: If applicable, include "Resolves issue #X" in the body to link the commit to an issue. Skip this if there is no relevant issue.