logical-commits
Installation
SKILL.md
Logical Commits
Turn a mixed worktree into a clean sequence of atomic commits.
Workflow
- Inspect the full change set before staging anything.
- Define commit boundaries by behavior or concern, not by file count.
- Order commits so dependencies land first (types/api/schema/helpers before consumers).
- Stage only the exact hunks for one commit.
- Validate that staged commit state is healthy before committing.
- Commit with a precise message.
- Repeat until all intended changes are committed.
1) Inspect First
Run: