← ClaudeAtlas

coding-python-uvlisted

Use when writing, configuring, debugging, or deploying Python projects that use uv as the package manager, virtual environment manager, Python version manager, or pip replacement. Covers project setup, dependency management, lockfiles, scripts, tools, building, publishing, Docker, CI/CD, authentication, caching, and migration from pip/pip-tools. Baseline is uv 0.10.2 (2026-02-12); the Python-version behaviours in 06-python-versions.md are measured on 0.11.x.
bitranox/bitranox-skills · ★ 1 · AI & Automation · score 57
Install: claude install-skill bitranox/bitranox-skills
# uv - Python Package & Project Manager All documentation files are flat, numbered markdown files. Use the Read tool to load referenced files identified as relevant for full details. --- ## Command-to-Document Quick Reference | Command | What it does | Primary doc | Also see | |--------------------------------------------------|------------------------------------------------------------|---------------------------------|---------------------------------| | `uv init` | Create a new project | `02-projects.md` | | | `uv add` / `uv remove` | Add/remove dependencies | `04-dependencies.md` | `05-resolution.md` | | `uv sync` | Sync environment to lockfile | `02-projects.md` | `04-dependencies.md` | | `uv lock` | Update the lockfile | `04-dependencies.md` | `05-resolution.md` | | `uv run` | Run a command in the project env | `02-projects.md` | `07-tools-and-scripts.md`