mitsuhiko / uv
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/uv && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/1188" && unzip -o skill.zip -d .claude/skills/uv && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/uv/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Use `uv` instead of pip/python/venv. Run scripts with `uv run script.py`, add deps with `uv add`, use inline script metadata for standalone scripts.
0 views
0 installs
Skill Content
--- name: uv description: "Use `uv` instead of pip/python/venv. Run scripts with `uv run script.py`, add deps with `uv add`, use inline script metadata for standalone scripts." --- ## Quick Reference ```bash uv run script.py # Run a script uv run --with requests script.py # Run with ad-hoc dependency uv run python -m ast foo.py >/dev/null # Verify syntax without writing __pycache__ uv add requests # Add dependency to project uv init --script foo.py # Create script with inline metadata ``` ## Inline Script Dependencies ```python # /// script # requires-python = ">=3.12" # dependencies = ["requests"] # /// ``` See [scripts.md](scripts.md) for full details on running scripts, locking, and reproducibility. ## Build Backend Use `uv_build` for pure Python packages: ```toml [build-system] requires = ["uv_build>=0.9.28,<0.10.0"] build-backend = "uv_build" ``` See [build.md](build.md) for project structure, namespaces, and file inclusion.