fastapi-router-creator
Installation
SKILL.md
FastAPI Router Creator
This skill guides the creation of modular, organized FastAPI routers, emphasizing maintainability and scalability.
Routing Strategies
1. Modular Router Pattern (Standard)
The most common and recommended approach for FastAPI.
Structure:
src/api/v1/endpoints/
├── users.py
├── items.py
└── auth.py
Implementation: