| name | verify-django |
| description | Django/DRF verification checklist — models, serializers, views, security, API contract. |
| disable-model-invocation | true |
Skill: Verify Django
Purpose
Systematic verification checklist for Django/DRF code. Used by the reviewer agent in a separate Claude session after code execution.
Verification Process
Run through each section. Flag issues as PASS, WARN, or FAIL.
1. Tests
2. Models
3. Serializers
4. Views
5. Security
6. API Contract
7. Code Quality
8. Development Environment
Output
Produce a verification-report.md:
# Verification Report: [Feature/Phase]
Date: [date]
Reviewer: Claude (automated)
## Summary: [PASS/WARN/FAIL]
## Details
### Tests: [PASS/WARN/FAIL]
- [notes]
### Models: [PASS/WARN/FAIL]
- [notes]
...
## Issues Found
1. [FAIL] Description + suggested fix
2. [WARN] Description + recommendation
## Recommended Actions
- [ ] Fix: ...
- [ ] Consider: ...