What problem does it solve? Python projects often rely on fragmented legacy tooling like pip, virtualenv, black, flake8, and mypy, leading to slow workflows and inconsistent configuration. This Skill standardizes project setup and migration around the modern Astral toolchain. ## Core Features & Use Cases - Project Bootstrapping: Create new packages or applications with uv, src/ layout, pyproject.toml, dependency groups, and Makefile targets. - Tool Migration: Migrate existing projects from requirements.txt, setup.py, Poetry, flake8/black/isort, and mypy/pyright to uv, ruff, and ty. - Standalone Scripts: Write single-file scripts with PEP 723 inline metadata so dependencies install automatically at run time. - Use Case: When asked to start a new Python CLI tool, the Skill scaffolds the project with uv init --package, adds typer and rich via uv add, configures ruff and ty, and sets up pytest with 80% coverage enforcement. ## Quick Start Ask the AI to set up a new Python project using modern tooling with uv, ruff, and ty.