Split the current git commit into multiple focused, self-contained, easy to
review commits.
Current commit
git show
Principles
- One concern per commit: e.g. bug fix, feature, refactor, or config change
- Each commit passes all checks: format, lint, typecheck, build, test
- Tests travel with the code they test
- Refactors are never mixed with behavioral changes
- Prefer thin vertical slices, one complete feature end-to-end, over horizontal layers
- No orphaned code: every ad
[Description truncada. Veja o README completo no GitHub.]