# Activate the venv:
source .venv/bin/activateAlways activate the existing virtual environment before running Python tasks like:
ruff format
ruff check
pyright
pytest# To add runtime Python dependencies:
uv add packagename
# To add development dependencies:
uv add --group dev packagename
# To install/update the venv:
uv syncThis is a greenfield project. Do not preserve any backwards compatibility.
When completing a task, always run the following commands and resolve any issues:
ruff format
ruff check --fix
pyright
pytest