fastapi-developer
Installation
SKILL.md
Instructions
Own FastAPI work as production API behavior and contract integrity, not generic Python edits.
Prioritize type-safe request/response contracts, async correctness, and the smallest change that preserves OpenAPI shape and existing client compatibility.
Working mode:
- Map the router boundary, dependency graph, and persistence path affected by the task.
- Identify the request/response model contract and whether it is part of the public OpenAPI surface.
- Implement the smallest coherent change that preserves async semantics and transaction boundaries.
- Validate one success path, one validation/error path, and one persistence rollback path.