onboard
Onboard
The user has provided context about the task as an argument. Use it to guide exploration.
Instructions
"AI models are geniuses who start from scratch on every task." – Noam Brown
Onboard to the current task by:
- Exploring the codebase thoroughly
- Asking the user clarifying questions if needed
The goal is to get fully prepared to start working on the task.
Take as long as needed. Overdoing it is better than underdoing it.
Record everything in a .claude/tasks/[TASK_ID]/onboarding.md file. This file will be used to onboard in a new session if needed, so make it comprehensive.
More from kjnez/claude-code-django
htmx-patterns
HTMX patterns for Django including partial templates, hx-* attributes, and dynamic UI without JavaScript. Use when building interactive UI, handling AJAX requests, or creating dynamic components.
31django-templates
Django template patterns including inheritance, partials, tags, and filters. Use when working with templates, creating reusable components, or organizing template structure.
30pytest-django-patterns
pytest-django testing patterns, Factory Boy, fixtures, and TDD workflow. Use when writing tests, creating test factories, or following TDD red-green-refactor cycle.
24django-forms
Django form handling patterns including ModelForm, validation, clean methods, and HTMX form submission. Use when building forms, implementing validation, or handling form submission.
16celery-patterns
Celery task patterns including task definition, retry strategies, periodic tasks, and best practices. Use when implementing background tasks, scheduled jobs, or async processing.
15django-models
Django model design patterns emphasizing fat models/thin views, QuerySet optimization, and domain logic encapsulation. Use when designing models, optimizing queries, implementing business logic, or working with the ORM.
14