reviewing-python-libraries

Installation
SKILL.md

Python Library Review

Quick Health Check (5 min)

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

Review Dimensions

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