Django Query Plan Reading
Read and compare Django/PostgreSQL query execution plans using QuerySet.explain(), EXPLAIN, EXPLAIN ANALYZE, scan types, joins, estimates, actual timing, buffers, and row counts. Use when one SQL query dominates Django latency or when an index, ORM rewrite, pagination change, or materialized view needs proof from a query plan.
Djangov0.1.0MITdjangodatabasequery-planspostgresperformance
Install
npx skills add LVTD-LLC/skills --skill django-query-plan-readingFrom `SKILL.md`
Use this skill when the expensive unit is a specific SQL statement or queryset. The goal is to explain why the database is doing work, not to guess from the ORM code.