python-standards
Installation
SKILL.md
Python Standards
Modern Python with uv + ruff + mypy + pytest. All config in pyproject.toml.
Toolchain
| Tool | Purpose |
|---|---|
| uv | Dependencies + virtual envs (lockfile: uv.lock) |
| ruff | Linting + formatting (replaces black, isort, flake8) |
| mypy | Type checking (strict mode) |
| pytest | Testing + coverage |
# Setup
uv init && uv add <deps> && uv sync
Related skills