一键导入
backend-builder
Build and extend the FastAPI backend. Use when the user asks to add routes, services, models, auth, database connections, or middleware.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build and extend the FastAPI backend. Use when the user asks to add routes, services, models, auth, database connections, or middleware.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Build and extend the personalization system. Use when adding behavior tracking, user preferences, personalized feeds, or privacy controls.
Build and extend the recommendation engine. Use when adding related posts, trending, personalized feeds, or saved posts.
Build and extend the search system. Use when adding search routes, indexing, ranking, filters, or search analytics.
Seo Keyword Research capability
Affiliate click and conversion tracking skill for DZIRE_v1. Records clicks, attributes conversions via session/click ID, and manages payout records.
Stripe payment integration skill for DZIRE_v1. Handles Checkout sessions, webhook verification, customer management, and payment security.
| name | backend-builder |
| description | Build and extend the FastAPI backend. Use when the user asks to add routes, services, models, auth, database connections, or middleware. |
| category | build |
| version | v1.0 |
| inputs | ["user request","existing backend/app/ structure","database schema from database/schemas/"] |
| outputs | ["FastAPI route files","Service layer files","Pydantic schemas","SQLAlchemy models"] |
Build and extend the FastAPI + Python backend, from route handlers and services to database models, auth, and middleware.
Use this skill when the user asks to:
backend/app/ structuredatabase/schemas/routes/, services/, models/, schemas/, auth/, core/)services/async def for all route and service functionsDepends(get_current_user)main.pybackend/app/
├── routes/[domain].py
├── services/[domain]_service.py
├── models/[domain].py
├── schemas/[domain].py
└── (router registered in main.py)
async def used throughoutmain.py