uv-workflow
Installation
SKILL.md
uv Workflow
Use uv as the entrypoint for Python execution and standalone script management.
Core Rules
- Do not run
pythonorpython3as the shell entrypoint. - Translate direct Python commands into the closest
uvform before running them. pythoninsideuv run ...is acceptable becauseuvcontrols interpreter selection and environment setup.- When sandboxed or when cache writes may fail, set
UV_CACHE_DIRto a writable temporary directory before runninguv. - For standalone PEP 723 scripts, let
uvmanage inline metadata. Do not hand-edit metadata blocks.