/commit
Create git commits with user approval
Create git commits for the changes you made this session. The agent reviews them, groups related files, drafts commit messages, and asks for confirmation.
/commitProcess
Section titled “Process”- Review changes. Runs
git statusandgit diffto understand what changed - Plan commits. Groups related files and drafts commit messages
- Present plan. Shows the proposed commits and asks for confirmation
- Execute. Uses
git addwith specific files (never-Aor.) and creates commits
Key Behavior
Section titled “Key Behavior”- No attribution. You author the commits. No “Co-Authored-By” or “Generated with” lines.
- Imperative mood. Commit messages read “Add feature,” not “Added feature”
- Focused on why. Messages explain why you changed something rather than restating the diff
- Atomic commits. Groups related changes together and splits unrelated ones into separate commits
- Your approval. The agent asks before it commits