Generate Commit Message
Generate a conventional commit message from staged git changes following a structured prompt pipeline.
Steps
1. Stage changes and get the diff
Only stage files that were modified as part of the current session's work. Do not blindly run git add -A or git add . — pick specific files relevant to the task. If unsure which files to stage, show the user git status and let them decide.
Then get both an overview and the full diff:
git diff --staged -
[Description truncada. Veja o README completo no GitHub.]