django-verification
Installation
SKILL.md
Django Verification Workflow
Pre-deployment quality gates for Django 5.x applications.
Verification Steps
1. Migration Check
# Detect missing migrations
python manage.py makemigrations --check --dry-run
# Show migration status
python manage.py showmigrations --list
# Check for conflicts
python manage.py makemigrations --check