| name | commits-auto |
| description | Enable automatic committing mode. From now on, commit changes automatically without asking for permission. Use when: (1) User says 'commits auto', 'auto commit', 'commit automatically', (2) User wants hands-off development. |
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 status and git diff --stat
- Check for unwanted files and update
.gitignore if 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 --amend without 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
.gitignore when unwanted files are found