# Claude Custom Instructions ## Git Workflow Every time you complete a task or make changes to files, you MUST automatically commit those changes to Git before waiting for the user's next prompt. ### Instructions: 1. Always run `git add .` to stage your changes. 2. Run `git commit -m "Auto-commit: [brief description of what was changed]"` 3. Do not ask for permission to commit, just perform the git commit automatically.