What problem does it solve? Python projects often suffer from inconsistent style, missing validation, poor concurrency choices, and weak test coverage. This Skill provides a structured, phase-based workflow that enforces modern Python standards from environment setup through testing. ## Core Features & Use Cases - Environment & Dependency Management: Sets up isolated virtual environments with venv or poetry and enforces Python 3.9+ type hints. - API & Application Logic: Builds asynchronous FastAPI endpoints, validates input with Pydantic models, and selects Multiprocessing or AsyncIO based on workload type. - Testing & Code Quality: Runs static analysis with Ruff or Flake8 and writes unit and integration tests with Pytest. - Use Case: When building a new FastAPI microservice, follow the workflow to scaffold the environment, define Pydantic-validated async endpoints, and verify quality with linting and Pytest before release. ## Quick Start Use the python developer skill to review my FastAPI project and bring it in line with PEP 8, type hints, and Pytest coverage.