What problem does it solve? Django teams often ship pull requests or deployments without systematically checking migrations, test coverage, security vulnerabilities, and production settings, leading to broken releases and exposed configurations. ## Core Features & Use Cases - Twelve-Phase Verification Pipeline: Sequentially checks environment, code quality (mypy, ruff, black, isort), migrations, tests with coverage targets, security scans (pip-audit, bandit, safety), performance, static assets, configuration, logging, API schema, and diff review. - Structured Reporting: Produces a standardized verification report with pass/fail status per phase, coverage breakdowns, and a final deploy recommendation. - CI Integration: Includes a ready-to-adapt GitHub Actions workflow that runs linting, security scans, and pytest with coverage on every push or pull request. - Use Case: Before merging a feature branch with new Django models, run the verification loop to confirm migrations exist, coverage stays above 80%, no vulnerable dependencies were introduced, and DEBUG is disabled in production settings. ## Quick Start Run the Django verification loop on this project and report any failing phases before I open a pull request.