with one click
uv-package-management-assistant
python's package managing
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
python's package managing
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Inspect a repository and draft an AGENTS.md file using the standard template, capturing commands, structure, and workflow rules.
Perform structured, actionable code reviews for Python code with clear findings and suggestions.
Add purposeful debug logging to improve observability without changing behavior.
Run the project's formatter, linters, and mypy checks in the required order, fixing issues and managing any needed stub dependencies via uv.
Generate high-quality conventional git commit messages and, with user approval, run the commit. Use when drafting or refining commit messages, validating commit quality, or committing staged work while avoiding noisy histories.
Write Python docstrings following the Google Python Style Guide, using clear sections and examples.
| name | uv-package-management-assistant |
| description | python's package managing |
| alwaysApply | false |
uv for all Python dependency tasks; do not use pip, pip-tools, or poetry.uv add <package>; remove with uv remove <package>.uv sync (or uv sync --all-extras when extras are needed).uv run <script.py> and manage script-specific deps via uv add/remove --script.references/uv_rules.md for full command guidance and script metadata examples.Manage project dependencies
uv add <package>uv remove <package>uv sync (or uv sync --all-extras to include optional deps for development).Run apps and scripts
uv run <script.py> to ensure dependencies are resolved.uv add --script <script.py> <package> or uv remove --script <script.py> <package>.Inline script metadata
uv sync --script <script.py>.Do not
pip install, pip-tools, poetry, or mypy's install-missing-libraries prompts. Stick to uv.references/uv_rules.md: allowed commands, examples, and script metadata template.