What problem does it solve? Writing Python code that stays consistent with modern standards and repository conventions is hard to enforce manually. This Skill ensures every Python change follows current syntax, typing, formatting, and testing practices before it lands in a repository. ## Core Features & Use Cases - Modern Python Standards: Targets Python 3.14+ syntax with built-in generics, X | None unions, pathlib, and NumPy-style docstrings. - Quality Gates: Formats and lints with Ruff, type-checks with zmypy (falling back to mypy), and adds pytest tests for non-trivial changes. - Repository Awareness: Defers to existing repository configuration and instructions when they conflict with the defaults. - Use Case: Ask the assistant to add a new data-processing module to your project, and it will produce typed, documented, linted, and tested code that matches your repo's conventions. ## Quick Start Use the python skill to write a typed utility module for parsing CSV files and add pytest coverage for it.