uv-python-workflow
Installation
SKILL.md
uv Python Workflow
All Python dependency and environment management in this codebase uses uv exclusively.
Package management
- Add dependencies:
uv add <package> - Remove dependencies:
uv remove <package> - Install/sync the current project:
uv sync - Run a command inside the project environment:
uv run <command> - Never use
pip install,pip-compile, or barepython -m venv.
Workspace layout
Projects may be organized as a uv workspace. Code locations managed by dg
do not use uv workspaces — they rely on the dg workspace instead.