backend-api-documenter
Installation
SKILL.md
Backend API Documenter
Generate comprehensive backend API documentation by reading FastAPI route files and schema definitions, then creating detailed specifications in backend/AGENTS.md.
Core Workflow
1. Scan API Structure
Read all backend API route files to identify:
- API modules and their base paths
- All endpoints (GET, POST, PUT, PATCH, DELETE)
- Route decorators and parameters
- Summary and description annotations
Key files to read:
backend/app/api/v1/*.py- All API route filesbackend/app/schemas/*.py- Request/response schema definitionsbackend/CLAUDE.md- Backend-specific specifications (if exists)