django-api-debugger

Analyzes and debugs Django REST Framework API issues in this project.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "django-api-debugger" with this command: npx skills add allthriveai/allthriveai/allthriveai-allthriveai-django-api-debugger

Django API Debugger

Analyzes and debugs Django REST Framework API issues in this project.

Project Context

  • Backend: Django 5.x with Django REST Framework

  • API base path: /api/v1/

  • Key apps: core/projects , core/users , core/tools

  • Serializers located in: */serializers.py

  • Views located in: */views.py

  • URL routing: */urls.py

When to Use

  • "API returning wrong data"

  • "Serializer not including field"

  • "Permission denied on endpoint"

  • "Pagination not working"

  • "Filter not applying"

  • "API response format incorrect"

Debugging Approach

  1. Identify the Endpoint
  • Check urls.py for URL pattern

  • Find the corresponding view/viewset

  1. Check the Serializer
  • Verify fields are included

  • Check read_only and write_only settings

  • Look for custom to_representation or to_internal_value

  • Verify nested serializers

  1. Check the View
  • Verify queryset and get_queryset()

  • Check permission_classes

  • Look for custom get_serializer_context()

  • Verify pagination settings

  1. Common Issues

Missing fields in response:

  • Field not in serializer's fields

  • Field is write_only=True

  • Property not defined on model

Permission errors:

  • Missing or incorrect permission_classes

  • User not authenticated

  • Object-level permissions failing

Pagination issues:

  • Check DEFAULT_PAGINATION_CLASS in settings

  • Verify page_size parameter

  • Check for next /previous URLs in response

Key Files to Check

core/ ├── projects/ │ ├── serializers.py # Project serializers │ ├── views.py # Project viewsets │ └── urls.py # Project URL patterns ├── users/ │ ├── serializers.py # User serializers │ └── views.py # User viewsets └── tools/ ├── serializers.py # Tool serializers └── views.py # Tool viewsets

Testing Tips

Test endpoint directly

docker compose exec web python manage.py shell

from core.projects.models import Project Project.objects.first().dict

Check serializer output

from core.projects.serializers import ProjectSerializer ProjectSerializer(Project.objects.first()).data

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

csrf-auth-debugger

No summary provided by upstream source.

Repository SourceNeeds Review
General

websocket-debugger

No summary provided by upstream source.

Repository SourceNeeds Review
General

database-query-optimizer

No summary provided by upstream source.

Repository SourceNeeds Review