commit
Installation
SKILL.md
Gather Context
If the current changes are already known from the conversation context (e.g., you just edited the files), skip these commands. Otherwise, run them to understand the current state:
git status— check current status and untracked filesgit diff HEAD— review all changes
Flag Detection
| Flag | Effect |
|---|---|
--amend |
Amend the last commit instead of creating a new one |
Parse $ARGUMENTS for flags before proceeding. Natural language equivalents: "amend해줘", "직전 커밋에 합쳐줘", "마지막 커밋 수정" → --amend.
Amend (opt-in only)
Skip this section if any of the following is true:
--amendis NOT set
Related skills