Git Commit Workflow
Commit all staged and unstaged changes.
Rules
- •Trigger: ONLY on explicit user approval ("commit" / "feature ok")
- •Format:
git add . && git commit -m "[msg]" - •Message style: Short one-liner, no prefixes, no scopes
- •NO selective adds
- •NO
git log - •NO
git diffbefore or after - •NO Claude signatures or Co-Authored-By
- •NEVER mention other client names in commits or code
Steps
- •Run
git add . && git commit -m "$ARGUMENTS"(if user provided a message) - •If no message provided, write a short descriptive one-liner based on the work done
- •Done. Say nothing extra.