uv-run
Installation
SKILL.md
UV Run
Run Python scripts with uv - no manual venv activation needed.
Core Capabilities
- Direct execution:
uv run script.pyhandles environment automatically - Temporary dependencies:
uv run --with requests script.pyfor one-off needs - Inline dependencies: PEP 723 metadata blocks for self-contained scripts
- Ephemeral tools:
uvx toolruns CLI tools without installation
Essential Commands
Running Scripts
# Run script (uv manages environment automatically)
uv run script.py