# CLAUDE.md §4 / ADR-0001: `scripts/check.py` is the single source of truth for the quality
# gate. This Makefile is a convenience only; on the primary dev box `make` is absent and the
# gate is run directly as `python scripts/check.py` (or `uv run python scripts/check.py`).
.PHONY: check
check:
	python scripts/check.py
