fastapi-workflow
Installation
SKILL.md
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.
FastAPI Workflow
Tool Grid
| Task | Tool | Command |
|---|---|---|
| Run dev | Uvicorn | uvicorn app.main:app --reload |
| Test | pytest + httpx | uv run pytest |
| Docs | Built-in | /docs or /redoc |
| Lint | Ruff | uv run ruff check . |
| Format | Ruff | uv run ruff format . |
| Type check | mypy | uv run mypy . |