What problem does it solve? Manually reviewing, grouping, and committing scattered repository changes is error-prone and often produces messy commit histories or accidentally committed secrets. This Skill automates the entire staging and commit workflow so every change lands as a clean, logical, atomic commit. ## Core Features & Use Cases - Atomic Grouping: Analyzes git status and groups related files (implementation plus tests, code plus dependencies) into single logical commits. - Secret Protection: Hard-blocks sensitive paths like .env files, private keys, and credential files, and scans staged diffs for tokens and passwords before committing. - Conventional Commits: Generates commit messages following the Conventional Commits v1.0.0 specification with proper types, scopes, and character limits. - Use Case: After a long coding session with a dozen modified files across features, fixes, and docs, invoke the Skill to automatically split them into separate well-formed commits while keeping your .env file safely out of version control. ## Quick Start Ask the agent to commit all pending repository changes as atomic conventional commits.