Reviews staged file changes and automatically generates an appropriate commit message to commit them. Use when asked to "commit staged changes", "commit what's staged", "commit the staged files", or similar commit requests.
Review staged file changes, auto-generate an appropriate commit message, and commit.
Check staged files
git status --short to list staged filesReview changes in detail
git diff --cached to inspect the full diff of staged filesgit diff --cached --stat to get change statisticsGenerate commit message
$ARGUMENTS is provided, write the message in that language (e.g., "japanese", "ja", "english", "en")Execute the commit
git log -1 --oneline