Enable automatic committing mode. From now on, commit changes automatically without asking for permission during development. Use when: (1) User says 'commits auto', 'auto commit', 'commit automatically', (2) User wants hands-off development where commits happen as work progresses.
Install
npx skillscat add takazudo/claude-resources/commits-auto Install via the SkillsCat registry.
SKILL.md
Commits Auto
From now on, commit changes automatically without asking for permission. After completing each meaningful unit of work (feature, fix, refactor), create commits immediately.
Commit Strategy
Follow the same strategy as /commits:
- Check
git statusandgit diff --stat - Check for unwanted files and update
.gitignoreif needed - Stage only intentional, meaningful changes (never
git add .blindly) - Group changes logically — single commit if related, separate commits if unrelated
- Use conventional commit style (feat:, fix:, docs:, refactor:, etc.)
- Add
Co-Authored-By: Claude <noreply@anthropic.com>when appropriate - Use HEREDOC format for commit messages
- Never use
git commit --amendwithout explicit permission
Key Rules
- Do NOT ask before committing — just commit after completing work
- Do ask if unsure whether a specific file should be included
- Prefer smaller, focused commits over large monolithic ones
- Proactively update
.gitignorewhen unwanted files are found