git-commit-helper
npx machina-cli add skill aiskillstore/marketplace/git-commit-helper --openclawGit Commit Helper
Quick start
Analyze staged changes and generate commit message:
# View staged changes
git diff --staged
# Generate commit message based on changes
# (Claude will analyze the diff and suggest a message)
Commit message format
Follow conventional commits format:
<type>(<scope>): <description>
[optional body]
[optional footer]
Types
- feat: New feature
- fix: Bug fix
- docs: Documentation changes
- style: Code style changes (formatting, missing semicolons)
- refactor: Code refactoring
- test: Adding or updating tests
- chore: Maintenance tasks
Examples
Feature commit:
feat(auth): add JWT authentication
Implement JWT-based authentication system with:
- Login endpoint with token generation
- Token validation middleware
- Refresh token support
Bug fix:
fix(api): handle null values in user profile
Prevent crashes when user profile fields are null.
Add null checks before accessing nested properties.
Refactor:
refactor(database): simplify query builder
Extract common query patterns into reusable functions.
Reduce code duplication in database layer.
Analyzing changes
Review what's being committed:
# Show files changed
git status
# Show detailed changes
git diff --staged
# Show statistics
git diff --staged --stat
# Show changes for specific file
git diff --staged path/to/file
Commit message guidelines
DO:
- Use imperative mood ("add feature" not "added feature")
- Keep first line under 50 characters
- Capitalize first letter
- No period at end of summary
- Explain WHY not just WHAT in body
DON'T:
- Use vague messages like "update" or "fix stuff"
- Include technical implementation details in summary
- Write paragraphs in summary line
- Use past tense
Multi-file commits
When committing multiple related changes:
refactor(core): restructure authentication module
- Move auth logic from controllers to service layer
- Extract validation into separate validators
- Update tests to use new structure
- Add integration tests for auth flow
Breaking change: Auth service now requires config object
Scope examples
Frontend:
feat(ui): add loading spinner to dashboardfix(form): validate email format
Backend:
feat(api): add user profile endpointfix(db): resolve connection pool leak
Infrastructure:
chore(ci): update Node version to 20feat(docker): add multi-stage build
Breaking changes
Indicate breaking changes clearly:
feat(api)!: restructure API response format
BREAKING CHANGE: All API responses now follow JSON:API spec
Previous format:
{ "data": {...}, "status": "ok" }
New format:
{ "data": {...}, "meta": {...} }
Migration guide: Update client code to handle new response structure
Template workflow
- Review changes:
git diff --staged - Identify type: Is it feat, fix, refactor, etc.?
- Determine scope: What part of the codebase?
- Write summary: Brief, imperative description
- Add body: Explain why and what impact
- Note breaking changes: If applicable
Interactive commit helper
Use git add -p for selective staging:
# Stage changes interactively
git add -p
# Review what's staged
git diff --staged
# Commit with message
git commit -m "type(scope): description"
Amending commits
Fix the last commit message:
# Amend commit message only
git commit --amend
# Amend and add more changes
git add forgotten-file.js
git commit --amend --no-edit
Reference Files
references/GIT_COMMIT.template.md- Conventional commits format template with types, scopes, and examples
Best practices
- Atomic commits - One logical change per commit
- Test before commit - Ensure code works
- Reference issues - Include issue numbers if applicable
- Keep it focused - Don't mix unrelated changes
- Write for humans - Future you will read this
Commit message checklist
- Type is appropriate (feat/fix/docs/etc.)
- Scope is specific and clear
- Summary is under 50 characters
- Summary uses imperative mood
- Body explains WHY not just WHAT
- Breaking changes are clearly marked
- Related issue numbers are included
Source
git clone https://github.com/aiskillstore/marketplace/blob/main/skills/89jobrien/git-commit-helper/SKILL.mdView on GitHub Overview
Git Commit Helper analyzes staged changes and suggests descriptive, conventional commit messages. It helps you explain why changes were made and ensures messages follow the conventional commits format for consistent project history.
How This Skill Works
The tool examines the staged diff (git diff --staged), infers change context, and outputs a message in the form type(scope): description with an optional body. It supports multi-file commits and highlights where to add rationale or breaking-change notes.
When to Use It
- When you’ve staged changes and need a clear, conventional message
- Before committing, to review the exact changes and craft a precise summary
- For multi-file commits that belong to a single feature or fix
- When you want to enforce standardized commit history across a team
- When your changes include a breaking change and needs explicit signaling
Quick Start
- Step 1: View staged changes with git diff --staged
- Step 2: Generate a commit message based on changes (the tool analyzes the diff and suggests a message)
- Step 3: Commit with the conventional message, e.g., git commit -m "type(scope): description"
Best Practices
- Use imperative mood in the summary (e.g., add feature, fix bug)
- Keep the first line under 50 characters
- Capitalize the first letter
- Avoid ending the summary with a period
- Use the body to explain WHY the change was made, not just WHAT
Example Use Cases
- feat(auth): add JWT authentication
- fix(api): handle null values in user profile
- refactor(database): simplify query builder
- chore(ci): update Node version to 20
- feat(docker): add multi-stage build