What problem does it solve? Django projects often ship with unapplied migrations, failing tests, vulnerable dependencies, or misconfigured production settings. This Skill provides a structured 12-phase verification loop that catches these issues before pull requests, releases, or deployments. ## Core Features & Use Cases - Full Quality Pipeline: Runs environment checks, mypy, ruff, black, isort, and Django's deployment checks in sequence. - Test and Coverage Enforcement: Executes pytest with coverage targets per component (models 90%+, views 80%+, overall 80%+). - Security and Deployment Readiness: Scans dependencies with pip-audit, safety, and bandit, then validates DEBUG, SECRET_KEY, ALLOWED_HOSTS, HTTPS, and HSTS settings. - Use Case: Before merging a feature branch with model changes, run the verification loop to confirm migrations exist, all 247 tests pass, coverage stays above 80%, and no vulnerable dependencies were introduced. ## Quick Start Run the Django verification loop on this project and report any failing phases before I open a pull request.