What problem does it solve? Python workflows often mix pip, python, and tool-specific commands inconsistently, causing broken environments and dependency conflicts. This Skill enforces uv as the single tool for all Python package management and command execution. ## Core Features & Use Cases - Mandatory Command Wrapping: Translates every Python invocation (python, pytest, dbt) into uv run or uvx equivalents. - pip Replacement Rules: Maps pip commands like pip install and pip freeze to uv add, uv pip install, and uv pip freeze. - uv run vs uvx Guidance: Distinguishes project tools that import your modules (uv run) from external utilities like linters and formatters (uvx). - Use Case: When setting up a dbt project, the Skill ensures you run uv add dbt-snowflake and uv run dbt run instead of pip and bare dbt calls. ## Quick Start Ask the assistant to install pytest and run your test suite, and it will use uv add and uv run automatically.