reviewing-python-libraries

Installation
SKILL.md

Python Library Review

Quick Health Check (5 min)

git clone https://github.com/user/package && cd package
head -50 pyproject.toml                     # Modern config?
ls tests/ && uv run pytest --collect-only   # Tests exist?
uv run pytest --cov=package | tail -20      # Coverage?
uvx bandit -r src/                          # Security?

Review Dimensions

Installs
82
GitHub Stars
85
First Seen
Jan 24, 2026
reviewing-python-libraries — wdm0006/python-skills