This handles the full Django stack from models and ORM queries to authentication and admin interfaces. You'd reach for it when building a production web app that needs database-backed views, user login, or a custom admin panel. The reference guides cover the essentials like query optimization with select_related, both class-based and function-based views, and URL routing patterns. One thing worth noting is the strong emphasis on avoiding N+1 queries and using proper indexing, which honestly saves you from performance headaches down the line. It's comprehensive enough to scaffold a real application but assumes you know Django basics.
npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill django-application