Agent Skillsavibebuilder/claude-prime › backend-fastapi-python

backend-fastapi-python

GitHub

提供项目后端 FastAPI 开发规范,涵盖架构决策、Pydantic/SQLModel 使用陷阱及依赖注入模式。适用于构建端点、处理认证授权、数据库迁移及调试错误,不涉及前端或基础设施。

.claude/starter-skills/backend-fastapi-python/SKILL.md avibebuilder/claude-prime

Trigger Scenarios

FastAPI 端点开发与路由设计 Pydantic V2 模型验证与响应封装 SQLModel 异步 ORM 查询与关系加载 Alembic 数据库迁移生成与审查 用户认证、角色权限及依赖注入链实现

Install

npx skills add avibebuilder/claude-prime --skill backend-fastapi-python -g -y
More Options

Non-standard path

npx skills add https://github.com/avibebuilder/claude-prime/tree/main/.claude/starter-skills/backend-fastapi-python -g -y

Use without installing

npx skills use avibebuilder/claude-prime@backend-fastapi-python

指定 Agent (Claude Code)

npx skills add avibebuilder/claude-prime --skill backend-fastapi-python -a claude-code -g -y

安装 repo 全部 skill

npx skills add avibebuilder/claude-prime --all -g -y

预览 repo 内 skill

npx skills add avibebuilder/claude-prime --list

SKILL.md

Frontmatter
{
    "name": "backend-fastapi-python",
    "description": "Use this skill for any Python backend work in this project: building FastAPI endpoints, writing service functions, defining Pydantic\/SQLModel schemas, running Alembic migrations, or debugging 422 errors. Essential for authentication and authorization patterns — setting up get_current_user, is_superuser checks, admin-only guards, role-based access, and dependency injection chains like Depends(). Also covers middleware, background tasks, async SQLAlchemy sessions, ORM relationship loading, and request\/response design. Activate whenever the question involves Python API code, FastAPI patterns, or backend architecture in this codebase. Not for frontend, Docker, CI\/CD, or infrastructure."
}

Backend FastAPI Python

Project-specific conventions for FastAPI with SQLModel, pydantic-settings, and async SQLAlchemy.

Architecture Decisions

  1. Services are stateless functions — Not classes. First param is db: AsyncSession.
  2. Generic response wrapper — Always use ApiResponse[T] for consistency.
  3. Dependencies chainget_current_user -> require_auth -> require_admin.
  4. Module-scoped config — Each module can have its own {module}_config.py.
  5. Error codes for frontendAppException(status, message, error_code).

Gotchas

  • SQLModel Relationship() fields are NOT included in API responses by default. You must explicitly add them to model_config or use a separate response schema with those fields.
  • AsyncSession.refresh() does not load relationships. After commit, re-query with .options(selectinload(...)) if you need related objects.
  • Pydantic V2 uses model_validator not validator. The @validator decorator is V1 and will break silently or raise deprecation warnings.
  • Depends() in FastAPI creates a NEW instance per request — don't store state in dependency return values expecting it to persist.
  • Background tasks (BackgroundTasks) run AFTER the response is sent. If they fail, the client already got a 200. Use proper task queues (Celery, ARQ) for anything that must not silently fail.
  • Alembic --autogenerate misses: table renames (generates drop+create), index changes on existing columns, and Enum type modifications in PostgreSQL. Always review generated migrations.
  • async def endpoints block the event loop if you call sync I/O inside them. Use run_in_executor for sync libraries or define the endpoint as def (FastAPI runs sync endpoints in a threadpool).
  • HTTPException from FastAPI and HTTPException from Starlette are different classes. Importing the wrong one causes middleware to miss exception handlers.
  • SQLAlchemy's lazy="selectin" on relationships causes N+1 queries in async sessions. Use explicit selectinload() in queries instead.
  • Optional[str] = None in query params makes the field optional. str = None also works but loses type information — prefer the explicit Optional form.
  • When using response_model, FastAPI filters OUT any fields not in the model. If your response is missing data, check that the response model includes all fields, not just the ORM model.

References

When you need... Read
Directory layout file-structure.md
Settings and env vars configuration.md
Database sessions and connections database.md
ORM models models.md
Request/response schemas schemas.md
Router and endpoint patterns routing.md
Service layer patterns services.md
Dependency injection dependencies.md
Middleware setup middleware.md
Error handling error-handling.md
Auth flow example auth.md

Version History

  • 80bcfa4 Current 2026-07-05 12:10

Same Skill Collection

.claude/skills/agent-browser/SKILL.md
.claude/skills/ask/SKILL.md
.claude/skills/prime-sync/SKILL.md
.claude/skills/cook/SKILL.md
.claude/skills/create-doc/SKILL.md
.claude/skills/diagnose/SKILL.md
.claude/skills/discuss/SKILL.md
.claude/skills/docs-seeker/SKILL.md
.claude/skills/fix/SKILL.md
.claude/skills/frontend-design/SKILL.md
.claude/skills/give-plan/SKILL.md
.claude/skills/media-processor/SKILL.md
.claude/skills/optimus-prime/SKILL.md
.claude/skills/review-code/SKILL.md
.claude/skills/self-evolve/SKILL.md
.claude/skills/skill-creator/SKILL.md
.claude/skills/test/SKILL.md
.claude/starter-skills/docker/SKILL.md
.claude/starter-skills/frontend-development/SKILL.md
.claude/starter-skills/humanizer/SKILL.md
.claude/starter-skills/monorepo/SKILL.md

Metadata

Files
0
Version
80bcfa4
Hash
eb45fec0
Indexed
2026-07-05 12:10

Accueil - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-07-31 17:57
浙ICP备14020137号-1 $Carte des visiteurs$