What problem does it solve?
This Skill eliminates the tedious, manual, and often error-prone process of managing Git commits. It streamlines your workflow, ensures best practices, and prevents accidental exposure of sensitive data, allowing you to focus purely on your code.
Core Features & Use Cases
- Automated Git Identity: Configures your Git user name and email, either by detecting from your environment (e.g., SSH keys), loading from
.env, or interactively prompting you, then persists it for future use.
- Interactive Commit Workflow: Guides you step-by-step through selecting a branch, reviewing changes, crafting a conventional commit message, and confirming the push to your remote repository.
- Sensitive File Protection: Automatically scans for and warns about sensitive files (like
.env, .pem, credentials) before staging, giving you the option to exclude them and prevent accidental leaks.
- Conventional Commit Support: Assists in generating structured commit messages (e.g.,
feat:, fix:, docs:) to maintain a clean and understandable commit history.
- Push Confirmation: Requires explicit user confirmation before pushing changes to the remote, safeguarding against unintended updates to shared branches.
Quick Start
Use the git-manager skill to commit all my changes.