What problem does it solve? Messy working directories and tangled commit histories make code review painful and obscure what actually changed. This Skill surveys your git state, groups changes by logical scope, and produces a clean series of atomic conventional commits. ## Core Features & Use Cases - Change Categorization: Groups modified files by type (feat, fix, refactor, docs, style, test, chore) and scope so each commit does one thing. - History Reorganization: Uses soft reset to restage recent commits into logical units without losing work. - Safety Guardrails: Blocks force pushes to main, refuses --no-verify, stashes before destructive operations, and skips secrets like .env files. - Use Case: You have five modified files spanning an auth bug fix, a new UI button variant, and README updates. The Skill proposes three commits — fix(auth), feat(ui), docs — waits for your confirmation, then stages and commits each group with conventional messages. ## Quick Start Ask the assistant to clean up your uncommitted changes and organize them into well-scoped conventional commits.