django
Installation
SKILL.md
Django Framework Guide
Applies to: Django 5+, Django REST Framework, Django Channels Language: Python 3.10+
Core Principles
- Batteries Included: Leverage Django's built-in features before adding third-party packages
- DRY: Don't Repeat Yourself -- use abstract models, mixins, and shared utilities
- Fat Models, Thin Views: Keep business logic in models and services, not views
- Explicit Over Implicit: Use clear URL patterns, explicit imports, named relationships
- Security by Default: CSRF, XSS protection, SQL injection prevention are built in