From aj-geddes-useful-ai-prompts-4
Develops production-grade Django web applications with models, views, ORM queries, authentication systems, and admin interfaces. Use for building web apps, managing databases via Django ORM, and implementing auth.
npx claudepluginhub joshuarweaver/cascade-code-languages-misc-1 --plugin aj-geddes-useful-ai-prompts-4This skill uses the workspace's default tool permissions.
- [Overview](#overview)
references/admin-interface-customization.mdreferences/authentication-and-permissions.mdreferences/database-queries-and-optimization.mdreferences/django-project-setup.mdreferences/model-design-with-orm.mdreferences/url-routing.mdreferences/views-with-class-based-and-function-based-approaches.mdscripts/validate-schema.shtemplates/migration-template.sqlSearches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Build comprehensive Django web applications with proper model design, view hierarchies, database operations, user authentication, and admin functionality following Django conventions and best practices.
Minimal working example:
django-admin startproject myproject
cd myproject
python manage.py startapp users
python manage.py startapp products
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Django Project Setup | Django Project Setup |
| Model Design with ORM | Model Design with ORM |
| Views with Class-Based and Function-Based Approaches | Views with Class-Based and Function-Based Approaches |
| Authentication and Permissions | Authentication and Permissions |
| Database Queries and Optimization | Database Queries and Optimization |
| URL Routing | URL Routing |
| Admin Interface Customization | Admin Interface Customization |