Commit Workflow
- •Run
make ci— all checks must pass before proceeding - •Run
git statusto see all changes - •Run
git diffto review staged and unstaged changes - •Run
git log --oneline -5to see recent commit message style - •Stage relevant files (never stage
.env, credentials, or secrets) - •Draft a concise commit message: focus on "why" not "what"
- •Commit with trailer:
code
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- •Run
git statusto verify success
If make ci fails, fix the issues first. Do not skip checks.