From 80b18cf0bbef06512752c8c43842c53a4348f07f Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Sun, 10 Aug 2025 11:57:52 -0400 Subject: [PATCH] Add Claude instructions to prevent attribution in commit messages --- CLAUDE.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..f16a203 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,22 @@ +# Claude Instructions + +## Commit Messages +- NEVER add Claude attributions like "🤖 Generated with Claude Code" to commit messages +- Keep commit messages focused on the actual changes and their purpose +- Use conventional commit format when appropriate +- Be concise but descriptive about what was changed and why + +## Code Style +- Follow existing code conventions in the project +- Use appropriate linting tools (black, ruff, etc.) when available +- Maintain consistent naming and formatting + +## Testing +- Run existing tests before committing when available +- Write tests for new functionality when appropriate +- Verify changes work as expected + +## Documentation +- Update relevant documentation when making significant changes +- Keep README files current with new features or setup changes +- Document any new environment variables or configuration options \ No newline at end of file