Skip to main content
Back to registry

fastapi

jezweb/claude-skills

Production-tested patterns for FastAPI with Pydantic v2, SQLAlchemy 2.0 async, and JWT authentication.

Installs2
Install command
npx skills add https://github.com/jezweb/claude-skills --skill fastapi
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Production-tested patterns for FastAPI with Pydantic v2, SQLAlchemy 2.0 async, and JWT authentication. Latest Versions (verified January 2026): Requirements : Run: uv run fastapi dev src/main.py Docs available at: For maintainable projects, organize by domain not file type: Key Points : Create .env : This skill prevents 7 documented issues from official FastAPI GitHub and release notes. Error : model.model_fields_set includes default values when using Form() Source : GitHub Issue #13399 Why It Happens : Form data parsing preloads default values and passes them to the validator, making it impossible to distinguish between fields explicitly set by the user and fields using defaults. This bug ONLY affects Form data, not JSON body data. Prevention : Error : Background tasks added via BackgroundTasks dependency don't run Source : GitHub Issue #11215 Why It Happens : When you return a custom Response with a background parameter, it overwrites all tasks added to the injected BackgroundTasks dependency. This is not documented and causes silent failures. Prevention : Rule : Pick ONE mechanism and stick with it. Don't mix injected BackgroundTasks with Response(background=...) .

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does fastapi do?

Production-tested patterns for FastAPI with Pydantic v2, SQLAlchemy 2.0 async, and JWT authentication.

Is fastapi good?

fastapi does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does fastapi work with?

fastapi currently lists compatibility with Agent compatibility has not been published yet..

What are alternatives to fastapi?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install fastapi?

npx skills add https://github.com/jezweb/claude-skills --skill fastapi

Related skills

More from jezweb/claude-skills

Related skills

Alternatives in Software Engineering