AgentSkillsCN

Django

Django

SKILL.md

Django Skill

Use when

  • Models, ORM queries, migrations, views, admin, settings
  • Django REST Framework if present (do not assume)

Operating checklist

  • Confirm app boundaries and where logic should live (models vs services).
  • Watch for N+1 queries; use select_related/prefetch_related.
  • Keep migrations readable; prefer explicit data migrations.
  • Document env vars / settings changes.

Done criteria

  • Migrations reviewed
  • Query performance sanity checked
  • Clear run/test instructions