Add policy to never commit helper scripts unless explicitly requested

This commit is contained in:
Russell Ballestrini 2025-10-11 12:59:18 -04:00
parent f8ab0c0490
commit a88ffaef85

View file

@ -73,3 +73,12 @@ Git operations can be destructive to uncommitted work. Always preserve user's wo
- Do not include "🤖 Generated with [Claude Code](https://claude.ai/code)" - Do not include "🤖 Generated with [Claude Code](https://claude.ai/code)"
- Do not include "Co-Authored-By: Claude <noreply@anthropic.com>" - Do not include "Co-Authored-By: Claude <noreply@anthropic.com>"
- Keep commit messages clean and follow the existing repository style - Keep commit messages clean and follow the existing repository style
## HELPER SCRIPTS AND TEMPORARY FILES
**NEVER commit helper scripts or temporary files unless explicitly requested**
- Helper scripts (like append_toc.py, test.py, etc.) are for temporary use only
- Only commit helper scripts if the user explicitly says to commit them
- After using a helper script, delete it from the working directory
- Do not include helper scripts in git commits unless specifically instructed
- Focus commits on actual content changes, not the tools used to make them