Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 429 Bytes

File metadata and controls

14 lines (9 loc) · 429 Bytes

Claude Instructions

Commit messages

Never include "Claude" or "Anthropic" in commit messages (no Co-Authored-By lines).

Python tooling

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