Stack:
Django
Django preset
A reasoning guide the onboard flow uses for Django projects. It is a checklist, not a template — detected reality wins.
Signals
manage.pyandsettings.py; apps withmodels.py,views.py,migrations/.- Package manager and test runner inferred from the manifest and lockfile that exist.
What to reason about
- The real test command (often
python manage.py testorpytest) and any lint/type-check gate — captured verbatim. - App and migration conventions, the settings and environment layout, and management-command patterns.
- Stack-appropriate skills for apps, models, views, and migrations.
Notes
Useful for Django apps following the standard project layout.