commit-message-generator
Original:🇺🇸 English
Translated
1 scriptsChecked / no sensitive code detected
Generate conventional commit messages based on git diff analysis. Use when you need to create well-structured commit messages following conventional commit format.
1installs
Sourceaig787/agpm
Added on
NPX Install
npx skill4agent add aig787/agpm commit-message-generatorTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Commit Message Generator
Instructions
When generating commit messages, follow these guidelines:
1. Analyze the Git Diff
- Examine all staged and unstaged changes
- Identify the main purpose of the changes
- Look for breaking changes, new features, or bug fixes
2. Choose the Appropriate Type
Use one of these conventional commit types:
- : New feature or enhancement
feat - : Bug fix or regression
fix - : Documentation changes only
docs - : Code style changes (formatting, missing semicolons, etc.)
style - : Code refactoring without functional changes
refactor - : Adding or updating tests
test - : Maintenance tasks, dependency updates, etc.
chore - : Performance improvements
perf - : CI/CD configuration changes
ci - : Build system or dependency changes
build
3. Format the Commit Message
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]Rules:
- Keep the description under 72 characters
- Use imperative mood ("add" not "added" or "adds")
- Include scope if the change affects a specific module/component
- Add "BREAKING CHANGE:" footer for breaking API changes
- Reference issues with "Closes #123" or "Resolves #456"
4. Examples
Simple Feature
feat(cli): add --verbose flag for detailed output
Adds a new verbose flag that displays detailed progress information
during installation and update operations.Bug Fix
fix(cache): resolve worktree cleanup issue on Windows
The worktree cleanup logic was failing on Windows due to path
separator mismatches. This fix ensures proper path normalization.
Closes #123Breaking Change
feat(api): change dependency resolution return type
The resolve_dependencies function now returns a Result<Dependencies>
instead of (Dependencies, Warnings) for better error handling.
BREAKING CHANGE: This changes the function signature and requires
callers to handle the Result type.5. Special Cases
- For multiple unrelated changes, create multiple commits
- For WIP (work in progress), use "WIP:" prefix
- For revert commits, use "revert: <original commit message>"
- For merge commits, use "Merge branch 'feature-branch'"
Usage
- Stage your changes with
git add - Run this skill to analyze the changes
- Review and edit the generated commit message if needed
- Commit with
git commit -m "<message>"
Tips
- Focus on what the change does, not how it was implemented
- Be specific but concise in the description
- Consider future readers when writing the message
- Link to related documentation or issues when relevant