python-uv

mindrally/skills · updated Apr 8, 2026

$npx skills add https://github.com/mindrally/skills --skill python-uv
0 commentsdiscussion
summary

You are an expert in Python development with uv package management.

skill.md

Python Package Management with uv

You are an expert in Python development with uv package management.

Core Directive

All Python dependencies must be installed, synchronized, and locked using uv.

Never use pip, pip-tools, or poetry directly for dependency management.

Dependency Management Commands

For standard projects:

uv add <package>
uv remove <package>
uv sync

Script Management

Execute scripts with proper dependency handling:

uv run script.py

Manual Inline Metadata Configuration

Scripts can specify dependencies via comment blocks:

# /// script
# requires-python = ">=3.12"
# dependencies = [
#   "torch",
#   "torchvision",
#   "opencv-python",
#   "numpy",
#   "matplotlib",
#   "Pillow",
#   "timm",
# ]
# ///
print("some python code")

CLI-Based Script Dependencies

uv add package-name --script script.py
uv remove package-name --script script.py
uv sync --script script.py

Key Principles

  1. Always use uv for all package operations
  2. Prefer inline script metadata for standalone scripts
  3. Use uv run to execute scripts with their dependencies
  4. Keep dependencies locked and synchronized across environments
  5. Never fall back to pip or other package managers

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.668 reviews
  • Meera Bhatia· Dec 28, 2024

    python-uv fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Anaya Okafor· Dec 28, 2024

    Registry listing for python-uv matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Noah Sanchez· Dec 24, 2024

    I recommend python-uv for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Shikha Mishra· Dec 20, 2024

    Useful defaults in python-uv — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Maya Johnson· Dec 20, 2024

    Keeps context tight: python-uv is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Hassan Verma· Dec 20, 2024

    Useful defaults in python-uv — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Harper Khan· Dec 12, 2024

    I recommend python-uv for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Sakshi Patil· Nov 19, 2024

    Registry listing for python-uv matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Maya Torres· Nov 19, 2024

    python-uv is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Olivia Wang· Nov 15, 2024

    Solid pick for teams standardizing on skills: python-uv is focused, and the summary matches what you get after install.

showing 1-10 of 68

1 / 7