What problem does it solve?
This Skill helps you replace slower, fragmented Python setup patterns (pip, venv, ad-hoc installs) with a single consistent workflow for running scripts and managing dependencies.
Core Features & Use Cases
- Run scripts with dependencies: Execute scripts using uv so the right packages are available without manual environment management.
- Ad-hoc dependencies and inline metadata: Add dependencies at run time or declare them inside scripts using inline script metadata for portability.
- Dependency and build support: Initialize scripts with metadata, lock dependencies for reproducibility, and build pure Python packages with uv_build.
Quick Start
Use the uv skill to run a standalone script with declared dependencies by telling your agent: run uv run script.py to automatically install and use the script’s inline dependencies.