pr-summary
PR Summary
Generate a pull request summary for the current branch.
Instructions
-
Analyze changes:
git log main..HEAD --oneline git diff main...HEAD --stat -
Generate summary with:
- Brief description of what changed
- List of files modified
- Breaking changes (if any)
- Testing notes
-
Format as PR body:
## Summary [1-3 bullet points describing the changes] ## Changes - [List of significant changes] ## Test Plan - [ ] [Testing checklist items]
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