git-commit-pro
Installation
SKILL.md
Git Commit Pro
Overview
Generate well-structured git commit messages by analyzing staged changes. Follows Conventional Commits format and produces messages that explain what changed and why.
Instructions
When a user asks you to commit, write a commit message, or improve an existing commit message, follow these steps:
Step 1: Inspect the changes
# See what is staged
git diff --cached --stat
# See full staged diff
git diff --cached
Related skills