Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

fastapiFastAPI 开发

Agent Skill

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。它适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令、生成脚本或分析数据处理逻辑。使用时需要确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本、读写文件、访问数据库或调用外部 API 时,应先明确运行目录和输入输出范围,避免误改生产数据。

总安装

1,175

周安装

48

GitHub Stars

12

下载量

380
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:fastapi(FastAPI 开发)
来源仓库:https://github.com/claude-dev-suite/claude-dev-suite
仓库路径:skills/fastapi
安装命令:
npx skills add https://github.com/claude-dev-suite/claude-dev-suite --skill fastapi
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/claude-dev-suite/claude-dev-suite --skill fastapi

简介

用于高性能 Python API 开发,支持异步请求与自动文档生成。

  • 基于 Pydantic 实现强类型校验,集成 OpenAPI 标准输出。
  • 提供 WebSocket 连接管理与后台任务调度方案。
  • 部署时建议使用 Uvicorn 服务器,配合 Gunicorn 做进程管理。
  • fastapi 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

FastAPI Core Knowledge

Full Reference: See advanced.md for WebSocket integration including connection management, authentication, room management, Pydantic message protocols, heartbeat, Redis pub/sub scaling, and background tasks.
Deep Knowledge: Use mcp__documentation__fetch_docs with technology: fastapi for comprehensive documentation.

Basic Setup

from fastapi import FastAPI, HTTPException, Depends
from pydantic import BaseModel, EmailStr

app = FastAPI(title="My API")

class UserCreate(BaseModel):
    name: str
    email: EmailStr

class User(UserCreate):
    id: int

    class Config:
        from_attributes = True

Route Patterns

@app.get("/users", response_model=list[User])
async def get_users(skip: int = 0, limit: int = 100):
    return await db.users.find_many(skip=skip, limit=limit)

@app.get("/users/{user_id}", response_model=User)
async def get_user(user_id: int):
    user = await db.users.find(user_id)
    if not user:
        raise HTTPException(status_code=404, detail="User not found")
    return user

@app.post("/users", response_model=User, status_code=201)
async def create_user(user: UserCreate):
    return await db.users.create(user.model_dump())

Dependency Injection

async def get_db():
    db = SessionLocal()
    try:
        yield db
    finally:
        db.close()

async def get_current_user(token: str = Depends(oauth2_scheme)):
    user = await verify_token(token)
    if not user:
        raise HTTPException(status_code=401, detail="Invalid token")
    return user

@app.get("/me", response_model=User)
async def get_me(user: User = Depends(get_current_user)):
    return user

Key Features

  • Auto OpenAPI/Swagger docs at /docs
  • Pydantic validation
  • Async support
  • Type hints everywhere

When NOT to Use This Skill

  • Django projects - Django has its own ORM, admin, templates
  • Flask microservices - Flask is lighter without type validation overhead
  • Synchronous WSGI apps - FastAPI is async-first
  • Legacy Python 2.x - FastAPI requires Python 3.7+
  • Non-REST APIs - Use dedicated GraphQL or gRPC frameworks

Anti-Patterns

Anti-PatternWhy It's BadSolution
def instead of async defBlocks event loopUse async def for I/O operations
Missing response_modelNo output validationAlways specify response_model
Sync database callsBlocks workersUse async drivers (asyncpg, motor)
Global state without locksRace conditionsUse asyncio.Lock or Depends()
Raising exceptions without HTTPExceptionGeneric 500 errorsUse HTTPException with status codes
No input validationSecurity vulnerabilitiesUse Pydantic models with validators

Quick Troubleshooting

ProblemDiagnosisFix
"RuntimeError: no running event loop"Calling async from sync codeUse await or asyncio.run()
Validation errors not clearMissing field descriptionsAdd Field(description=...)
Slow response timesSync database callsSwitch to async SQLAlchemy
CORS errors in browserMissing middlewareAdd CORSMiddleware
Dependency not injectedWrong import or syntaxCheck Depends() syntax

Production Readiness

Security Configuration

from fastapi.middleware.cors import CORSMiddleware
from slowapi import Limiter

app = FastAPI(
    title="My API",
    docs_url="/docs" if os.getenv("ENV") != "production" else None,
)

limiter = Limiter(key_func=get_remote_address)
app.state.limiter = limiter

app.add_middleware(
    CORSMiddleware,
    allow_origins=os.getenv("ALLOWED_ORIGINS", "").split(","),
    allow_credentials=True,
    allow_methods=["GET", "POST", "PUT", "DELETE", "PATCH"],
    allow_headers=["*"],
)

Health Checks

@app.get("/health")
async def health():
    return {"status": "healthy"}

@app.get("/ready")
async def readiness(db: Session = Depends(get_db)):
    try:
        db.execute("SELECT 1")
        return {"status": "ready", "database": "connected"}
    except Exception:
        return JSONResponse(status_code=503, content={"status": "not ready"})

Graceful Shutdown

from contextlib import asynccontextmanager

@asynccontextmanager
async def lifespan(app: FastAPI):
    await database.connect()
    yield
    await database.disconnect()

app = FastAPI(lifespan=lifespan)

Monitoring Metrics

MetricAlert Threshold
Request latency p99> 500ms
Error rate (5xx)> 1%
Memory usage> 80%
Worker utilization> 90%

Checklist

  • CORS properly configured
  • Rate limiting enabled
  • Security headers middleware
  • Pydantic validation on all inputs
  • Health/readiness/liveness endpoints
  • Structured logging (JSON format)
  • Global exception handler
  • Secrets via environment variables
  • Docs disabled in production
  • Gunicorn with multiple workers
  • Graceful shutdown handling

Reference Documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.96%
按下载量换算129

Claude

30.75%
按下载量换算117

Cursor

18.44%
按下载量换算70

Gemini CLI

8.78%
按下载量换算33

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills