test:
    uv run pytest tests/ -q

lint:
    uv run ruff check src/

format:
    uv run ruff format src/ tests/

registry:
    uv run python scripts/generate_registry.py

check: lint test
