fastapi-common

fastapi-common is a skill for Claude Code, Codex from nongjun/feishu-cursor-claw. It costs 48 tokens per session (509 once invoked), scanned A, original, MIT.

A shared foundation for FastAPI web backends, covering cross-origin access, error handling, request logs, and consistent API responses. FastAPI is a Python framework for building web APIs.

In plain words
What is it for?
Use it when creating a FastAPI module, configuring browser access, logging slow requests, handling business errors, or returning success and paginated data.
Why use it?
It keeps common backend behavior consistent across modules instead of reimplementing middleware and response formatting in each one.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/nongjun/feishu-cursor-claw/fastapi-common
Any agent
npx skills add nongjun/feishu-cursor-claw --skill fastapi-common
Clone the repo
git clone --depth 1 https://github.com/nongjun/feishu-cursor-claw

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fastapi-common

README.md
[![agentmods](https://agentmods.dev/badge/skills/nongjun/feishu-cursor-claw/fastapi-common.svg)](https://agentmods.dev/skills/nongjun/feishu-cursor-claw/fastapi-common)
Your own site
<a href="https://agentmods.dev/skills/nongjun/feishu-cursor-claw/fastapi-common"><img src="https://agentmods.dev/badge/skills/nongjun/feishu-cursor-claw/fastapi-common.svg" alt="Measured on agentmods" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 509 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00048 $0.00509
Opus 5 $0.00024 $0.00254
Sonnet 5 $0.00010 $0.00102
Haiku 4.5 $0.00005 $0.00051

Measured 5d ago against content hash d244056e693a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

fastapi-common scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

参考代码/njcursor/skills/fastapi-common/SKILL.md · 53 lines

What it actually says

FastAPI 公共基础设施

模块一览

模块 导入路径 功能
CORS shared_backend.middleware.cors 跨域配置(开发/生产自动切换)
异常处理 shared_backend.middleware.exception_handler 统一错误格式
请求日志 shared_backend.middleware.request_logging 耗时记录、慢请求告警
响应格式 shared_backend.middleware.response 标准化 API 返回

统一响应格式

  • 成功:{ code: 0, message: "success", data: ... }
  • 错误:{ code: 错误码, message: "描述", data: null }
  • 分页:{ code: 0, data: { list: [...], total, page, page_size } }

所有异常统一返回 HTTP 200,通过 code 字段区分错误类型。

关键函数

函数 用途
setup_cors(app, app_env) 配置 CORS(开发允许所有,生产限域名)
setup_exception_handlers(app) 注册全局异常处理
RequestLoggingMiddleware 请求日志中间件(慢请求阈值 3s)
success_response() 包装成功响应
error_response() 包装错误响应
paginated_response() 包装分页响应
paginate_query() SQLAlchemy 查询分页
APIException 自定义业务异常
NotFoundException 404 异常

SOP:新建后端模块

  1. 创建 FastAPI 应用
  2. 调用 setup_cors()、setup_exception_handlers()
  3. 添加 RequestLoggingMiddleware
  4. 路由中使用 success_response() / paginated_response() 返回数据
  5. 业务异常抛出 APIException

参考文件

  • 公共模块/shared_backend/middleware/cors.py
  • 公共模块/shared_backend/middleware/exception_handler.py
  • 公共模块/shared_backend/middleware/request_logging.py
  • 公共模块/shared_backend/middleware/response.py
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 53 lines · 48 tokens per session scan A d244056e693a

Subscribe to this mod's changes

fastapi-common is a skill published in the GitHub repository nongjun/feishu-cursor-claw (14 stars, last pushed 1mo ago), licensed MIT. It adds 48 tokens to every session and 509 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.