Never include "Claude" or "Anthropic" in commit messages (no Co-Authored-By lines).
Always use uv for Python-related commands. Never invoke .venv/bin/python, .venv/bin/pytest, or bare python/pytest directly.
Examples:
- Run tests:
uv run python -m pytest -v - Run a script:
uv run python examples/news_example.py - Install deps:
uv sync --extra dev