python-uv-project-setup
Installation
SKILL.md
Python uv Project Setup
Overview
Use uv for environments, dependency management, and command execution. Core principle: always install and run through uv, not pip/python directly.
Non-Negotiable Rules
- Install dependencies with
uv add(neverpip install). - Run commands with
uv run(never directpythonorpytest).