django-verification
Comprehensive pre-deployment verification pipeline for Django projects covering migrations, linting, tests, security, and configuration.
- Runs 12 sequential phases: environment validation, code quality checks (mypy, ruff, black, isort), migration safety, test coverage analysis, security scanning (pip-audit, bandit, gitleaks), and Django-specific configuration verification
- Includes coverage targets by component (models 90%+, views 80%+, overall 80%+) and pre-deployment checklist covering DEBUG mode, SECRET_KEY, ALLOWED_HOSTS, HTTPS, and database integrity
- Provides GitHub Actions CI/CD workflow template for automated verification on push and pull requests with PostgreSQL service integration
- Generates structured verification report with per-phase status indicators and actionable recommendations before staging or production deployment
Django Verification Loop
Run before PRs, after major changes, and pre-deploy to ensure Django application quality and security.
When to Activate
- Before opening a pull request for a Django project
- After major model changes, migration updates, or dependency upgrades
- Pre-deployment verification for staging or production
- Running full environment → lint → test → security → deploy readiness pipeline
- Validating migration safety and test coverage
Phase 1: Environment Check
# Verify Python version
python --version # Should match project requirements
# Check virtual environment
More from affaan-m/everything-claude-code
security-review
Use this skill when adding authentication, handling user input, working with secrets, creating API endpoints, or implementing payment/sensitive features. Provides comprehensive security checklist and patterns.
7.9Kgolang-patterns
Idiomatic Go patterns, best practices, and conventions for building robust, efficient, and maintainable Go applications.
7.4Kcoding-standards
Baseline cross-project coding conventions for naming, readability, immutability, and code-quality review. Use detailed frontend or backend skills for framework-specific patterns.
6.7Kfrontend-patterns
Frontend development patterns for React, Next.js, state management, performance optimization, and UI best practices.
6.6Kbackend-patterns
Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.
6.6Kgolang-testing
Go testing patterns including table-driven tests, subtests, benchmarks, fuzzing, and test coverage. Follows TDD methodology with idiomatic Go practices.
6.1K