code-quality
Installation
SKILL.md
Code Quality Review
Review code quality in the directory provided by the user.
Instructions
-
Identify files to review:
- Find all
.pyfiles in the directory - Exclude migrations,
__pycache__, and generated files
- Find all
-
Run automated checks:
uv run ruff check <directory> uv run ruff format --check <directory> uv run pyright <directory> uv run pytest <directory> -v