backend-dev-guidelines
작성자: langfuse
Langfuse의 Next.js, tRPC, BullMQ 및 TypeScript 모노레포를 위한 공유 백엔드 가이드입니다. tRPC 라우터, 공개 REST 엔드포인트, BullMQ를 생성하거나 검토할 때 사용하세요.
npx skills add https://github.com/langfuse/langfuse --skill backend-dev-guidelinesBackend Development Guidelines
Use this skill for backend and API work across web/, worker/, and
packages/shared/.
When to Apply
- Creating or modifying tRPC routers and procedures
- Creating or modifying public API endpoints
- Creating or modifying queue processors, producers, or queue-backed workflows
- Building or refactoring backend services and repositories
- Working on backend auth, middleware, validation, or observability
- Updating Prisma or ClickHouse access patterns
- Adding or fixing backend tests
How to Read This Skill
- Use this
SKILL.mdwhen the task spans multiple backend areas or you need the end-to-end reference map. - Read only the specific reference file that matches the work when the scope is narrower.
- If the task introduces a user-supplied URL, an outbound HTTP request, a new
integration, or touches secrets, RBAC, or redirect handling, also load the
shared
security-reviewskill before designing or implementing the change.
Quick Start Checklists
UI: New tRPC Feature
- Define the router in
features/[feature]/server/*Router.ts. - Use the appropriate protected or public procedure.
- Authenticate with JWT-aware middleware.
- Check project/resource access and entitlements.
- Validate input with Zod v4.
- Put business logic in a service file.
- Use
traceExceptionfor error handling where relevant. - Add unit or integration tests in
__tests__/. - Access config via
env.mjs.
SDKs: New Public API Endpoint
- Create the route in
pages/api/public/. - Wrap it with
withMiddlewaresandcreateAuthedProjectAPIRoute. - Define types in
features/public-api/types/. - Authenticate with basic auth.
- Validate query, body, and response with Zod schemas.
- Include API versioning in paths and schemas.
- Update Fern API definitions to match TypeScript types.
- Add end-to-end tests in
__tests__/async/.
Worker: New Queue Processor
- Create the processor in
worker/src/queues/. - Define queue types in
packages/shared/src/server/queues. - Place business logic in
features/orworker/src/features/. - Distinguish failed jobs from jobs that should succeed with a recorded error.
- Register the queue in
WorkerManagerinapp.ts. - Add worker vitest coverage.
Core Principles
- tRPC procedures, public API routes, and queue processors delegate business logic to services.
- Access configuration through
env.mjs; do not readprocess.envdirectly outside env setup. - Validate all external input with Zod v4.
- Use Prisma directly for simple CRUD and repositories for complex query access.
- Use OpenTelemetry and DataDog for backend observability.
- Always filter project-scoped database queries by
projectId. - Keep Fern API definitions in sync with public TypeScript API contracts.
- Keep backend tests independent and parallel-safe.
Live Examples
- tRPC router with project auth and Zod input:
web/src/features/events/server/eventsRouter.ts. - Public API route with middleware and typed request/response schemas:
web/src/pages/api/public/datasets/index.ts. - Worker queue processor with typed jobs, logging, and retry behavior:
worker/src/queues/evalQueue.ts. - Tenant filters for Prisma and ClickHouse:
references/database-patterns.md.
Naming Conventions
- tRPC routers:
camelCaseRouter.ts, for exampledatasetRouter.ts. - Services:
service.tsin the feature server directory. - Queue processors:
camelCaseQueue.ts, for exampleevalQueue.ts. - Public API routes: kebab-case filenames, for example
dataset-items.ts.
Anti-Patterns to Avoid
- Business logic in routes or procedures.
- Direct
process.envusage instead ofenv.mjs/env.ts. - Missing error handling.
- Missing input validation.
- Missing
projectIdfilters on tenant-scoped queries. console.loginstead oflogger/traceException.
Reference Map
| Topic | Read this when | File |
|---|---|---|
| Architecture and package boundaries | You need the web/worker/shared split, request flow, or queue lifecycle | references/architecture-overview.md |
| Routing and controllers | You are writing tRPC procedures, public API routes, or queue entrypoints | references/routing-and-controllers.md |
| Middleware and auth | You are changing request auth, permissions, or middleware composition | references/middleware-guide.md |
| Services and repositories | You are placing business logic, repository code, or DI patterns | references/services-and-repositories.md |
| Database access | You are touching Prisma, ClickHouse, tenant filters, or query patterns | references/database-patterns.md |
| Configuration | You are adding env vars, startup config, or runtime toggles | references/configuration.md |
| Testing | You are adding or updating backend tests | references/testing-guide.md |
langfuse의 다른 스킬
add-model-price
langfuse
worker/src/constants/default-model-prices.json, packages/shared/src/server/llm/types.ts, 가격 등급, 토크나이저 ID 또는 matchPattern 정규식을 편집할 때 사용합니다…
official
agent-setup-maintenance
langfuse
이 스킬은 저장소의 공유 에이전트 설정을 변경할 때 사용하세요.
official
changelog-writing
langfuse
완료된 기능 브랜치에 체인지로그 항목이 필요할 때 이 스킬을 사용하세요.
official
clickhouse-best-practices
langfuse
ClickHouse 스키마, 쿼리 또는 구성을 검토할 때 반드시 사용해야 합니다. 권장 사항을 제공하기 전에 반드시 확인해야 하는 28개의 규칙이 포함되어 있습니다. 항상 읽어보세요…
official
code-review
langfuse
이 스킬은 기능을 구현하는 것이 아니라 코드 변경 사항을 검토하는 작업일 때 사용하세요.
official
frontend-browser-review
langfuse
이 스킬은 변경 사항이 브라우저에서 사용자가 보거나 수행하는 작업에 영향을 미칠 때 사용하세요.
official
skill-developer
langfuse
Anthropic 모범 사례에 따라 Claude Code 스킬을 생성하고 관리합니다. 새 스킬을 만들거나, skill-rules.json을 수정하거나, 트리거를 이해할 때 사용합니다.
official
turborepo
langfuse
JavaScript/TypeScript 모노레포를 위한 빌드 시스템입니다. Turborepo는 태스크 출력을 캐싱하고 의존성 그래프를 기반으로 태스크를 병렬로 실행합니다.
official