npx skills add ...
npx skills add vintasoftware/django-ai-plugins --skill django-celery-expert
Expert Django Celery guidance for asynchronous task processing. Use when designing background tasks, configuring Celery workers, handling task retries and errors, optimizing Celery performance, implementing periodic tasks with Celery Beat, or setting up production monitoring for Celery. Do not use for general Django questions unrelated to Celery, non-Celery task systems (Django Q, Huey, RQ), ML/data pipeline orchestration (Airflow, Prefect), or frontend and API-only concerns. Follows Vinta's Django Celery best practices.
npx skills add vintasoftware/django-ai-plugins --skill django-celery-expert
Identify the task category from the request:
references/django-integration.mdreferences/task-design-patterns.mdreferences/configuration-guide.mdreferences/error-handling.mdreferences/periodic-tasks.mdreferences/monitoring-observability.mdreferences/production-deployment.mdIf the request spans multiple categories, read all relevant reference files before continuing.
Read each reference file identified in Step 1. Do not proceed to implementation without reading the relevant reference.
Apply the patterns from the reference file. Before presenting the solution, verify:
Request: "Send welcome emails in the background after user registration"
Request: "Process a large CSV import with progress updates"
Request: "Process an order: validate inventory, charge payment, then send confirmation"