Analyze all staged changes and create a well-formatted conventional commit.
- •Run
git statusto see what's staged - •Run
git diff --stagedto understand the changes - •Run
git log --oneline -5to match the repo's commit style - •Determine: type (feat/fix/refactor/etc), scope, and subject
- •Create the commit with a descriptive message and Co-Authored-By trailer
- •Verify with
git log -1