git-commit-message
SKILL.md
Create a commit message summarizing the changes just made. Only take staged changes into account.
Scan for what is staged
Use the context to construct a good message but make sure to only address the scope that is currently staged in git.
List files that are staged (in the index): git diff --cached --name-only
Show the full diff of staged changes: git diff --cached