What problem does it solve?
This Skill provides a centralized, reusable Python environment for running quick, ad hoc scripts without cluttering your system or project-specific virtual environments.
Core Features & Use Cases
- Global Environment Management: Installs and manages a single
uv environment at ~/.uv-global.
- Dependency Installation: Easily add Python packages to the global environment for use in any script.
- Script Execution: Run Python scripts using the global environment and its installed packages.
- Use Case: You need to quickly process a CSV file with
pandas and loguru for logging. Instead of creating a new virtual environment, you use this Skill to add pandas and loguru to the global environment and run your script.
Quick Start
Add the 'requests' package to the global uv environment and then run the script 'my_script.py' using it.